/* ══════════════════════════════════════════════════════════════
   Love & Lavender Design System
   Generated from Astro source — do not edit manually.
   Source: misc-projects/gerid-elementor/src/
══════════════════════════════════════════════════════════════ */


/* ── FONTS ── */
@font-face {
  font-family: 'Raleway Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/raleway-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Open Sans Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 300 800;
  src: url('../fonts/open-sans-latin-wght-normal.woff2') format('woff2-variations');
}


/* ── DESIGN TOKENS ── */
/* Love & Lavender Brand */
:root {
  /* Backgrounds & surfaces */
  --color-sand:        #FAF8FB;   /* near-white lavender page bg */
  --color-linen:       #F2EAF7;   /* soft lavender surface / alt section bg */
  --color-cream:       #fef2ea;   /* warm cream — Premium Leads card bg */

  /* Brand primaries */
  --color-terracotta:  #A64CA6;   /* brand primary purple — CTAs, accents */
  --color-mahogany:    #7C3780;   /* darker purple — hover states */
  --color-sienna:      #D8BFD8;   /* light lavender — subtle tints */

  /* Leads card accent */
  --color-wheat:       #e8c9b0;   /* warm tan — Premium Leads card border */

  /* Text & neutrals */
  --color-espresso:    #3D3D3D;   /* primary text, dark backgrounds */
  --color-clay:        #696969;   /* muted / secondary text, labels */
  --color-ivory:       #E1E1E1;   /* borders, dividers */

  /* Sage greens */
  --color-sage-light:  #E4EDE1;   /* soft sage — surfaces, subtle tints */
  --color-sage:        #8BAF87;   /* dusty sage — badges, accents */
  --color-fern:        #4E7549;   /* fern — stronger emphasis, hover states */

  /* Interactive */
  --color-bloom:       #ede3f5;   /* light lavender — hover state on alt rows */

  /* Semantic */
  --color-scarlet:     #F91942;   /* strikethrough / price-cross indicator */

  /* Utility */
  --color-white:   #ffffff;   /* pure white — card backgrounds, overlay text */

  /* Fonts */
  --font-heading: 'Raleway Variable', system-ui, sans-serif;
  --font-body:    'Open Sans Variable', system-ui, sans-serif;
}


/* ── BASE UTILITIES ── */
/* Brand CSS custom properties — aliased from @theme static tokens */
:root {
  --bg:          var(--color-sand);
  --surface:     var(--color-linen);
  --cream:       var(--color-cream);
  --white:       var(--color-white);
  --terra:       var(--color-terracotta);
  --terra-dark:  var(--color-mahogany);
  --terra-light: var(--color-sienna);
  --wheat:       var(--color-wheat);
  --text:        var(--color-espresso);
  --muted:       var(--color-clay);
  --border:      var(--color-ivory);
  --sage-light:  var(--color-sage-light);
  --sage:        var(--color-sage);
  --fern:        var(--color-fern);
  --bloom:       var(--color-bloom);
  --scarlet:     var(--color-scarlet);
}

/* ── Ad-optimized design tokens ── */
:root {
  /* Typography scale (fluid) */
  --fs-body:    clamp(1rem, 0.95rem + 0.25vw, 1.1875rem);    /* 16px → 19px */
  --fs-h1:      clamp(1.75rem, 1.5rem + 1.25vw, 2.75rem);    /* 28px → 44px */
  --fs-h2:      clamp(1.5rem, 1.3rem + 1vw, 2.25rem);         /* 24px → 36px */
  --fs-h3:      clamp(1.25rem, 1.15rem + 0.5vw, 1.625rem);    /* 20px → 26px */
  --fs-h4:      clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);      /* 17px → 20px */
  --fs-small:   clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem); /* 13px → 14px */

  /* Spacing scale (fluid) */
  --space-xs:  clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-s:   clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-m:   clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-l:   clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --space-xl:  clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-2xl: clamp(3rem, 2rem + 4vw, 6rem);
}


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }

/* Antialiased font rendering — matches Tailwind/Astro base, prevents heavy subpixel rendering */
.hero, .wfu-hero-section, .stats-proof, .photo-strip-section,
.features-section, .diff-section, .get-found-section, .how-section,
.pinterest-section, .pricing-section, .faq-section, .closing-cta,
.article-layout, .ds-section, .bh-hero, .bb-section, .browse-section,
.sv-hero-band, .sv-about, .sv-body-grid, .sv-related,
.cg-main, .wfu-specs-section, .wfu-topics, .wfu-how, .wfu-paths,
.srw-gallery-section, .srw-why, .srw-accept, .srw-how, .audience-grid,
.sb-toc, .sb-vendor, .sb-meta {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Open Sans Variable', system-ui, sans-serif;
    font-weight: 400;
  }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  h1, h2, h3 { font-family: 'Raleway Variable', system-ui, sans-serif; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1023px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: 'Raleway Variable', system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.6); }

/* Section heading */
.section-h2 {
  font-family: 'Raleway Variable', system-ui, sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 3rem;
}
.section-h2--light { color: var(--white); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Raleway Variable', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); }
.btn-ghost { background: var(--white); color: var(--terra); border-color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.9); }
.btn-outline { background: var(--white); color: var(--terra); border-color: var(--terra); }
.btn-outline:hover { background: var(--bg); }
.btn-white { background: var(--white); color: var(--terra); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.92); }
.btn-terra {
  background: var(--terra);
  color: #fff !important;
  border: 1.5px solid var(--terra);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway Variable', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  border-radius: 3px;
  width: fit-content;
}
.btn-terra:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: #fff !important; }

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Content tags (used in GetFound section) */
.content-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 2rem 0 1.5rem;
}
.content-tag {
  font-family: 'Open Sans Variable', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.content-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* Pill links */
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.pill-link {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-family: 'Raleway Variable', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  transition: border-color 0.2s;
}
.pill-link:hover { border-color: var(--terra); color: var(--terra); }

/* Responsive — references classes across components so lives here */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tier-grid { grid-template-columns: 1fr; }
  .pinterest-inner { grid-template-columns: 1fr; }
  .content-mosaic { height: 320px; }
  .pv-layout { grid-template-columns: 1fr; }
  .pv-price--hero { font-size: 42px; }
  .diff-tiers { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-content h1 { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .section-h2 { font-size: 36px; }
  .stat-number { font-size: 52px; }
  .diff-problem-h { font-size: 36px; }
  .diff-bridge-heading { font-size: 28px; }
  .audience-grid { grid-template-columns: 1fr; }
}


/* ── COMPONENT STYLES ── */

/* ── BrowseByBar ── */
.bb-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
  }

  .bb-section .eyebrow {
    margin-bottom: 2rem;
  }

  .bb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  /* Card */
  .bb-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  }

  .bb-card:hover {
    border-color: var(--terra);
    box-shadow: 0 8px 32px rgba(166, 76, 166, 0.12);
    transform: translateY(-3px);
  }

  /* Accent bar */
  .bb-accent {
    height: 4px;
    background: var(--terra);
    transition: height 0.22s;
  }

  .bb-card:hover .bb-accent {
    height: 6px;
  }

  /* Body */
  .bb-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.5rem 1.25rem;
    gap: 0;
  }

  .bb-top {
    flex: 1;
  }

  /* Colour swatches */
  .bb-swatches {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
  }

  .bb-dot {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
  }

  .bb-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    line-height: 1.1;
    margin: 0 0 0.6rem;
    transition: color 0.2s;
  }

  .bb-card:hover .bb-name {
    color: var(--terra);
  }

  .bb-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
  }

  /* Footer row */
  .bb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .bb-count {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
  }

  .bb-cta {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
  }

  .bb-card:hover .bb-cta {
    color: var(--terra);
  }

  .bb-arrow {
    display: inline-block;
    transition: transform 0.2s;
  }

  .bb-card:hover .bb-arrow {
    transform: translateX(3px);
  }

  /* Responsive */
  @media (max-width: 700px) {
    .bb-grid { grid-template-columns: 1fr; }
    .bb-section { padding: 3.5rem 0; }
  }

/* ── BrowseHero ── */
.bh-hero {
    background: var(--bg);
    padding: 5rem 0 2.5rem;
    text-align: center;
  }

  .bh-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bh-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    line-height: 1.0;
    color: var(--text);
    margin: 0 0 0.5rem;
  }

  .bh-dot { color: var(--terra); }

  .bh-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--terra);
    margin: 0 0 1rem;
  }

  .bh-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.65;
    margin: 0;
  }

  @media (max-width: 900px) {
    .bh-h1 { font-size: 48px; }
    .bh-sub { font-size: 20px; }
  }

  @media (max-width: 600px) {
    .bh-h1 { font-size: 36px; }
  }

/* ── CategoryIndex ── */
.ci-section {
    background: var(--white);
    padding: 6rem 0;
  }

  .ci-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4rem;
  }

  .ci-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.75rem;
    margin: 0 -0.75rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: background 0.18s;
  }
  .ci-row:hover { background: var(--bloom); }

  .ci-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    transition: color 0.18s;
  }
  .ci-row:hover .ci-name { color: var(--terra); }

  .ci-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ci-count {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
  }

  .ci-arrow {
    font-size: 12px;
    color: var(--muted);
  }

  @media (max-width: 700px) {
    .ci-grid { grid-template-columns: 1fr; gap: 0; }
  }

/* ── CategoryStrip ── */
.cs-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .cs-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cs-scroll::-webkit-scrollbar { display: none; }

  .cs-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text);
    padding: 0.9rem 1.25rem;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
    text-decoration: none;
  }
  .cs-link:first-child { border-left: 1px solid var(--border); }
  .cs-link:hover { color: var(--terra); }
  .cs-link--active { color: var(--terra); font-weight: 700; }

/* ── ClosingCTA ── */
.closing-cta {
  background: var(--terra);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.closing-cta::after {
  content: 'LOVE.';
  position: absolute;
  right: -1%;
  bottom: -15%;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(100px, 16vw, 260px);
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.closing-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.closing-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.closing-cta-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 68px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.closing-cta-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.closing-cta-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.closing-cta-btn:hover { background: #fff; color: var(--terra); }
.closing-cta-photo {
  overflow: hidden;
  height: 380px;
  border-radius: 12px;
  box-shadow: 0 0 0 8px var(--terra), 0 0 0 11px rgba(255,255,255,0.35);
}
.closing-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 768px) {
  .closing-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .closing-cta-photo {
    height: 260px;
  }
}

/* ── ContactGrid ── */
.cg-main {
    padding: 4.5rem 0 5rem;
  }
  .cg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .cg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }
  .cg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terra);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .cg-card:hover {
    border-color: var(--terra-light);
    box-shadow: 0 6px 28px rgba(166, 76, 166, 0.09);
    transform: translateY(-3px);
  }
  .cg-card:hover::before { transform: scaleX(1); }

  .cg-card--accent {
    background: var(--surface);
    border-color: var(--terra-light);
  }
  .cg-card--accent::before { transform: scaleX(1); }
  .cg-card--accent:hover {
    background: var(--bloom);
    border-color: var(--terra);
    box-shadow: 0 6px 28px rgba(166, 76, 166, 0.14);
  }

  .cg-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .cg-card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra);
    white-space: nowrap;
  }
  .cg-card-bar {
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .cg-card-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.9rem;
  }
  .cg-card-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 2rem;
  }
  .cg-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
  }
  .cg-card-action {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    opacity: 0.7;
  }
  .cg-card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }
  .cg-card:hover .cg-card-link { color: var(--terra-dark); }

  @media (max-width: 768px) {
    .cg-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .cg-main { padding: 3rem 0 4rem; }
  }

/* ── Differentiation ── */
.diff-section {
    background: var(--bg);
    padding: 7rem 0;
  }
  .diff-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .diff-problem-h {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 2rem;
  }
  .diff-bridge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3.5rem 0 2.5rem;
  }
  .diff-bridge-line {
    flex: 1;
    height: 2px;
    background: var(--terra);
    opacity: 0.35;
  }
  .diff-bridge-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    color: var(--terra);
    white-space: nowrap;
  }
  .diff-inner p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .diff-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
  .diff-tier {
    padding: 1.75rem;
    border-radius: 8px;
    background: var(--white);
    border: 1.5px solid var(--terra);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .diff-tier--leads { background: var(--white); }
  .diff-tier-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .diff-tier--leads .diff-tier-label { color: var(--terra); }
  .diff-tier-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    color: var(--text);
    line-height: 1;
    margin: 0.25rem 0 0.5rem;
  }
  .diff-tier--leads .diff-tier-price { color: var(--terra); }
  .diff-tier-per {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
  }
  .diff-tier--leads .diff-tier-per { color: var(--muted); }
  .diff-tier-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* Features table */
  .features-table-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 0.25rem 2rem 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 2px 24px rgba(100,20,120,0.07);
  }
  .features-table { width: 100%; }
  .ft-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .ft-cell {
    padding: 1.1rem 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    text-align: center;
  }
  .ft-feature-col { text-align: left; padding-left: 1rem; color: var(--muted); font-size: 10px; }
  .ft-tier-leads { color: var(--terra) !important; }
  .ft-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    transition: background-color 0.15s ease;
  }
  .ft-row:hover { background: var(--bg); }
  .ft-row-alt { background: var(--surface); }
  .ft-row-alt:hover { background: var(--bloom); }
  .ft-row .ft-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.75rem;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
  }
  .ft-row .ft-feature-col {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 1rem;
  }
  .ft-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    line-height: 1.2;
  }
  .ft-desc { display: none; }
  .ft-check { font-weight: 700; font-size: 15px; color: var(--terra); }
  .ft-dash  { font-weight: 300; font-size: 14px; color: var(--border); }

/* ── DirectorySection ── */
.ds-section {
    background: var(--bg);
    padding: 5rem 0;
  }

  .ds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }

  @media (max-width: 900px) {
    .ds-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 700px) {
    .ds-grid { grid-template-columns: repeat(2, 1fr); }
  }

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

/* ── Browse page — sidebar layout ── */
.br-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 1.25rem 0 4rem;
}
.br-layout--no-sidebar { grid-template-columns: 1fr; }
.br-layout--no-sidebar .br-main { width: 100%; }
.br-search-inline { display: flex; align-items: stretch; flex-shrink: 0; }
.br-search-inline .br-search { flex: 0 0 180px; border-radius: 6px 0 0 6px; border-right: none; }
.br-search-inline .br-submit { flex-shrink: 0; }

/* Sidebar — no card, no border, clean column */
.br-sidebar {
  position: sticky;
  top: 88px;
}
.br-sidebar-section {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.br-sidebar-section:first-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.br-sidebar-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.br-sidebar-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* Type tabs — inside sort bar, left side */
.br-type-bar { display: flex; align-items: center; gap: 0.25rem; }
.br-type-link {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 20px;
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.br-type-link:hover { color: var(--text); background: var(--surface); }
.br-type-link--active { color: var(--terra); background: var(--surface); }

/* Subcategory filters — checkbox style */
.br-filter-list { display: flex; flex-direction: column; gap: 2px; }
.br-filter-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.12s;
  line-height: 1.5;
  cursor: pointer;
}
.br-filter-link::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  transition: background 0.12s, border-color 0.12s;
}
.br-filter-link:hover { color: var(--text); }
.br-filter-link:hover::before { border-color: var(--terra); }
.br-filter-link--active { color: var(--terra); font-weight: 600; }
.br-filter-link--active::before {
  background: var(--terra);
  border-color: var(--terra);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 9px 7px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Search (sidebar) — attached input + icon button */
.br-sidebar-section form { display: flex; align-items: stretch; }
.br-search {
  flex: 1; min-width: 0; height: 36px; box-sizing: border-box;
  border: 1px solid var(--border); border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 0 0.75rem; font-family: var(--font-body); font-size: 13px;
  background: var(--white);
}
.br-search:focus { outline: none; border-color: var(--terra); }
.br-search:focus + .br-submit { border-color: var(--terra); }
.br-submit {
  flex-shrink: 0; width: 36px; height: 36px;
  border: 1px solid var(--border); border-left: none;
  border-radius: 0 6px 6px 0;
  background: var(--white); color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: color 0.12s, background 0.12s;
}
.br-submit:hover { background: var(--surface); color: var(--terra); }

/* Sort bar — top right of main */
.br-sort-bar { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.br-sort-bar .br-type-bar { margin-left: auto; }
.br-sort-form { display: flex; align-items: center; flex-shrink: 0; }
.br-sort {
  height: 34px; box-sizing: border-box;
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0 0.75rem; font-family: var(--font-body); font-size: 13px;
  background: var(--white); cursor: pointer; color: var(--text);
}
.br-sort:focus { outline: none; border-color: var(--terra); }

/* Main — override Listeo's 300px minimum so we get 4 columns */
.br-main { min-width: 0; }
.br-main #listeo-listings-container.new-grid-layout-nl {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 1.25rem !important;
}
.br-main .new-grid-layout-nl .listing-image-container-nl {
  height: 190px !important;
  min-height: 150px !important;
}

@media (max-width: 860px) {
  .br-layout { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.25rem; }
  .br-sidebar { position: static; }
  .br-nav { flex-direction: row; flex-wrap: wrap; gap: 0.25rem 0; }
  .br-nav-link { border-left: none; border-bottom: 2px solid transparent; padding: 0.25rem 0.75rem 0.25rem 0; }
  .br-nav-link--active { border-bottom-color: var(--terra); border-left: none; }
}

/* ── FAQ ── */
.faq-section {
    background: var(--bg);
    padding: 6rem 0;
  }
  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-inner h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    color: var(--text);
    margin-bottom: 2.5rem;
  }
  .faq-section .faq-item {
    border-bottom: 1px solid var(--border);
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
  .faq-section .faq-item:hover { box-shadow: none; }
  .faq-section .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  .faq-section .faq-item summary::-webkit-details-marker { display: none; }
  .faq-section .faq-item summary::after {
    content: '+';
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--terra);
    flex-shrink: 0;
    margin-left: 1rem;
  }
  .faq-section .faq-item[open] summary::after { content: '–'; }
  .faq-section .faq-item p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    padding-bottom: 1.25rem;
    max-width: 680px;
  }

/* ── FeaturesGrid ── */
.features-section {
    background: var(--bg);
    padding: 6rem 0;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .feature-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--terra);
    border-radius: 8px;
    padding: 1.75rem;
  }
  .card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    color: var(--muted);
  }
  .feature-card--basic .card-num { color: var(--terra); }
  .feature-card--leads .card-num { color: var(--terra-dark); }
  .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  .card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .features-legend {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--muted);
  }
  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .legend-dot--starter { background: var(--muted); }
  .legend-dot--basic   { background: var(--terra); }
  .legend-dot--leads   { background: var(--terra-dark); }

/* ── GalleryGrid ── */
.gg-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 4px;
  }

  /* wide hero — spans 2 of 3 columns */
  .gg-item.gg-hero { grid-column: span 2; }

  /* lone remainder — spans full width */
  .gg-item.gg-full { grid-column: span 3; }

  .gg-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    cursor: zoom-in;
  }

  .gg-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.88);
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
  }

  .gg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(166, 76, 166, 0.10);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .gg-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
  .gg-item:hover::after { opacity: 1; }

  @media (max-width: 600px) {
    .gg-bento {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .gg-item.gg-hero { grid-column: span 2; }
    .gg-item.gg-full { grid-column: span 2; }
  }

/* ── GetFound ── */
.get-found-section {
    background: var(--white);
    padding: 6rem 0 0;
  }
  .get-found-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .get-found-inner-h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: var(--text);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
  }
  .get-found-inner h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    color: var(--text);
    margin-bottom: 2rem;
  }
  .get-found-inner p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
  }
  .aud-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .aud-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--text);
    line-height: 1;
  }
  .aud-value--sm { font-size: 38px; }
  .aud-unit {
    font-size: 0.45em;
    font-weight: 700;
    color: var(--terra);
    vertical-align: super;
  }
  .aud-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .aud-label--countries { margin-bottom: 1rem; }
  .aud-card--split {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .aud-split {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .aud-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
    margin: 0 1.25rem;
  }
  .aud-card--countries {
    grid-column: 1 / -1;
    flex-direction: column;
  }
  .aud-countries {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }
  .aud-country {
    display: grid;
    grid-template-columns: 140px 1fr 52px;
    align-items: center;
    gap: 0.75rem;
  }
  .aud-country-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
  }
  .aud-country-bar-wrap {
    height: 6px;
    background: var(--bg);
    border-radius: 99px;
    overflow: hidden;
  }
  .aud-country-bar {
    height: 100%;
    background: var(--terra);
    border-radius: 99px;
    min-width: 4px;
  }
  .aud-country-pct {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-align: right;
  }
  .eyebrow--content {
    display: block;
    margin-top: 4rem;
  }
  .content-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    height: 480px;
    margin-top: 3rem;
    overflow: hidden;
  }
  .mosaic-col {
    overflow: hidden;
    border-radius: 4px;
  }
  .mosaic-col img { width: 100%; height: 100%; object-fit: cover; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
  }
  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(40,10,55,0.32) 0%, rgba(40,10,55,0.52) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    background: rgba(255,255,255,0.88);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
  }
  .hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.75rem;
  }
  .hero-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
  }
  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

/* ── HowItWorks ── */
.how-section {
    background: var(--surface);
    padding: 6rem 0;
  }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .how-step { position: relative; }

  .how-step-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.25rem;
  }
  .how-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .step-ghost {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 96px;
    line-height: 1;
    color: rgba(166,76,166,0.12);
    margin-bottom: 0.5rem;
    user-select: none;
  }
  .how-step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .how-step p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }

/* ── Membership2 ── */
.pricing-section {
    background: var(--white);
    padding: 6rem 0;
  }
  .pricing-section .section-h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    color: var(--text);
    margin-bottom: 3rem;
  }
  .tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
  }
  .tier-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .tier-starter {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 2px solid var(--text);
  }
  .tier-basic {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--terra);
    margin: 0 -1px;
  }
  .tier-leads {
    background: var(--cream);
    border: 1px solid var(--wheat);
    border-top: 3px solid var(--terra);
  }
  .tier-header { margin-bottom: 1.75rem; }
  .tier-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .tier-label--terra { color: var(--terra); }
  .tier-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .tier-price--gold { color: var(--terra); }
  .tier-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
  }
  .tier-tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    margin-top: 0.35rem;
  }
  .tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 2rem;
  }
  .tier-features li {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.35;
  }
  .tier-features li:first-child { border-top: 1px solid var(--border); }

  /* Math — pure type, no containers */
  .m2-math {
    max-width: 680px;
    margin-top: 3.5rem;
    margin-left: auto;
    margin-right: auto;
  }
  .m2-intro {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1rem;
  }
  .m2-row {
    display: flex;
    align-items: baseline;
    padding: 0.55rem 0;
  }
  .m2-row span:first-child {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    white-space: nowrap;
  }
  .m2-row span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--muted);
    white-space: nowrap;
  }
  .m2-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    margin: 0 0.75rem;
    position: relative;
    top: -3px;
  }
  .m2-dots--terra { border-bottom-color: rgba(166,76,166,0.25); }
  .m2-rule {
    border: none;
    border-top: 1px solid var(--text);
    margin: 0.25rem 0;
  }
  .m2-row--total span:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
  }
  .m2-crossed {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: var(--scarlet);
    text-decoration-thickness: 2.5px;
    white-space: nowrap;
  }
  .m2-row--yours {
    padding-top: 1rem;
  }
  .m2-row--yours span:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
  }
  .m2-yours-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: var(--terra);
    line-height: 1;
    white-space: nowrap;
  }
  .m2-per {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
  }
  .m2-savings {
    font-family: var(--font-body);
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
    text-align: right;
    margin-top: 0.4rem;
  }

/* ── Nav ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
  }
  .brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-links a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    color: var(--text);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--terra); }
  .nav-cta {
    background: var(--terra);
    color: var(--white) !important;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600 !important;
  }
  .nav-cta:hover { background: var(--terra-dark); color: var(--white) !important; }

/* ── PhotoStrip ── */
.photo-strip-section {
    display: flex;
    height: 440px;
    gap: 3px;
    overflow: hidden;
  }
  .photo-strip-section img {
    flex: 1;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88);
  }
  .photo-strip-section img.wide {
    flex: 1.2;
  }

/* ── PinterestSection ── */
.pinterest-section {
    background: var(--bg);
    padding: 7rem 0 4rem;
  }
  .pinterest-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .pinterest-section .pinterest-text { grid-column: 1; }
  .pinterest-section .pinterest-image { grid-column: 2; }
  .pinterest-text h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .pinterest-text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  .proof-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .proof-card {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    display: block;
    height: auto;
  }
  .proof-card--main { box-shadow: 0 10px 36px rgba(0,0,0,0.13); }
  .proof-boards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

/* ── SearchBand ── */
.sb-band {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .sb-row {
    display: flex;
    align-items: stretch;
    background: var(--white);
  }

  .sb-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.9rem 1.25rem;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: transparent;
    min-width: 0;
  }

  .sb-field::placeholder { color: var(--muted); }

  .sb-div {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    align-self: stretch;
  }

  .sb-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .sb-btn {
    background: var(--terra);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .sb-btn:hover { background: var(--terra-dark); }

  @media (max-width: 600px) {
    .sb-row { flex-direction: column; }
    .sb-div { display: none; }
    .sb-btn { width: 100%; justify-content: center; }
  }

/* ── SecondaryNav ── */
.wfu-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
  }
  .brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    transition: color 0.2s;
  }
  .brand:hover { color: var(--terra); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .nav-links a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    color: var(--text);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--terra); }
  .nav-cta {
    background: var(--terra);
    color: var(--white) !important;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--terra-dark); color: var(--white) !important; }

  @media (max-width: 600px) {
    .nav-links a:not(.nav-cta) { display: none; }
  }

/* ── SiteFooter ── */
.site-footer {
    background: var(--text);
    padding: 2rem 0;
  }
  .footer-inner {
    display: flex;
    justify-content: center;
  }
  .footer-inner span {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .footer-inner a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
  }
  .footer-inner a:hover { color: rgba(255,255,255,0.6); }

/* ── StatsProof ── */
.stats-proof {
    background: var(--surface);
    padding: 6rem 0;
  }
  .stats-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    color: var(--text);
    margin-bottom: 3rem;
    line-height: 1.1;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.5rem;
  }
  .stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    line-height: 1;
    color: var(--terra);
  }
  .stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .stat-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 0.25rem;
  }

/* ── VendorCard ── */
/* ─── Editorial ─── */
  .vc-ed {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.28s, transform 0.28s;
  }
  .vc-ed:hover {
    box-shadow: 0 8px 28px rgba(166, 76, 166, 0.14);
    transform: translateY(-2px);
  }

  .vc-ed-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface);
  }
  .vc-ed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .vc-ed:hover .vc-ed-img img { transform: scale(1.03); }

  .vc-ed-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--terra);
    color: var(--white);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
    max-width: calc(100% - 1.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vc-ed-body {
    padding: 1.1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .vc-ed-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s;
  }
  .vc-ed:hover .vc-ed-name { color: var(--terra); }

  .vc-ed-loc {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    margin: 0;
  }
  .vc-ed-pin {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--muted);
  }

  .vc-ed-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem 1rem;
    border-top: 1px solid var(--border);
  }

  .vc-ed-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    line-height: 1;
  }
  .vc-ed-star {
    color: var(--terra);
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: -0.5px;
  }
  .vc-ed-rcount {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    color: var(--muted);
    line-height: 1;
  }

  .vc-ed-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
  }

  .vc-ed-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.5;
    margin: 0.15rem 0 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ─── Garden ─── */
  .vc-gd {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.28s, transform 0.28s;
  }
  .vc-gd:hover {
    box-shadow: 0 12px 36px rgba(166, 76, 166, 0.14);
    transform: translateY(-2px);
  }

  .vc-gd-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface);
  }
  .vc-gd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .vc-gd:hover .vc-gd-img img { transform: scale(1.04); }

  .vc-gd-verified {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--terra);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
  }

  .vc-gd-price {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--terra);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
  }

  .vc-gd-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(28, 8, 40, 0.72) 0%, transparent 100%);
  }
  .vc-gd-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    line-height: 1.2;
  }

  .vc-gd-body {
    padding: 0.85rem 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .vc-gd-cat {
    background: var(--bloom);
    color: var(--terra);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    white-space: nowrap;
  }

  .vc-gd-loc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ─── Velvet ─── */
  .vc-vl {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    background: var(--surface);
    transition: box-shadow 0.3s;
  }
  .vc-vl:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  }

  .vc-vl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .vc-vl:hover img { transform: scale(1.03); }

  .vc-vl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 5, 30, 0.88) 0%, rgba(20, 5, 30, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    gap: 0.25rem;
  }

  .vc-vl-cat {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra-light);
  }

  .vc-vl-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    color: var(--white);
    line-height: 1.1;
  }

  .vc-vl-loc {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ─── Studio ─── */
  .vc-st {
    display: grid;
    grid-template-columns: 200px 1fr;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }
  .vc-st:hover { border-color: var(--terra); }

  .vc-st-img {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--surface);
  }
  .vc-st-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .vc-st:hover .vc-st-img img { transform: scale(1.04); }

  .vc-st-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .vc-st-cat {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
  }

  .vc-st-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
  }

  .vc-st-loc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    margin: 0;
  }

  .vc-st-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0.25rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .vc-st-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  .vc-st-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .vc-st-stars { color: var(--terra); font-size: 13px; }
  .vc-st-rval {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
  }
  .vc-st-rcount {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
  }

  .vc-st-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
  }

  .vc-st-cta {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--terra);
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .vc-st:hover .vc-st-cta { color: var(--terra-dark); }

  @media (max-width: 600px) {
    .vc-st {
      grid-template-columns: 140px 1fr;
    }
    .vc-st-body { padding: 1rem; }
    .vc-st-name { font-size: 16px; }
  }

/* ── WeddingPaths ── */
.wp-section {
    background: var(--white);
    padding: 6rem 0;
  }
  .wp-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 3.5rem;
  }
  .wp-paths {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    padding-top: 0;
  }
  .wp-path {
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .wp-path + .wp-divider + .wp-path {
    padding-right: 0;
    padding-left: 4rem;
  }
  .wp-divider {
    background: var(--border);
    width: 1px;
  }
  .wp-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 1.75rem;
  }
  .wp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .wp-path:hover .wp-img-wrap img { transform: scale(1.03); }
  .wp-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 1rem;
    display: block;
  }
  .wp-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .wp-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
  }

  @media (max-width: 900px) {
    .wp-paths { grid-template-columns: 1fr; }
    .wp-divider { display: none; }
    .wp-path { padding-right: 0 !important; padding-left: 0 !important; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
    .wp-path:last-child { padding-bottom: 0; border-bottom: none; }
    .wp-h2 { font-size: 32px; }
  }

/* ── WriteForUsHero ── */
.wfu-hero-section {
    background: var(--white);
    padding: 5rem 0 2rem;
    overflow-x: clip;
    position: relative;
  }
  .wfu-hero-inner {
    max-width: 740px;
    position: relative;
  }
  .wfu-hero-inner--has-img {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
  }
  .wfu-hero-text { position: relative; }
  .wfu-hero-img { position: relative; }
  .wfu-hero-img img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
  }
  .wfu-ghost-bg {
    position: absolute;
    top: -2rem;
    right: -4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 220px;
    line-height: 1;
    color: rgba(166, 76, 166, 0.06);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -0.04em;
  }
  .wfu-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.75rem;
    position: relative;
  }
  .wfu-lead {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    max-width: 580px;
    margin-bottom: 2.5rem;
  }
  .wfu-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  @media (max-width: 900px) {
    .wfu-ghost-bg { font-size: 140px; right: -1rem; top: -1rem; }
    .wfu-h1 { font-size: 48px; }
    .wfu-hero-inner--has-img {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .wfu-hero-img { order: 3; }
    .wfu-hero-img img { max-height: 320px; }
  }
  @media (max-width: 600px) {
    .wfu-h1 { font-size: 36px; }
    .wfu-ghost-bg { display: none; }
  }

/* ── article-page ── */
/* ── Two-column layout ────────────────────────────────────────── */
  .article-layout {
    background: #fff;
    padding: 2rem 0 6rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: start;
  }
  .article-body { min-width: 0; }
  .article-content { /* constrained by grid */ }

  /* ── Sidebar ──────────────────────────────────────────────────── */
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* TOC */
  .sb-toc {
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
  }
  .sb-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.85rem;
  }
  .sb-toc nav {
    display: flex;
    flex-direction: column;
  }
  .sb-toc-link {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s;
    line-height: 1.3;
  }
  .sb-toc nav a:last-child { border-bottom: none; }
  .sb-toc-link:hover { color: var(--terra); }
  .sb-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--terra);
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }

  /* Vendor CTA */
  .sb-vendor {
    background: var(--surface);
    border: 1px solid var(--terra-light);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .sb-vendor-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    line-height: 1.2;
  }
  .sb-vendor-body {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  /* Meta */
  .sb-meta {
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
  }
  .sb-category {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    display: block;
    transition: color 0.2s;
  }
  .sb-category:hover { color: var(--terra); }
  .sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  /* ── In-article vendor CTA ────────────────────────────────────── */
  .ac-vendor-cta {
    background: var(--surface);
    border: 1px solid var(--terra-light);
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .ac-vendor-cta-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ── Typography ───────────────────────────────────────────────── */
  .ac-lede {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .ac-p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.25rem;
  }
  .ac-h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--text);
    line-height: 1.2;
    margin: 3rem 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
  }
  .ac-list {
    margin: 0 0 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ac-li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
  }

  /* ── Blockquote ───────────────────────────────────────────────── */
  .ac-quote {
    margin: 2.5rem -2rem;
    padding: 2rem 2.5rem;
    background: var(--bloom);
    border-left: 4px solid var(--terra);
  }
  .ac-quote-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: var(--text);
    font-style: italic;
    margin: 0 !important;
  }

  /* ── Inline image ─────────────────────────────────────────────── */
  .ac-img {
    margin: 2.5rem 0;
  }
  .ac-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }
  .ac-caption {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    margin-top: 0.6rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--terra-light);
    line-height: 1.5;
    display: block;
  }

  /* ── Tags ─────────────────────────────────────────────────────── */
  .ac-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .ac-tag {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
  }

  /* ── Responsive ───────────────────────────────────────────────── */
  @media (max-width: 1000px) {
    .article-layout { grid-template-columns: 1fr; gap: 3rem; padding-left: 1rem; padding-right: 1rem; }
    .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .sb-vendor { grid-column: span 2; }
    .ac-quote { margin: 2rem -1rem; }
  }
  @media (max-width: 600px) {
    .article-layout { padding: 2.5rem 1rem 3rem; }
    .sidebar { grid-template-columns: 1fr; }
    .sb-vendor { grid-column: span 1; }
    .ac-lede { font-size: 17px; }
    .ac-h2 { font-size: 22px; }
    .ac-quote-text { font-size: 19px; }
    .ac-img img { height: 260px; }
  }

/* ── index ── */
.hub {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
  }
  .hub-inner {
    width: 100%;
    max-width: 560px;
  }
  .hub-header {
    margin-bottom: 2.5rem;
  }
  .hub-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.5rem;
  }
  .hub-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    color: var(--text);
    line-height: 1;
  }
  .hub-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .hub-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.25rem 1rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
  }
  .hub-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--terra);
    border-radius: 6px 6px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .hub-card:hover {
    border-color: var(--terra-light);
    box-shadow: 0 4px 20px rgba(166, 76, 166, 0.1);
    transform: translateY(-2px);
  }
  .hub-card:hover::before { transform: scaleX(1); }
  .hub-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    grid-column: 1;
    grid-row: 1;
  }
  .hub-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    grid-column: 1;
    grid-row: 2;
  }
  .hub-card-arrow {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--terra);
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
  }
  .hub-card:hover .hub-card-arrow { transform: translateX(3px); }

/* ── single-venue ── */
/* ══════════════════════════════════════════════════════════════════
     ABOUT — FULL WIDTH CENTERED
  ══════════════════════════════════════════════════════════════════ */
  .sv-about {
    background: var(--bg);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  /* Ghost watermark */
  .sv-about-ghost {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 240px;
    line-height: 1;
    color: rgba(166, 76, 166, 0.04);
    top: -1rem;
    right: -2rem;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .sv-about-inner {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }
  .sv-about-inner .eyebrow { margin-bottom: 1rem; }

  .sv-about-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 46px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2rem;
  }

  .sv-about-p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.25rem;
  }
  .sv-about-p:last-of-type { margin-bottom: 0; }

  .sv-photo-count {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
  }
  .sv-photo-count-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: border-color 0.15s, color 0.15s;
  }
  .sv-photo-count-link:hover { border-color: var(--terra); color: var(--terra); }

  .sv-about-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin: 0 auto;
    max-width: 680px;
  }

  /* Wedding story — full article content section */
  .sv-wedding-story {
    padding: 3rem 0 4rem;
    background: var(--white);
  }
  .sv-wedding-story .article-content {
    max-width: 760px;
    margin: 0 auto;
  }

  /* Feature chips */
  .sv-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
  }
  .sv-chip {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--terra);
    background: var(--bloom);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  a.sv-chip:hover { background: var(--terra); color: var(--white); }

  /* ══════════════════════════════════════════════════════════════════
     PHOTO STRIP
  ══════════════════════════════════════════════════════════════════ */
  .sv-strip {
    display: flex;
    height: 440px;
    gap: 3px;
    overflow: hidden;
  }
  .sv-strip img {
    flex: 1;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88);
    display: block;
  }
  .sv-strip-wide { flex: 1.2 !important; }

  /* ══════════════════════════════════════════════════════════════════
     TAB BAR
  ══════════════════════════════════════════════════════════════════ */
  .sv-tab-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .sv-tabs {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sv-tabs::-webkit-scrollbar { display: none; }

  .sv-tab {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    color: var(--muted);
    padding: 0.9rem 1.25rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.18s, border-color 0.18s;
    text-decoration: none;
  }
  .sv-tab:hover { color: var(--terra); }
  .sv-tab--active { color: var(--terra); border-bottom-color: var(--terra); }

  /* ══════════════════════════════════════════════════════════════════
     BODY 2-COLUMN LAYOUT
  ══════════════════════════════════════════════════════════════════ */
  .sv-body-wrap {
    background: var(--bg);
    padding: 3.5rem 0 5rem;
  }
  .sv-body-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
  }
  .sv-body-grid .sv-sidebar { grid-column: 1; grid-row: 1; }
  .sv-body-grid .sv-main    { grid-column: 2; grid-row: 1; }

  /* ── MAIN COLUMN ── */
  .sv-section { margin-bottom: 0; }

  .sv-location-address {
    font-size: 14px;
    color: var(--muted);
    margin: 0.25rem 0 0.75rem;
  }

  /* Override Listeo's .listing-section box inside our location section */
  .sv-location-section #listing-location.listing-section {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  /* Hide the h2 rendered by the Listeo partial — we output our own above it */
  .sv-location-section #listing-location .listing-desc-headline {
    display: none;
  }
  .sv-location-section .listing-desc-headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    line-height: 1.15;
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
  }

  .sv-listeo-reviews .google-reviews-read-more { display: none; }

  /* Hide the hr separators that follow pricing/FAQ modules */
  .sv-listeo-module + .sv-rule { display: none !important; }

  /* Restore spacing between modules now that sv-rule is hidden */
  .sv-listeo-module { margin-bottom: 2.5rem !important; }

  /* Strip Listeo box styles from optional modules (FAQ, Pricing) */
  .sv-listeo-module .listing-section {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .sv-listeo-module .listing-desc-headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    line-height: 1.15;
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
  }

  /* ── PRICING MODULE ── */
  .sv-listeo-module .pricing-list-container { margin: 0; }
  .sv-listeo-module .pricing-list-container ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
  }
  /* Beat Listeo's .pricing-list-container ul li:nth-child(2n+2) specificity */
  .sv-listeo-module .pricing-list-container ul li:nth-child(n) {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem !important;
    background: #fff !important;
    border-left: 3px solid var(--terra) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 0 6px 6px 0 !important;
  }
  .sv-listeo-module .pricing-menu-details { min-width: 0; }
  .sv-listeo-module .pricing-menu-details h5 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--text) !important;
    margin: 0 0 0.2rem !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }
  .sv-listeo-module .pricing-menu-details p {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: var(--muted) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
  }
  .sv-listeo-module .pricing-list-container ul li > span {
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    font-size: 22px !important;
    color: var(--terra) !important;
    white-space: nowrap !important;
    letter-spacing: -0.03em !important;
    display: block !important;
    padding: 0 !important;
    text-align: right !important;
  }

  /* ── FAQ ACCORDION MODULE ── */
  .sv-listeo-module .fp-accordion .ui-accordion.ui-widget,
  .sv-listeo-module .fp-accordion .ui-accordion {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    counter-reset: faq-item !important;
  }
  /* Question rows — white card, terracotta left border, numbered via CSS counter */
  .sv-listeo-module .fp-accordion .ui-accordion-header,
  .sv-listeo-module .fp-accordion h3.ui-accordion-header {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--text) !important;
    background: #fff !important;
    border: none !important;
    border-left: 3px solid var(--terra) !important;
    border-radius: 0 6px 6px 0 !important;
    padding: 1.15rem 1.5rem 1.15rem 1.25rem !important;
    margin: 0 0 0.6rem 0 !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.9rem !important;
    cursor: pointer !important;
    transition: color 0.18s !important;
    outline: none !important;
    box-shadow: none !important;
    counter-increment: faq-item !important;
  }
  /* Terracotta number prefix */
  .sv-listeo-module .fp-accordion .ui-accordion-header::before {
    content: counter(faq-item, decimal-leading-zero) !important;
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    color: var(--terra) !important;
    flex-shrink: 0 !important;
    width: 1.5rem !important;
  }
  /* Push chevron to far right */
  .sv-listeo-module .fp-accordion .ui-accordion-header i {
    margin-left: auto !important;
    flex-shrink: 0 !important;
    font-size: 12px !important;
    color: var(--muted) !important;
    transition: transform 0.22s ease, color 0.18s !important;
  }
  .sv-listeo-module .fp-accordion .ui-accordion-header:hover { color: var(--terra) !important; }
  .sv-listeo-module .fp-accordion .ui-accordion-header.ui-state-active {
    color: var(--terra) !important;
    background: #fff !important;
    border-left: 3px solid var(--terra) !important;
    border-radius: 0 6px 0 0 !important;
    margin-bottom: 0 !important;
  }
  .sv-listeo-module .fp-accordion .ui-accordion-header.ui-state-active i {
    transform: rotate(180deg) !important;
    color: var(--terra) !important;
  }
  .sv-listeo-module .fp-accordion .ui-accordion-header .ui-accordion-header-icon { display: none !important; }
  /* Answer: linen card, indented to align under question text */
  .sv-listeo-module .fp-accordion .ui-accordion-content {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: var(--muted) !important;
    line-height: 1.75 !important;
    background: var(--surface) !important;
    border: none !important;
    border-left: 3px solid var(--terra) !important;
    border-radius: 0 0 6px 0 !important;
    padding: 1rem 1.25rem 1rem 3.65rem !important;
    margin-bottom: 0.6rem !important;
  }
  .sv-listeo-module .fp-accordion .ui-accordion-content p { margin: 0 !important; }
  .sv-listeo-reviews .add-review-box { padding-left: 0 !important; }
  .sv-listeo-reviews .listing-desc-headline {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.15;
  }

  .sv-rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
  }

  .sv-section-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.15;
  }

  /* ── FEATURED IN — HORIZONTAL CARDS ── */
  .sv-hcards {
    display: flex;
    flex-direction: column;
  }
  .sv-hcard {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    transition: background 0.18s;
  }
  .sv-hcard:first-child { border-top: 1px solid var(--border); }
  .sv-hcard:last-child { border-bottom: none; }

  .sv-hcard-img {
    width: 220px;
    height: 148px;
    overflow: hidden;
    background: var(--surface);
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  }
  .sv-hcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.88);
    transition: transform 0.4s ease, filter 0.3s ease;
  }
  .sv-hcard:hover .sv-hcard-img img {
    transform: scale(1.05);
    filter: saturate(1);
  }

  .sv-hcard-body {
    padding: 0 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
  }

  .sv-hcard-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terra);
  }

  .sv-hcard-couple {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.0;
    color: var(--text);
    margin-top: 0.1rem;
    transition: color 0.18s;
  }
  .sv-hcard:hover .sv-hcard-couple { color: var(--terra); }

  .sv-hcard-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
  }

  .sv-hcard-loc {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    margin-top: 0.2rem;
  }
  .sv-pin {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--muted);
  }

  .sv-hcard-cta {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--terra);
    letter-spacing: 0.04em;
    margin-top: auto;
    padding-top: 0.75rem;
    transition: color 0.18s;
  }
  .sv-hcard:hover .sv-hcard-cta { color: var(--terra-dark); }

  /* ── REVIEWS ── */
  .sv-reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .sv-reviews-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .sv-reviews-big {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    color: var(--text);
    line-height: 1;
  }
  .sv-stars-row {
    color: var(--terra);
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }
  .sv-reviews-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
  }
  .sv-reviews-all {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--terra);
    white-space: nowrap;
    transition: color 0.18s;
    margin-top: 0.5rem;
  }
  .sv-reviews-all:hover { color: var(--terra-dark); }

  .sv-reviews-grid {
    display: flex;
    flex-direction: column;
  }
  .sv-review {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
  }
  .sv-review:last-child { border-bottom: none; }
  /* flatten the nested top div into the parent grid */
  .sv-review-top { display: contents; }
  .sv-review-avatar {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    margin-top: 2px;
  }
  .sv-review-author-block {
    grid-column: 2;
    grid-row: 1;
  }
  .sv-review-stars {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }
  .sv-review-text {
    grid-column: 2 / 4;
    grid-row: 2;
    margin: 0;
  }
  .sv-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .sv-review-author-block { flex: 1; min-width: 0; }
  .sv-review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sv-review-date {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--muted);
    margin-top: 0.15rem;
  }
  .sv-review-stars {
    color: var(--terra);
    font-size: 13px;
    flex-shrink: 0;
  }
  .sv-review-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ══════════════════════════════════════════════════════════════════
     SIDEBAR
  ══════════════════════════════════════════════════════════════════ */
  .sv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .sv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
  }
  .sv-card--linen { background: var(--surface); }
  .sv-card--claim { background: var(--sage-light); }

  .sv-card-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    margin: 0 0 0.6rem !important;
  }
  .sv-card-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .sv-card-rule {
    border-top: 1px solid var(--border);
    margin: 1rem 0;
  }
  .sv-card-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    text-align: center;
  }
  .sv-card-note a { color: var(--terra); }
  .sv-card-note a:hover { color: var(--terra-dark); }

  .sv-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .sv-contact-list li { margin: 0 !important; padding: 0 !important; }
  .sv-contact-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.3;
  }
  .sv-contact-list a:hover { color: var(--terra); }
  .sv-contact-list svg { flex-shrink: 0; color: var(--terra); }

  .sv-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
    margin-bottom: 0.85rem;
    padding-top: 0;
  }
  .sv-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background 0.15s, color 0.15s;
  }
  .sv-social-icon:hover { background: var(--terra); border-color: var(--terra); color: #fff; }

  /* The sv-card has an anonymous trailing line box (~26px from line-height:27px inheritance).
     Negative margin absorbs it so only the card's natural padding-bottom remains below the button. */
  .sv-contact-form { margin-bottom: -26px; }
  .sv-contact-form-divider { display: none !important; }

  .sv-contact-form-heading { display: none !important; }

  /* Strip CF7's default p/div spacing — remove Bootstrap float so height tracks content */
  .sv-contact-form .col-lg-12 { float: none !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
  .sv-contact-form .col-lg-12 > div { font-size: 14px !important; line-height: 1.4 !important; }
  .sv-contact-form .col-lg-12 > div { margin: 0 !important; padding: 0 !important; }
  .sv-contact-form .col-lg-12 > div > p,
  .sv-contact-form .wpcf7-form p,
  .sv-contact-form .wpcf7-form div { margin: 0 !important; padding: 0 !important; }
  .sv-contact-form .col-lg-12 > div + div { margin-top: 0.45rem !important; }

  .sv-contact-form input[type=text],
  .sv-contact-form input[type=email],
  .sv-contact-form input[type=tel],
  .sv-contact-form textarea {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
    padding: 0.3rem 0.5rem !important;
    margin: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    color: var(--text) !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: border-color 0.2s !important;
  }
  .sv-contact-form input[type=text]:focus,
  .sv-contact-form input[type=email]:focus,
  .sv-contact-form input[type=tel]:focus,
  .sv-contact-form textarea:focus {
    border-color: var(--terra) !important;
    box-shadow: none !important;
  }
  .sv-contact-form textarea,
  .sv-contact-form .wpcf7-form textarea {
    resize: none !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    display: block !important;
    overflow: hidden !important;
  }
  .sv-contact-form input::placeholder,
  .sv-contact-form textarea::placeholder {
    color: var(--muted) !important;
    font-size: 0.8rem !important;
  }
  .sv-contact-form .wpcf7-form-control-wrap { display: block !important; width: 100% !important; }
  /* CF7 hidden anti-spam wrappers that are direct form children (no <p> parent) sit 25px
     below visible content in normal flow — take them out of flow entirely */
  .sv-contact-form .wpcf7-form > span.wpcf7-form-control-wrap {
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Preferred contact method */
  .sv-contact-form .preferred-contact-method { margin-top: 0.6rem !important; }
  .sv-contact-form .preferred-contact-method h5 {
    font-family: var(--font-body) !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--muted) !important;
    text-align: left !important;
    margin: 0 0 0.4rem !important;
  }
  .sv-contact-form .preferred-contact-radios p { margin: 0 !important; }
  .sv-contact-form .wpcf7-radio {
    display: flex !important;
    gap: 1.25rem !important;
    align-items: center !important;
  }
  .sv-contact-form .wpcf7-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin: 0 !important;
  }
  .sv-contact-form .wpcf7-list-item label {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    cursor: pointer !important;
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    color: var(--text) !important;
  }
  .sv-contact-form .wpcf7-list-item input[type=radio] {
    width: 14px !important;
    height: 14px !important;
    accent-color: var(--terra) !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Submit */
  .sv-contact-form .message-vendor-submit-button { display: block !important; margin-top: 1rem !important; }
  .sv-contact-form .message-vendor-submit-button p { margin: 0 !important; }
  .sv-contact-form .wpcf7-spinner { display: none !important; }

  .sv-contact-form input[type=submit] {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    line-height: 1 !important;
    background: var(--terra) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0.7rem 1rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.1em !important;
    text-indent: 0.1em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: opacity 0.15s !important;
  }
  .sv-contact-form input[type=submit]:hover { opacity: 0.88 !important; }

  /* col-lg-12 is float:none so clearfix is unnecessary — hide it to prevent any phantom height */
  .sv-contact-form .clearfix {
    display: none !important;
  }

  /* Hide captcha placeholder text */
  .sv-contact-form .captcha-holder { display: none !important; }

  .sv-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .sv-fact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
  .sv-fact:last-child { border-bottom: none; padding-bottom: 0; }
  .sv-fact-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
  }
  .sv-fact-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    text-align: right;
    font-weight: 500;
  }
  .sv-fact-status { color: var(--muted); }

  /* ── LEAVE A REVIEW FORM ── */
  .sv-review-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .sv-form-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .sv-star-picker {
    display: flex;
    gap: 0.15rem;
  }
  .sv-star-btn {
    font-size: 24px;
    color: var(--border);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
  }
  .sv-star-btn:hover,
  .sv-star-btn.active { color: #FFD700; }
  .sv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .sv-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .sv-form-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .sv-form-field input,
  .sv-form-field textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    padding: 0.7rem 0.9rem;
    width: 100%;
    transition: border-color 0.18s;
    resize: vertical;
  }
  .sv-form-field input:focus,
  .sv-form-field textarea:focus {
    outline: none;
    border-color: var(--terra);
  }
  .sv-form-field input::placeholder,
  .sv-form-field textarea::placeholder { color: var(--border); }

  .sv-map-placeholder {
    width: 100%;
    height: 320px;
    background: var(--surface);
    border-radius: 6px;
    border: 1px solid var(--border);
  }

  .sv-claim-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.5rem;
  }

  /* ══════════════════════════════════════════════════════════════════
     HERO B — floating white card over mosaic
  ══════════════════════════════════════════════════════════════════ */
  .sv-hb-stage {
    position: relative;
    height: calc(100vh - 58px);
    min-height: 540px;
    max-height: 820px;
    overflow: hidden;
  }
  .sv-hb-mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3px;
  }
  .sv-hb-primary { overflow: hidden; }
  .sv-hb-primary img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 35%;
    filter: saturate(0.88); display: block;
  }
  .sv-hb-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    height: 100%;
    min-height: 0;
  }
  .sv-hb-cell { overflow: hidden; }
  .sv-hb-cell img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.88); display: block;
  }

  /* The floating white card */
  .sv-hb-card {
    position: absolute;
    bottom: 3rem;
    left: 2.5rem;
    z-index: 2;
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem 2.75rem 2.25rem;
    width: 820px;
    box-shadow: 0 16px 64px rgba(0,0,0,0.16);
  }
  .sv-hb-crumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
  }
  .sv-hb-crumb a {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--terra);
    text-decoration: none;
    transition: opacity 0.18s;
  }
  .sv-hb-crumb a:hover { opacity: 0.7; }
  .sv-hb-crumb span { color: var(--terra); opacity: 0.4; font-size: 10px; }
  .sv-hb-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .sv-hb-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  .sv-hb-stars { color: #FFD700; font-size: 14px; }
  .sv-hb-score { font-family: var(--font-heading); font-weight: 700; color: var(--text); }
  .sv-hb-rcount { color: var(--muted); }
  .sv-hb-dot { color: var(--border); }
  .sv-hb-loc { color: var(--muted); }
  .sv-hb-cta { display: inline-flex; }

  /* Responsive */
  @media (max-width: 900px) {
    .sv-hn-links { display: none; }
    .sv-hb-h1 { font-size: 44px; }
    .sv-hb-card { width: auto; right: 2rem; }
  }
  @media (max-width: 600px) {
    .sv-hb-mosaic { grid-template-columns: 1fr; }
    .sv-hb-secondary { display: none; }
    .sv-hb-card { left: 1rem; right: 1rem; bottom: 1.5rem; }
    .sv-hb-h1 { font-size: 34px; }
  }

  /* ══════════════════════════════════════════════════════════════════
     RELATED VENUES
  ══════════════════════════════════════════════════════════════════ */
  .sv-related {
    background: var(--surface);
    padding: 5rem 0 6rem;
    border-top: 1px solid var(--border);
  }
  .sv-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }

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

  @media (max-width: 1023px) {
    /* .sv-about has no .container inside — needs its own mobile padding */
    .sv-about {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    /* Single column — reset explicit grid placement so main comes first, sidebar below */
    .sv-body-grid {
      grid-template-columns: 1fr;
    }
    .sv-body-grid .sv-main    { grid-column: 1; grid-row: 1; }
    .sv-body-grid .sv-sidebar { grid-column: 1; grid-row: 2; display: grid; grid-template-columns: 1fr 1fr; }

    .sv-wedding-grid {
      grid-template-columns: 1fr 1fr;
    }

    .sv-reviews-grid { grid-template-columns: 1fr; }

    .sv-related-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 700px) {
    .sv-related-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .sv-hero { min-height: 70vh; }
    .sv-hero-h1 { font-size: 38px; }
    .sv-hero-photo-btn { display: none; }

    .sv-reviews-big { font-size: 38px; }
    .sv-reviews-header { flex-direction: column; }

    .sv-body-grid .sv-sidebar {
      grid-template-columns: 1fr;
    }

    .sv-wedding-grid { grid-template-columns: 1fr; }

    .sv-full-gallery {
      grid-template-columns: 1fr 1fr;
    }
    .sv-fg-cell--wide {
      grid-column: span 2;
    }

    .sv-related-grid { grid-template-columns: 1fr; }
  }

/* ── submit-real-wedding ── */
/* ── Gallery ─────────────────────────────────────────────── */
  .srw-gallery {
    background: var(--surface);
    padding: 6rem 0;
  }
  .srw-gallery-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 3rem;
  }
  .ed-vendor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 900px) {
    .ed-vendor-grid { grid-template-columns: repeat(2, 1fr); }
    .srw-gallery-h2 { font-size: 32px; }
  }
  @media (max-width: 600px) {
    .ed-vendor-grid { grid-template-columns: 1fr; }
  }

  /* ── Benefits ────────────────────────────────────────────── */
  .srw-benefits {
    background: var(--white);
    padding: 6rem 0;
  }
  .srw-benefits-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 3.5rem;
  }
  .srw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .srw-benefit { position: relative; padding-top: 1rem; }
  .srw-benefit-ghost {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 96px;
    line-height: 1;
    color: rgba(166, 76, 166, 0.12);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    user-select: none;
  }
  .srw-benefit h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .srw-benefit p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── What We Accept ──────────────────────────────────────── */
  .srw-accept {
    background: var(--bg);
    padding: 6rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
  }
  .srw-accept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .srw-accept-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.25rem;
  }
  .srw-accept-lead {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .srw-accept-types {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  .srw-type-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }
  .srw-type-pip {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    flex-shrink: 0;
  }
  .srw-type-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
  }

  /* ── Mosaic ───────────────────────────────────────────────── */
  .srw-accept-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    align-self: stretch;
  }
  .srw-mosaic-tall {
    overflow: hidden;
    border-radius: 4px;
  }
  .srw-mosaic-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .srw-mosaic-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .srw-mosaic-small {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
  }
  .srw-mosaic-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Responsive ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .srw-benefits-grid { grid-template-columns: 1fr; gap: 2rem; }
    .srw-accept-layout { grid-template-columns: 1fr; gap: 3rem; }
    .srw-accept-mosaic { display: none; }
    .srw-benefits-h2,
    .srw-accept-h2 { font-size: 32px; }
  }

/* ── write-for-us ── */
/* ── Topics + Don'ts ──────────────────────────── */
  .wfu-topics {
    background: var(--white);
    padding: 6rem 0;
  }
  .wfu-topics-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
  .wfu-topics-intro {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .wfu-topics-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.1;
  }
  .wfu-nope-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .wfu-nope-list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    padding: 0.6rem 0 0.6rem 1.5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    line-height: 1.5;
  }
  .wfu-nope-list li:first-child { border-top: 1px solid var(--border); }
  .wfu-nope-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0.62rem;
    font-size: 10px;
    color: var(--terra);
    font-weight: 700;
  }
  .wfu-disclaimer {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--terra-light);
    background: var(--bg);
  }


  /* ── Content Requirements section ────────────── */
  .wfu-specs {
    background: var(--bg);
    padding: 3rem 0 6rem;
  }
  .wfu-specs-h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 3rem;
  }
  .wfu-specs-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
  }
  .wfu-req-list {
    list-style: none;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
  }
  .wfu-req-list li {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    padding: 0.45rem 0 0.45rem 1.2rem;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .wfu-req-list li:first-child { border-top: 1px solid var(--border); }
  .wfu-req-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 10px;
    color: var(--terra);
    font-weight: 700;
  }
  .wfu-req-subhead {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terra);
    margin: 1.25rem 0 0;
  }

  /* ── Responsive ───────────────────────────────── */
  @media (max-width: 900px) {
    .wfu-topics-grid { grid-template-columns: 1fr; gap: 3rem; }
    .wfu-specs-grid { grid-template-columns: 1fr; gap: 2rem; }
  }

/* ══════════════════════════════════════════════════════════════════
   ARTICLE CONTENT — element selectors for WordPress editor output
   Mirrors .ac-* class styles so the_content() output is styled
   without requiring authors to add classes.
══════════════════════════════════════════════════════════════════ */
.article-content p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 66ch;
}
.article-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--text);
  line-height: 1.2;
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.article-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--text);
  line-height: 1.2;
  margin: 2rem 0 0.75rem;
}
.article-content h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.article-content ul,
.article-content ol {
  margin: 0 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.article-content li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.article-content blockquote {
  margin: 2.5rem -2rem;
  padding: 2rem 2.5rem;
  background: var(--bloom);
  border-left: 4px solid var(--terra);
}
.article-content blockquote p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin: 0;
}
.article-content figure {
  margin: 2.5rem 0;
  width: 100%; /* prevent Gutenberg fit-content collapsing lazy images before load */
}
.article-content .ns-pinterest-image {
  display: block;
  width: 100%;
}
.article-content figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-content figcaption {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin-top: 0.6rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--terra-light);
  line-height: 1.5;
  display: block;
}
.article-content a {
  color: var(--terra);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.18s;
}
.article-content a:hover { text-decoration-color: var(--terra); }
.article-content img { max-width: 100%; height: auto; }
.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* WooCommerce product items in gift-guide posts — spacing between items
   (replaces the mb-5 that was removed from the cegg5-container wrapper) */
.post-content p.vendor,
.article-content p.vendor {
  margin-bottom: 3rem;
}
@media (max-width: 1000px) {
  .article-content blockquote { margin: 2rem -1rem; }
}
@media (max-width: 600px) {
  .article-content blockquote p { font-size: 19px; }
}

/* PinnerPress wrapper must not constrain image width */
.wfu-hero-img .pinnerpress-pin-it-container,
.article-content .pinnerpress-pin-it-container {
  width: 100%;
  display: block;
}

/* ── Listeo NL listing cards — L&L overrides ───────────────────────────── */

/* Card shell */
.listing-card-container-nl { margin-bottom: 1.5rem !important; }
.listing-card-nl {
  border-radius: 8px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.08) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.listing-card-nl:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.12) !important;
}

/* Category pill */
.listing-category-tag-nl {
  background: var(--terra) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  padding: 4px 10px !important;
}

/* Bookmark / heart — strip the white circle, keep the icon */
.favorite-icon-nl {
  background: rgba(255,255,255,.75) !important;
  border: none !important;
  box-shadow: none !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.favorite-icon-nl .fa-heart,
.favorite-icon-nl .fa-regular,
.favorite-icon-nl .fa-solid {
  color: var(--terra) !important;
  font-size: 14px !important;
}

/* Verified badge */
.listing-title-nl .verified-icon-nl,
.verified-icon-nl {
  background: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}
.listing-title-nl .verified-icon-nl i,
.listing-title-nl .verified-icon-nl .fa,
.listing-title-nl .verified-icon-nl .fa-check,
.verified-icon-nl i,
.verified-icon-nl .fa,
.verified-icon-nl .fa-check {
  background: var(--terra) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  font-size: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Title */
.listing-title-nl {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--text) !important;
  line-height: 1.3 !important;
}

/* Location */
.listing-location-nl,
.listing-location-nl a {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}

/* Excerpt */
.listing-excerpt-nl {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--muted) !important;
  line-height: 1.55 !important;
}

/* ── Mediavine ad slot spacing ── */
.mv-ad-slot,
[data-ad-wrapper] {
  margin-top: var(--space-l);
  margin-bottom: var(--space-l);
  contain: layout;
}

/* ── Mediavine sticky video — scroll-to-top button clearance ── */
body.mediavine-video__has-sticky #scroll-top-link { bottom: 300px !important; }
body.adhesion:not(.mediavine-video__has-sticky) #scroll-top-link { bottom: 120px !important; }

/* ── PinnerPress save button size ── */
body .ns-pinterest-image-button { padding: 15px !important; }

/* ── Gravity Forms — vendor inquiry form ── */
#gform_submit_button_69 {
  background: var(--terra);
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 110%;
  border: none;
  cursor: pointer;
}
.gform_wrapper.gravity-theme .ginput_complex .ginput_container_date { flex-basis: content; }
select#input_69_3_3,
select#input_69_3_1,
select#input_69_3_2 { padding-right: 40px; }

/* ── HomePage ── */
.hp-hero {
  position: relative;
  background: var(--bg);
  padding: 6rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.hp-hero::after {
  content: 'WEDDINGS.';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(166, 76, 166, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.hp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-hero-h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0.75rem 0 1.5rem;
}
.hp-hero-h1 .hp-dot { color: var(--terra); }
.hp-hero-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--muted);
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}
.hp-hero-tagline .hp-dot { color: var(--terra); }
.hp-hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 2.5rem;
}
.hp-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .hp-hero { padding: 4rem 0 3rem; }
  .ds-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hp-hero::after { display: none; }
  .hp-hero-ctas { flex-direction: column; align-items: center; }
  .ds-grid--3col { grid-template-columns: 1fr; }
}

