
/* ── v3 HERO FULL WIDTH OVERRIDE ──
   lbf-hero-static.css constrains .lbf-hero-static to max-width:1200px.
   In v3 the hero must fill edge-to-edge so the photo goes behind the header. */
/*
 * LBF Homepage v3 — lbf-home-v3.css
 * ─────────────────────────────────────────────────────────────────
 * Premium blueberry festival design system.
 * Scoped to body.lbf-home-v3
 * Fonts: Outfit (display) + Plus Jakarta Sans (UI/body)
 * Brand: #0033ac (blue), #038203 (green)
 * ─────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════
   §1  ROOT CANVAS
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 {
  background: radial-gradient(circle at top center, #edf5ff 0%, #eef7f0 26%, #f7fbff 52%, #fffdf8 78%, #fbfdff 100%);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Outer centering wrapper */
body.lbf-home-v3 .v3-canvas {
  max-width: 1480px;
  margin: 0 auto;
  /* Top padding: floating header (var --header-h) + small visual gap */
  padding: calc(var(--header-h, 82px) + 0.5rem)
           clamp(0.75rem, 2vw, 1.5rem)
           clamp(1.5rem, 3vw, 2.5rem);
}
/* ═══════════════════════════════════════════════════════════════
   v3-outer-card — single rounded container holding hero + content
   This gives the mockup's big rounded-corner card effect.
   overflow:hidden clips the hero photo to the rounded corners.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-outer-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 32px 100px rgba(0,51,172,0.13);
  background: rgba(255,255,255,0.84);
}



/* Main card shell — rounded container holding everything below hero */
body.lbf-home-v3 .v3-shell {
  /* Rounded corners now handled by v3-outer-card wrapper */
  overflow: visible;
  background: rgba(255,255,255,0.84);
  /* backdrop-filter removed — was blurring hero background-image */
}

/* ═══════════════════════════════════════════════════════════════
   §2  HERO — full-bleed photo background, text left-aligned
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  min-height: clamp(480px, 56vw, 680px);
  background: #e8f0fe; /* fallback while photo loads */
}

/* Full-bleed photo — no dark overlay, photo shows bright */
body.lbf-home-v3 .v3-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}
body.lbf-home-v3 .v3-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}

/* No overlays — photo shows fully */
body.lbf-home-v3 .v3-hero::before,
body.lbf-home-v3 .v3-hero::after {
  content: none;
  display: none;
}

/* Inner layout */
body.lbf-home-v3 .v3-hero-inner {
  position: relative; z-index: 10;
  width: 100%;
  max-width: none;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.5rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: flex-start;
  align-items: flex-start;
  min-height: clamp(480px, 56vw, 680px);
}

/* ── Date pill — solid dark navy ── */
body.lbf-home-v3 .v3-hero-date {
  display: inline-flex; align-items: center; gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  background: #001a6e !important;
  border: none !important;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 1.125rem;
  white-space: nowrap;       /* prevent wrapping on mobile */
  flex-wrap: nowrap;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}
/* Shrink date pill on very small screens */
@media (max-width: 420px) {
  body.lbf-home-v3 .v3-hero-date {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    gap: 0.3rem;
  }
  body.lbf-home-v3 .v3-hero-date svg { width: 11px !important; height: 11px !important; }
}
body.lbf-home-v3 .v3-hero-date svg,
body.lbf-home-v3 .v3-hero-date .v3-hero-date-icon svg {
  width: 14px; height: 14px;
  color: #ffffff !important;   /* override .lbf-hs-date svg { color:#1841ad } */
  stroke: #ffffff !important;  /* SVG uses stroke="currentColor" */
  opacity: 1;
}

/* ── Festival logo (replaces headline text) ── */
body.lbf-home-v3 .v3-hero-logo {
  margin-bottom: 1.25rem;
}
body.lbf-home-v3 .v3-hero-logo-img {
  width: clamp(260px, 36vw, 440px);
  height: auto;
  display: block;
  /* Drop shadow so logo pops off the photo */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.22))
          drop-shadow(0 1px 4px rgba(0,0,0,0.18));
}

/* ── CTA buttons — smaller to match mockup ── */
body.lbf-home-v3 .v3-hero-btns {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
body.lbf-home-v3 .v3-btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #001a6e 0%, #0037a7 100%);
  color: #ffffff; border: none; border-radius: 999px;
  padding: 0.55rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(0,26,110,0.30);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,26,110,0.38);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-primary svg { width: 13px; height: 13px; }

body.lbf-home-v3 .v3-btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none;
  border-radius: 999px; padding: 0.54rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(29,78,216,0.30);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(29,78,216,0.42);
  filter: brightness(1.08);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-ghost svg { width: 13px; height: 13px; }

body.lbf-home-v3 .v3-btn-hero-green {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #038203 0%, #16a34a 100%);
  color: #fff; border: none;
  border-radius: 999px; padding: 0.55rem 1.125rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(3,130,3,0.32);
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
body.lbf-home-v3 .v3-btn-hero-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(3,130,3,0.42);
  filter: brightness(1.08);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .v3-btn-hero-green svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  body.lbf-home-v3 .v3-hero-h1 { max-width: 100%; font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-hero-sub { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   §3  STATS BAND — frosted pill, first child of v3-shell
   Negative margin-top pulls it up so it overlaps the hero bottom.
   This avoids all overflow:hidden parent clipping issues.
═══════════════════════════════════════════════════════════════ */

/* Pill sits as first element of the white shell, pulled up into the hero */
body.lbf-home-v3 .v3-stats-band {
  position: relative;
  z-index: 30;
  /* Pull up past shell padding-top (3rem) + half pill height (~1.25rem) */
  margin-top: calc(-3rem - 1.25rem);
  margin-bottom: 1.25rem;

  display: flex;
  justify-content: center;

  width: fit-content;
  max-width: min(960px, calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.80);
  border-radius: 999px;
  padding: 0.45rem 1.25rem;       /* tighter vertical padding = skinnier bar */
  box-shadow:
    0 16px 48px rgba(0, 51, 172, 0.16),
    0 3px 10px rgba(0, 0, 0, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Stat items in a single horizontal row */
body.lbf-home-v3 .v3-stats-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Divider line between items */
body.lbf-home-v3 .v3-stat-card + .v3-stat-card {
  border-left: 1px solid rgba(0, 51, 172, 0.12);
}

/* Individual stat card */
body.lbf-home-v3 .v3-stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  padding: 0.2rem 1.375rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}

/* Circular blue icon badge */
body.lbf-home-v3 .v3-stat-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: linear-gradient(135deg, #0037a7, #0a58ca);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 51, 172, 0.28);
}
body.lbf-home-v3 .v3-stat-icon svg {
  width: 13px; height: 13px;
}

/* Number — centred above label */
body.lbf-home-v3 .v3-stat-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: -0.02em;
  color: #0033ac;
  line-height: 1;
  display: block;
  text-align: center;
}

/* Label — centred below number */
body.lbf-home-v3 .v3-stat-lbl {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 700;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.1rem;
  display: block;
  text-align: center;
}

/* Inner text wrapper — stack num + lbl vertically, centred */
body.lbf-home-v3 .v3-stat-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Shell: compensate for the negative margin so content below starts correctly */
body.lbf-home-v3 .v3-shell.post-hero-first {
  padding-top: 3rem;  /* creates space; pill's negative margin pulls it into hero */
  position: relative;
  z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════
   §4  MAIN CONTENT AREA
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-main {
  background: linear-gradient(180deg, #f8fbff 0%, #fffdf8 100%);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
  display: flex; flex-direction: column;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
}

/* ── Shared section card ── */
body.lbf-home-v3 .v3-card {
  border: 1px solid #e6eefc; border-radius: 30px;
  /* Extra right padding keeps content clear of the absolute chevron */
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(3.5rem, 5vw, 4.5rem) clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 18px 38px rgba(0,51,172,0.065);
  position: relative; /* anchors the absolute-positioned collapse chevron */
}

/* ── Section header row ── */
body.lbf-home-v3 .v3-sec-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}

/* ── Centred section heading treatment ── */
body.lbf-home-v3 .lbf-sec-hdr-centred {
  flex-direction: column;
  align-items: center !important;
  text-align: center;
  justify-content: center !important;
  margin-bottom: 0.75rem;
}
body.lbf-home-v3 .lbf-sec-heading-block {
  text-align: center;
  width: 100%;
}
/* Decorative side lines on eyebrow */
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::before,
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 2rem;
  background: linear-gradient(90deg, transparent, rgba(47,103,201,0.4));
}
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-eyebrow::after {
  background: linear-gradient(90deg, rgba(47,103,201,0.4), transparent);
}
/* Centred title */
body.lbf-home-v3 .lbf-sec-hdr-centred .v3-sec-title {
  text-align: center;
}
/* Intro paragraph — two-line centred copy under heading */
body.lbf-home-v3 .v3-sec-intro {
  text-align: center;
  max-width: 100ch;
  margin: 0 auto 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}
/* Pill-link that uses the new gradient (Become a Sponsor, etc.) */
body.lbf-home-v3 .lbf-pill-btn-grad {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%) !important;
  color: #fff !important;
}
body.lbf-home-v3 .v3-sec-eyebrow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #2f67c9; margin-bottom: 0.25rem;
}
body.lbf-home-v3 .v3-sec-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem); font-weight: 700;
  letter-spacing: -0.03em; color: #0f172a; line-height: 1.1; margin: 0;
}
body.lbf-home-v3 .v3-sec-title span { color: #0033ac; }
body.lbf-home-v3 .v3-sec-sub {
  font-size: 0.875rem; color: #64748b; margin-top: 0.2rem;
}

/* ── Pill link button ── */
body.lbf-home-v3 .v3-pill-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; border-radius: 999px;
  padding: 0.45rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,51,172,0.07);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.12s ease;
}
body.lbf-home-v3 .v3-pill-link:hover { transform: translateY(-1px); text-decoration: none; color: #0033ac; }

/* ── Two-column grid layout ── */
body.lbf-home-v3 .v3-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   §5  ATTRACTIONS
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-attr-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem;
}
body.lbf-home-v3 .attr-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #edf2ff; border-radius: 22px;
  padding: 0.875rem; box-shadow: 0 8px 18px rgba(0,51,172,0.04);
  display: flex; align-items: flex-start; gap: 0.75rem;
  transition: box-shadow 0.15s ease;
}
body.lbf-home-v3 .attr-card:hover { box-shadow: 0 12px 26px rgba(0,51,172,0.09); }
body.lbf-home-v3 .attr-img {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #edf4ff, #eef8ef 56%, #fff4dd);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,51,172,0.05);
  font-size: 1.25rem; overflow: visible; /* visible so SVG isn't clipped */
  color: #0033ac;
}
body.lbf-home-v3 .attr-img svg { /* Lucide SVG icons in attr-img */
  width: 22px; height: 22px; flex-shrink: 0;
}
body.lbf-home-v3 .attr-img span { /* wrapper span around icon output */
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; color: #0033ac;
}
body.lbf-home-v3 .attr-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
body.lbf-home-v3 .attr-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.2rem;
}
body.lbf-home-v3 .attr-body p {
  font-size: 0.8125rem; line-height: 1.5; color: #64748b; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
body.lbf-home-v3 .attr-body .tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.15rem 0.55rem; border-radius: 999px; margin-top: 0.35rem;
}
/* Legacy attr card icon float — hide in v3 */
body.lbf-home-v3 .attr-card-icon-float { display: none; }

/* ═══════════════════════════════════════════════════════════════
   §6  SCHEDULE
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #schedule.section { padding: 0; }
body.lbf-home-v3 #schedule .lbf-sec-card { display: none; } /* hidden — replaced by v3-card */

body.lbf-home-v3 .v3-sched-wrap { display: flex; flex-direction: column; gap: 0.75rem; }

body.lbf-home-v3 .day-tabs {
  /* Guaranteed single row — flex:1 on each tab shares width, nowrap prevents overflow */
  display: flex; flex-wrap: nowrap; gap: 0.3rem; margin-bottom: 0.75rem;
  width: 100%; overflow-x: auto; /* scrollable fallback if truly too many tabs */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* hide scrollbar — looks clean */
}
body.lbf-home-v3 .day-tabs::-webkit-scrollbar { display: none; }
body.lbf-home-v3 .day-tab {
  background: #f1f5fd; border: none; border-radius: 999px;
  flex: 1 1 0; min-width: 0; /* equal share, allowed to shrink to nothing */
  padding: 0.3rem 0.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  color: #4b68b0; text-transform: uppercase; text-align: center;
  cursor: pointer; transition: background 0.15s, color 0.15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
body.lbf-home-v3 .day-tab.active,
body.lbf-home-v3 .day-tab:hover {
  background: #0033ac; color: #fff;
}
body.lbf-home-v3 .sched-panel { display: none; }
body.lbf-home-v3 .sched-panel.active { display: block; }
body.lbf-home-v3 .sched-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0.875rem; /* side padding: time off left, badge off right */
  border-bottom: 1px solid #f0f4ff;
}
body.lbf-home-v3 .sched-row:last-child { border-bottom: none; }
body.lbf-home-v3 .sched-time {
  font-size: 0.8125rem; font-weight: 700; color: #0033ac;
  white-space: nowrap; min-width: 68px; padding-top: 0.1rem;
}
body.lbf-home-v3 .sched-info h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.15rem;
}
body.lbf-home-v3 .sched-loc {
  font-size: 0.8125rem; color: #6b7280; margin: 0;
}
body.lbf-home-v3 .sched-cat { margin-left: auto; flex-shrink: 0; padding-left: 0.5rem; }
body.lbf-home-v3 .sched-cat-badge {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; border: 1px solid;
}
body.lbf-home-v3 .lbf-schedule-soon {
  color: #64748b; font-size: 0.9375rem; text-align: center; padding: 2rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   §7  ENTERTAINERS
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-ent-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.875rem;
}
body.lbf-home-v3 .v3-ent-card {
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 24px;
  padding: 1rem; box-shadow: 0 10px 22px rgba(0,51,172,0.045);
  display: flex; flex-direction: column; gap: 0.75rem;
}
body.lbf-home-v3 .v3-ent-thumb {
  width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
body.lbf-home-v3 .v3-ent-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.lbf-home-v3 .v3-ent-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0;
}
body.lbf-home-v3 .v3-ent-stage {
  font-size: 0.8125rem; color: #64748b; margin: 0.1rem 0 0;
}
body.lbf-home-v3 .v3-ent-time-pill {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #eff8ef, #fff3dd);
  color: #166534; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(3,130,3,0.07);
  border: 1px solid #d9f0d9; width: fit-content;
}
/* Empty state */
body.lbf-home-v3 .v3-ent-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 2.5rem 1rem; color: #94a3b8;
  font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════════
   §8  PAGEANT
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #pageant.section { padding: 0; }
body.lbf-home-v3 .v3-pag-intro-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
body.lbf-home-v3 .v3-pag-intro-row p {
  font-size: 0.9375rem; color: #475569; margin: 0; max-width: 480px;
}
body.lbf-home-v3 .v3-pag-grid {
  display: grid !important;    /* override .cat-grid { display:flex } in style.css */
  /* 3 per row — all 6 categories side-by-side in 2 rows */
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: none !important;  /* override .cat-grid max-width:900px */
  gap: 0.875rem; margin-bottom: 1.25rem;
}

/* Override .cat-card flex sizing from style.css so grid cells work correctly */
body.lbf-home-v3 .v3-pag-grid .cat-card {
  width: auto !important;
  flex-shrink: unset !important;
  min-width: 0 !important;
}
body.lbf-home-v3 .cat-card {
  /* Royal blue-to-green gradient fill */
  background: linear-gradient(135deg, #eef3ff 0%, #e8f4e8 60%, #f0f8ff 100%);
  border: 1px solid rgba(0,51,172,0.12);
  border-radius: 20px;
  padding: 1.25rem 1.375rem;
  box-shadow: 0 8px 22px rgba(0,51,172,0.08);
  /* Vertical stack: icon on top, text below — no overflow */
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  gap: 0.625rem;
  min-height: 110px; /* tall enough for icon + two-line name + age */
  transition: box-shadow 0.15s, background 0.15s;
}
body.lbf-home-v3 .cat-card:hover { box-shadow: 0 12px 24px rgba(3,130,3,0.09); }
body.lbf-home-v3 .cat-card--empty { opacity: 0.45; border-style: dashed; }
body.lbf-home-v3 .cat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, #0033ac, #1f64d8 60%, #038203);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0,51,172,0.22);
}
body.lbf-home-v3 .cat-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700; color: #0f172a; line-height: 1.25;
  text-align: center; white-space: normal;
  word-break: break-word; /* last resort wrap */
}
body.lbf-home-v3 .cat-age { font-size: 0.8125rem; color: #475569; margin-top: 0; text-align: center; }

/* Pageant edit hint */
body.lbf-home-v3 .lbf-pag-edit-hint {
  font-size: 0.8rem; color: #94a3b8; margin-top: 0.5rem;
  background: #f8faff; padding: 0.5rem 0.75rem; border-radius: 8px;
}

/* Pageant buttons */
body.lbf-home-v3 .v3-pag-btns {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1rem;
  justify-content: center;
  padding-bottom: 1.5rem;
}
body.lbf-home-v3 .v3-pag-btns .btn-gold {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 12px 22px rgba(0,51,172,0.18);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
}
body.lbf-home-v3 .v3-pag-btns .btn-ghost-white {
  background: #fff; color: #374151;
  border: 1px solid #dfe9ff; border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   §9  REGISTRATION + SPONSORS SIDE-BY-SIDE
═══════════════════════════════════════════════════════════════ */
/* Registration grid — compact 2-col */
body.lbf-home-v3 #forms.section { padding: 0; }
body.lbf-home-v3 .v3-reg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem;
}
body.lbf-home-v3 .form-card {
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 20px;
  padding: 0.875rem;
  box-shadow: 0 8px 18px rgba(0,51,172,0.04);
  border-top: 3px solid #0033ac; /* overridden inline by card color */
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s;
}
/* Icon + title on same row */
body.lbf-home-v3 .form-card .form-card-header {
  display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.375rem;
}
body.lbf-home-v3 .form-card:hover { box-shadow: 0 12px 26px rgba(0,51,172,0.08); }
body.lbf-home-v3 .form-card .form-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef 56%, #fff4dd);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0,51,172,0.05);
  margin-bottom: 0; color: #0033ac;
}
body.lbf-home-v3 .form-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700; color: #0f172a;
  margin: 0; line-height: 1.25;
}
body.lbf-home-v3 .form-card p {
  font-size: 0.8rem; color: #64748b; line-height: 1.45; margin: 0 0 0.5rem;
}
body.lbf-home-v3 .feat-list {
  list-style: none; padding: 0; margin: 0 0 0.625rem;
}
body.lbf-home-v3 .feat-list li {
  font-size: 0.75rem; color: #475569; padding: 0.1rem 0;
  padding-left: 1rem; position: relative;
}
body.lbf-home-v3 .feat-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #038203; font-weight: 700; font-size: 0.7rem;
}
body.lbf-home-v3 .form-card .btn-blue.btn-full {
  /* Pill matching tier-view-all style but with gradient fill */
  display: flex; align-items: center; gap: 0.35rem;
  width: calc(100% - 0px); /* full width of the card */
  justify-content: center;
  margin: 0.75rem 0 0;
  text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff !important; border: none; border-radius: 999px;
  padding: 0.3rem 0.875rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,51,172,0.18);
  transition: filter 0.12s;
}
body.lbf-home-v3 .form-card .btn-blue.btn-full:hover {
  filter: brightness(1.1); text-decoration: none; color: #fff !important;
}

/* ── Sponsors ── */
body.lbf-home-v3 #sponsors.section { padding: 0; }
body.lbf-home-v3 .v3-tier-block { margin-bottom: 1rem; }
body.lbf-home-v3 .v3-tier-block:last-child { margin-bottom: 0; }

/* Presenting tier — gradient border */
body.lbf-home-v3 .tier-row.v3-presenting-tier {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  border-radius: 24px; padding: 1.5px;
  box-shadow: 0 16px 34px rgba(0,51,172,0.16);
}
body.lbf-home-v3 .tier-row.v3-presenting-tier .v3-tier-inner {
  background: linear-gradient(180deg, #eef5ff, #f1faf1 54%, #fff8eb);
  border-radius: 22.5px; padding: 1rem 1.25rem;
}
body.lbf-home-v3 .tier-row.v3-presenting-tier .tier-label.tp { color: #0033ac; }

/* Regular tiers */
body.lbf-home-v3 .tier-row:not(.v3-presenting-tier) {
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 22px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 10px 22px rgba(0,51,172,0.04);
}

body.lbf-home-v3 .tier-head {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 0.75rem;
  flex-direction: column; text-align: center;
}
body.lbf-home-v3 .tier-div { display: none; } /* divider line hidden with centered label */
body.lbf-home-v3 .tier-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
}
body.lbf-home-v3 .tier-label.tp { color: #2f67c9; }
body.lbf-home-v3 .tier-label.tg { color: #a16207; }
body.lbf-home-v3 .tier-label.ts { color: #475569; }
body.lbf-home-v3 .tier-label.tb { color: #92400e; }
body.lbf-home-v3 .tier-div { flex: 1; height: 1px; background: #e5ecff; }
body.lbf-home-v3 .v3-top-tier-badge {
  background: rgba(255,255,255,0.85); border: 1px solid #d9f0d9;
  border-radius: 999px; padding: 0.2rem 0.625rem;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #038203;
}

body.lbf-home-v3 .sponsor-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
/* Logo sizes */
body.lbf-home-v3 .sp { display: flex; align-items: center; justify-content: center; }
body.lbf-home-v3 .sp img { max-height: 100%; width: auto; object-fit: contain; }
body.lbf-home-v3 .sp-xl { min-width: 180px; height: 72px; background: rgba(255,255,255,0.9); border-radius: 16px; border: 1px solid #e6eefc; padding: 0.625rem 1.25rem; box-shadow: 0 8px 18px rgba(0,51,172,0.05); }
body.lbf-home-v3 .sp-lg { min-width: 130px; height: 54px; background: #fff; border-radius: 14px; border: 1px solid #e6eefc; padding: 0.5rem 1rem; }
body.lbf-home-v3 .sp-md { min-width: 100px; height: 44px; background: #fff; border-radius: 12px; border: 1px solid #e6eefc; padding: 0.4rem 0.75rem; }
body.lbf-home-v3 .sp-sm { min-width: 80px; height: 36px; background: #f8faff; border-radius: 10px; border: 1px solid #edf2ff; padding: 0.3rem 0.625rem; font-size: 0.75rem; font-weight: 600; color: #475569; }
body.lbf-home-v3 .sp-xs { min-width: 60px; height: 30px; background: #f8faff; border-radius: 999px; border: 1px solid #edf2ff; padding: 0.2rem 0.5rem; font-size: 0.6875rem; font-weight: 600; color: #64748b; }
body.lbf-home-v3 .sp-name-text { font-size: 0.875rem; font-weight: 600; color: #1e3a8a; }

/* Sponsor CTA */
body.lbf-home-v3 .sp-cta {
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8faff, #f5fbf5);
  border: 1px solid #e6eefc; border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
body.lbf-home-v3 .sp-cta h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0 0 0.2rem;
}
body.lbf-home-v3 .sp-cta p { font-size: 0.875rem; color: #64748b; margin: 0; }
body.lbf-home-v3 .sp-cta .btn-gold {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 8px;
  padding: 0.55rem 1rem; font-size: 0.875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}
body.lbf-home-v3 .sp-cta .btn-blue {
  background: #fff; color: #0033ac; border: 1px solid #c7d8ff; border-radius: 8px;
  padding: 0.55rem 1rem; font-size: 0.875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   §10  DONATE
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #donate.section { padding: 0; }
body.lbf-home-v3 .v3-donate-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  align-items: start;
}
body.lbf-home-v3 .imp-list { list-style: none; padding: 0; margin: 1rem 0 0; }
body.lbf-home-v3 .imp-item {
  display: flex; gap: 0.75rem; padding: 0.625rem 0;
  border-bottom: 1px solid #f1f5ff;
}
body.lbf-home-v3 .imp-item:last-child { border-bottom: none; }
body.lbf-home-v3 .imp-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #0033ac;
}
body.lbf-home-v3 .imp-h4 { font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
body.lbf-home-v3 .imp-p { font-size: 0.8125rem; color: #64748b; margin-top: 0.1rem; }

body.lbf-home-v3 .donate-card {
  border: 1px solid #e6eefc;
  border-radius: 22px; padding: 1.375rem;
  box-shadow: 0 14px 32px rgba(0,51,172,0.08);
}
body.lbf-home-v3 .donate-card-h {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem;
}
body.lbf-home-v3 .amt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.875rem;
}
body.lbf-home-v3 .amt-btn {
  background: linear-gradient(180deg, #fff, #fffaf1);
  border: 1px solid #edf2ff; border-radius: 14px;
  padding: 0.875rem 0.5rem; text-align: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.125rem; font-weight: 700; color: #0f172a;
  cursor: pointer; transition: border-color 0.14s, box-shadow 0.14s;
  box-shadow: 0 6px 14px rgba(0,51,172,0.05);
}
body.lbf-home-v3 .amt-btn.active,
body.lbf-home-v3 .amt-btn:hover {
  border-color: #0033ac; box-shadow: 0 8px 20px rgba(0,51,172,0.12);
}
body.lbf-home-v3 .cin {
  width: 100%; border: 1px solid #e6eefc; border-radius: 10px;
  padding: 0.625rem 0.875rem; font-size: 0.9375rem; color: #0f172a;
  margin-bottom: 0.75rem; outline: none;
}
body.lbf-home-v3 .cin:focus { border-color: #0033ac; }
body.lbf-home-v3 .recur-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: #475569; margin-bottom: 0.875rem; cursor: pointer;
}
body.lbf-home-v3 .donate-card .btn-green.btn-full {
  display: block; text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 14px;
  padding: 0.875rem; font-size: 0.9375rem; font-weight: 700;
  text-decoration: none; box-shadow: 0 14px 28px rgba(0,51,172,0.18);
  letter-spacing: 0.01em;
}
body.lbf-home-v3 .pay-row {
  display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.75rem;
}
body.lbf-home-v3 .pay-chip {
  font-size: 0.75rem; font-weight: 600; color: #64748b;
  background: #f8faff; border: 1px solid #e6eefc;
  border-radius: 6px; padding: 0.2rem 0.55rem;
}

/* ═══════════════════════════════════════════════════════════════
   §11  CONTACT
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 #contact.section { padding: 0; }
body.lbf-home-v3 .v3-contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem;
}
body.lbf-home-v3 .info-cards {
  display: flex; flex-direction: column; gap: 0.625rem;
}
body.lbf-home-v3 .info-card {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: linear-gradient(180deg, #fff, #f9fcff);
  border: 1px solid #edf2ff; border-radius: 18px;
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 18px rgba(0,51,172,0.04);
}
body.lbf-home-v3 .info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, #edf4ff, #eef8ef);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #0033ac;
}
body.lbf-home-v3 .info-text h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin: 0 0 0.15rem;
}
body.lbf-home-v3 .info-text p { font-size: 0.875rem; color: #64748b; margin: 0; }
body.lbf-home-v3 .info-text a { color: #0033ac; text-decoration: none; }
body.lbf-home-v3 .info-text a:hover { text-decoration: underline; }
body.lbf-home-v3 .info-card--social .contact-social-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem;
}
body.lbf-home-v3 .contact-social-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; border-radius: 999px;
  padding: 0.3rem 0.75rem; font-size: 0.8125rem; font-weight: 600;
  text-decoration: none;
}
body.lbf-home-v3 .lbf-map-placeholder {
  background: #f8faff; border: 1px dashed #dbe7ff; border-radius: 14px;
  padding: 1.25rem; text-align: center; margin-top: 0.75rem;
}
body.lbf-home-v3 .map-box { margin-top: 0.75rem; }
body.lbf-home-v3 .map-box iframe { border-radius: 14px; width: 100%; }
body.lbf-home-v3 .cf h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem; font-weight: 700; color: #0f172a; margin: 0 0 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   §12  TABLET BREAKPOINTS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  body.lbf-home-v3 .v3-two-col { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-ent-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-pag-grid { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .v3-donate-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-contact-grid { grid-template-columns: 1fr; }
  /* Stats pill: 2×2 grid on tablet, still uses negative margin */
  body.lbf-home-v3 .v3-stats-band {
    border-radius: 20px;
    padding: 1rem 1.25rem;
    margin-top: -1.5rem;
    max-width: calc(100% - 2rem);
  }
  body.lbf-home-v3 .v3-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  body.lbf-home-v3 .v3-stat-card + .v3-stat-card { border-left: none; }
  body.lbf-home-v3 .v3-stat-card {
    padding: 0.625rem 1rem;
    border-radius: 10px;
    background: rgba(0,51,172,0.04);
  }
  body.lbf-home-v3 .v3-shell.post-hero-first { padding-top: 0; }
}

@media (max-width: 767px) {
  body.lbf-home-v3 .v3-attr-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-reg-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-ent-grid { grid-template-columns: 1fr; }
  body.lbf-home-v3 .v3-pag-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-stats-grid { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .v3-hero-h1 { font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-hero-h1 { font-size: clamp(1.5rem, 8vw, 2.25rem); }
  body.lbf-home-v3 .v3-outer-card { border-radius: 16px; }
  body.lbf-home-v3 .v3-card { border-radius: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   §13  KEEP INLINE-EDITOR HOOKS VISIBLE
   lbf_ef() adds contenteditable/data-lbf-field — ensure they
   still show teal dashed outlines inside the v3 design.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 [data-lbf-field][contenteditable] {
  outline: 2px dashed rgba(13,148,136,0.35); outline-offset: 2px; border-radius: 3px;
}
body.lbf-home-v3 [data-lbf-field][contenteditable]:hover,
body.lbf-home-v3 [data-lbf-field][contenteditable]:focus {
  outline-color: #0d9488;
}

/* ═══════════════════════════════════════════════════════════════
   §14  OVERRIDE OLD v2 CARD SYSTEM INSIDE v3
   Sections rendered inside v3-card must not double-apply v2 styles.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .lbf-sec-card {
  margin: 0; border: none; border-radius: 0; background: transparent;
  box-shadow: none; padding: 0; overflow: visible;
}
body.lbf-home-v3 .container { padding-left: 0; padding-right: 0; }
body.lbf-home-v3 .lbf-heading-wrap { margin-bottom: 1rem; }
/* v2 sec-h uses Barlow — override to Outfit */
body.lbf-home-v3 .sec-h {
  font-family: 'Outfit', system-ui, sans-serif !important;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem) !important;
  font-weight: 700 !important; text-transform: none !important;
  letter-spacing: -0.03em !important;
}
body.lbf-home-v3 .sec-tag {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #2f67c9;
  background: none; padding: 0; border-radius: 0; margin-bottom: 0.25rem;
}

/* ── Per-tier "View all" link inside each sponsor tier ── */
body.lbf-home-v3 .tier-view-all {
  display: flex; justify-content: flex-end; margin-top: 0.5rem;
}
body.lbf-home-v3 .tier-view-all a {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.625rem; font-weight: 600; color: #2f67c9;
  background: #f0f5ff; border: 1px solid #dbe7ff;
  border-radius: 999px; padding: 0.15rem 0.55rem;
  text-decoration: none; white-space: nowrap;
  transition: background 0.12s;
}
body.lbf-home-v3 .tier-view-all a:hover {
  background: #e0ecff; text-decoration: none; color: #0033ac;
}

/* ═══════════════════════════════════════════════════════════════
   §15  COLLAPSIBLE SECTIONS
   The chevron sits absolute top-right of the card — completely
   out of flow, so sec-hdr and all content are never affected.
═══════════════════════════════════════════════════════════════ */
body.lbf-home-v3 .v3-collapsible { /* no extra layout needed */ }

/* Chevron — absolute top-right corner of the card */
body.lbf-home-v3 .v3-collapse-chevron {
  /* Absolute top-right — out of flow, nothing moves */
  position: absolute;
  top: clamp(1rem, 1.8vw, 1.5rem);
  right: clamp(1rem, 1.8vw, 1.5rem);
  /* Reset ALL browser button defaults */
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0;
  padding: 0;
  margin: 0;
  /* Size: small icon only */
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #a0b0d0;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1), color 0.15s;
}
body.lbf-home-v3 .v3-collapse-chevron:hover,
body.lbf-home-v3 .v3-collapse-chevron:focus { color: #2f67c9; outline: none; box-shadow: none; }
body.lbf-home-v3 .v3-collapsible.v3-collapsed .v3-collapse-chevron {
  transform: rotate(-90deg);
}

/* Section body slides away on collapse — card header is untouched */
body.lbf-home-v3 .v3-section-body {
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22,0.61,0.36,1), opacity 0.25s ease;
  max-height: 9999px; opacity: 1;
}
body.lbf-home-v3 .v3-collapsible.v3-collapsed .v3-section-body {
  max-height: 0 !important; opacity: 0; pointer-events: none;
}

/* ── Donate + Contact side-by-side row ─────────────────────────────────── */
body.lbf-home-v3 .v3-donate-contact-row {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1100px) {
  body.lbf-home-v3 .v3-donate-contact-row { grid-template-columns: 1fr; }
}

/* ── Donate card: full-width, no inner two-col ──────────────────────────── */
body.lbf-home-v3 .v3-donate-full {
  /* no inner grid — just padding of parent card */
  padding: 0; border: none; border-radius: 0; box-shadow: none;
  background: transparent;
}

/* Amount buttons: larger, with label below the $ figure */
body.lbf-home-v3 .v3-donate-full .amt-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem; margin-bottom: 0;
}
body.lbf-home-v3 .v3-donate-full .amt-btn {
  /* Row layout: text left, heart right */
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: 16px; gap: 0.75rem;
  /* All buttons solid white — no active state difference */
  background: #fff !important;
  border-color: #e6eefc !important;
  box-shadow: 0 4px 12px rgba(0,51,172,0.06) !important;
}
body.lbf-home-v3 .v3-donate-full .amt-btn:hover {
  border-color: #0033ac !important;
  box-shadow: 0 6px 18px rgba(0,51,172,0.12) !important;
}
body.lbf-home-v3 .amt-btn-inner {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem;
  flex: 1; min-width: 0;
}
body.lbf-home-v3 .amt-val {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #0f172a; line-height: 1;
}
body.lbf-home-v3 .amt-desc {
  font-size: 0.75rem; color: #64748b; line-height: 1.3; text-align: left;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
/* Gradient heart icon — right side of each button */
body.lbf-home-v3 .amt-heart {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 22px; height: 22px; opacity: 0.7;
  transition: opacity 0.14s, transform 0.14s;
}
body.lbf-home-v3 .amt-heart svg { width: 22px; height: 22px; display: block; }
body.lbf-home-v3 .v3-donate-full .amt-btn:hover .amt-heart {
  opacity: 1; transform: scale(1.15);
}

/* Donate Now button wrap: full width, prominent, with breathing room */
body.lbf-home-v3 .v3-donate-btn-wrap {
  margin-top: 1.125rem;
  padding: 0;
}
body.lbf-home-v3 .v3-donate-cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0,51,172,0.22);
  transition: filter 0.15s, box-shadow 0.15s;
}
body.lbf-home-v3 .v3-donate-cta:hover {
  filter: brightness(1.07); color: #fff; text-decoration: none;
  box-shadow: 0 20px 44px rgba(0,51,172,0.28);
}

/* ── Contact: info on left, CTA button col on right ─────────────────────── */
body.lbf-home-v3 .v3-contact-cta-col {
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  gap: 1.25rem; padding-top: 0.5rem;
}
body.lbf-home-v3 .v3-contact-cta-text {
  font-size: 0.9375rem; line-height: 1.65; color: #475569; margin: 0;
}
body.lbf-home-v3 .v3-contact-page-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; border: none; border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,51,172,0.2);
  transition: filter 0.15s, box-shadow 0.15s;
}
body.lbf-home-v3 .v3-contact-page-btn:hover {
  filter: brightness(1.07); color: #fff; text-decoration: none;
  box-shadow: 0 16px 34px rgba(0,51,172,0.28);
}
body.lbf-home-v3 .v3-contact-page-btn svg { color: #fff; }

/* Recurring gift checkbox row */
body.lbf-home-v3 .v3-recur-row {
  display: flex; align-items: center; gap: 0.625rem;
  margin: 1rem 0 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.875rem; color: #475569; cursor: pointer;
  user-select: none;
}
body.lbf-home-v3 .v3-recur-check {
  width: 16px; height: 16px; flex-shrink: 0; cursor: pointer;
  accent-color: #0033ac;
}

/* Payment method chips below Donate Now */
body.lbf-home-v3 .v3-pay-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.375rem; margin-top: 0.875rem;
}
body.lbf-home-v3 .v3-pay-chip {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6875rem; font-weight: 600; color: #64748b;
  background: #f8faff; border: 1px solid #e6eefc;
  border-radius: 999px; padding: 0.2rem 0.7rem;
}

/* Social icon buttons — circle with brand color on hover */
body.lbf-home-v3 .v3-social-icon-row {
  display: flex; gap: 0.625rem; margin-top: 0.625rem; align-items: center;
}
body.lbf-home-v3 .v3-social-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #eef5ff, #eef8ef);
  color: #0033ac; text-decoration: none; flex-shrink: 0;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  box-shadow: 0 4px 12px rgba(0,51,172,0.1);
}
body.lbf-home-v3 .v3-social-icon-btn:hover {
  transform: translateY(-2px); text-decoration: none;
}
body.lbf-home-v3 .v3-social-fb:hover { background: #1877f2; color: #fff; }
body.lbf-home-v3 .v3-social-ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888);
  color: #fff;
}

/* ── v3 override: lbf-top-shell bg must be transparent so outer-card clips cleanly */
body.lbf-home-v3 .lbf-top-shell {
  background: transparent;
}


/* ── Stats pill: single column on phones ── */
@media (max-width: 520px) {
  body.lbf-home-v3 .v3-stats-band {
    border-radius: 18px;
    bottom: 0;
    padding: 0.875rem 1rem;
  }
  body.lbf-home-v3 .v3-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
  }
  body.lbf-home-v3 .v3-stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
  }
  body.lbf-home-v3 .v3-stat-num,
  body.lbf-home-v3 .v3-stat-lbl { display: block; margin-left: 0; }
  body.lbf-home-v3 .v3-shell.post-hero-first { padding-top: calc(1.75rem + 1.5rem); }

}
/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE THE FESTIVAL — Section CSS (v24.0)
   Scoped to .lbf-exp-* — zero bleed to other sections
═══════════════════════════════════════════════════════════════ */


/* Experience section — full width */
body.lbf-home-v3 .lbf-exp-section {
  width: 100%;
}

/* ── Centred heading block ── */
body.lbf-home-v3 .lbf-exp-hdr-centred {
  justify-content: center !important;
  text-align: center;
  flex-direction: column;
  align-items: center !important;
}
body.lbf-home-v3 .lbf-exp-heading-block {
  text-align: center;
  width: 100%;
}
/* Decorative lines flanking the eyebrow */
body.lbf-home-v3 .lbf-exp-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
body.lbf-home-v3 .lbf-exp-eyebrow::before,
body.lbf-home-v3 .lbf-exp-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(90deg, transparent, #c4b5fd);
}
body.lbf-home-v3 .lbf-exp-eyebrow::after {
  background: linear-gradient(90deg, #c4b5fd, transparent);
}
/* Heading size bump for centred treatment */
body.lbf-home-v3 .lbf-exp-title {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem) !important;
  text-align: center;
}

/* ── Intro text — larger, constrained to ~2 lines ── */
body.lbf-home-v3 .lbf-exp-intro {
  text-align: center;
  /* ~55ch keeps the text to roughly 2 lines at the larger font size */
  max-width: 100ch;
  margin: 0 auto 1.5rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

/* ── Five-card grid ── */
body.lbf-home-v3 .lbf-exp-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

/* ── Individual card ── */
body.lbf-home-v3 .lbf-exp-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(203,213,235,0.7);
  background: #fff;
  box-shadow: 0 8px 22px rgba(60,80,140,0.07);
  transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.28s ease;
}
body.lbf-home-v3 .lbf-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(60,80,140,0.15);
}
body.lbf-home-v3 .lbf-exp-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ── Card photo area ── */
body.lbf-home-v3 .lbf-exp-card__img-wrap {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: #1a3064;
}
body.lbf-home-v3 .lbf-exp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
body.lbf-home-v3 .lbf-exp-card:hover .lbf-exp-card__img {
  transform: scale(1.07);
}
body.lbf-home-v3 .lbf-exp-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e3a7a 0%, #2f5daa 100%);
}

/* Overlays */
body.lbf-home-v3 .lbf-exp-card__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(30,55,140,0.12) 0%,
    rgba(47,93,170,0.08) 45%,
    rgba(15,35,100,0.32) 100%);
}
body.lbf-home-v3 .lbf-exp-card__glow-top {
  position: absolute; inset-inline: 0; top: 0; height: 36px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
}
body.lbf-home-v3 .lbf-exp-card__glow-bot {
  position: absolute; inset-inline: 0; bottom: 0; height: 44px; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(100,130,215,0.22) 60%, rgba(255,255,255,0.18) 100%);
}

/* Pill tag */
body.lbf-home-v3 .lbf-exp-card__pill {
  position: absolute; top: 7px; left: 7px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 0.14rem 0.45rem;           /* ~15% smaller */
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.51rem; font-weight: 800; /* 0.6 * 0.85 = 0.51 */
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #334155;
  pointer-events: none;
}

/* ── Card body ── */
body.lbf-home-v3 .lbf-exp-card__body {
  position: relative;
  padding: 0.25rem 0.875rem 0.875rem;
  text-align: center;
}

/* Floating icon badge */
body.lbf-home-v3 .lbf-exp-card__icon {
  position: relative;
  width: 38px; height: 38px;
  margin: -22px auto 0.5rem;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(30,60,150,0.22);
  z-index: 2;
}
body.lbf-home-v3 .lbf-exp-card__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.975rem; font-weight: 700;
  color: #1e3a8a; line-height: 1.2;
  margin: 0 0 0.35rem;
}
body.lbf-home-v3 .lbf-exp-card__desc {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.7125rem; line-height: 1.5;
  color: #475569; margin: 0;
}

/* ── Schedule strip ── */
body.lbf-home-v3 .lbf-exp-sched {
  position: relative;
  border-radius: 20px;
  border: 1px solid #dfe3f3;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(52,76,139,0.08);
}

/* Sparkle dot texture background */
body.lbf-home-v3 .lbf-exp-sched__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 8% 20%,  rgba(255,255,255,0.9)  0, rgba(255,255,255,0.9)  1.5px, transparent 2.5px),
    radial-gradient(circle at 22% 68%, rgba(255,255,255,0.75) 0, rgba(255,255,255,0.75) 1px,   transparent 2px),
    radial-gradient(circle at 38% 32%, rgba(196,181,253,0.4)  0, rgba(196,181,253,0.4)  2px,   transparent 3.5px),
    radial-gradient(circle at 55% 75%, rgba(255,255,255,0.8)  0, rgba(255,255,255,0.8)  1.5px, transparent 2.5px),
    radial-gradient(circle at 67% 24%, rgba(96,165,250,0.22)  0, rgba(96,165,250,0.22)  2px,   transparent 3.5px),
    radial-gradient(circle at 80% 58%, rgba(255,255,255,0.7)  0, rgba(255,255,255,0.7)  1px,   transparent 2px),
    radial-gradient(circle at 92% 18%, rgba(167,139,250,0.3)  0, rgba(167,139,250,0.3)  2px,   transparent 3.5px),
    linear-gradient(180deg, #f7f8fe 0%, #eef2ff 100%);
}

body.lbf-home-v3 .lbf-exp-sched__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.82fr) 3.38fr;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(241,245,255,0.92));
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.9);
  margin: 2px;
}

/* Left panel */
body.lbf-home-v3 .lbf-exp-sched__left {
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(219,227,243,0.6);
}
body.lbf-home-v3 .lbf-exp-sched__heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800;
  line-height: 1.1; color: #1e3a8a;
  margin: 0 0 0.5rem;
}
body.lbf-home-v3 .lbf-exp-sched__sub {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; line-height: 1.5;
  color: #2d4a9e; margin: 0 0 1rem;
}
body.lbf-home-v3 .lbf-exp-sched__btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff; text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(29,78,216,0.22);
  transition: filter 0.15s ease, transform 0.15s ease;
  align-self: flex-start;
}
body.lbf-home-v3 .lbf-exp-sched__btn:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  text-decoration: none; color: #fff;
}
body.lbf-home-v3 .lbf-exp-sched__btn svg { flex-shrink: 0; }

/* Day boxes */
body.lbf-home-v3 .lbf-exp-sched__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
body.lbf-home-v3 .lbf-exp-day {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem 0.5rem;
  min-height: 150px;
  text-decoration: none;
  border-right: 1px solid rgba(217,222,239,0.7);
  text-align: center;
  transition: background 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day--last { border-right: none; }
body.lbf-home-v3 .lbf-exp-day:hover { background: rgba(240,244,255,0.5); }

/* Hover ring */
body.lbf-home-v3 .lbf-exp-day__hover-ring {
  position: absolute; inset: 4px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(70,115,210,0.2),
              0 0 20px rgba(97,144,255,0.12);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__hover-ring { opacity: 1; }

/* Day icon */
body.lbf-home-v3 .lbf-exp-day__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 6px rgba(30,58,138,0.1);
  font-size: 0.9375rem; margin-bottom: 0.4rem;
  color: #1d4ed8;
  transition: transform 0.18s ease, background 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__icon {
  transform: scale(1.1); background: #fff;
}

body.lbf-home-v3 .lbf-exp-day__content {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  position: relative; z-index: 1;
}
body.lbf-home-v3 .lbf-exp-day__dow {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.625rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #1e3a8a;
  transition: color 0.15s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__dow { color: #2b56b4; }

body.lbf-home-v3 .lbf-exp-day__date {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.65rem; font-weight: 800; line-height: 1;
  color: #1843a3;
  margin: 0.2rem 0 0.375rem;
  transition: color 0.18s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__date { color: #3b6fe0; }

body.lbf-home-v3 .lbf-exp-day__label {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.65rem; line-height: 1.35;
  color: #1e3a8a;
  transition: color 0.15s ease;
  padding: 0 0.25rem;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__label { color: #173d96; }

/* Hover label — fades in on hover */
body.lbf-home-v3 .lbf-exp-day__hover-label {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: #2558c8;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.lbf-home-v3 .lbf-exp-day:hover .lbf-exp-day__hover-label {
  opacity: 1; transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .lbf-exp-sched__inner { grid-template-columns: 1fr; }
  body.lbf-home-v3 .lbf-exp-sched__left { border-right: none; border-bottom: 1px solid rgba(219,227,243,0.6); }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(3, 1fr); }
  body.lbf-home-v3 .lbf-exp-day { min-height: 120px; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(3) { border-right: none; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(4), body.lbf-home-v3 .lbf-exp-day:nth-child(5) {
    border-top: 1px solid rgba(217,222,239,0.7);
  }
}
@media (max-width: 480px) {
  body.lbf-home-v3 .lbf-exp-cards { grid-template-columns: 1fr 1fr; }
  body.lbf-home-v3 .lbf-exp-sched__days { grid-template-columns: repeat(2, 1fr); }
  body.lbf-home-v3 .lbf-exp-day { border-right: 1px solid rgba(217,222,239,0.7); }
  body.lbf-home-v3 .lbf-exp-day:nth-child(2n) { border-right: none; }
  body.lbf-home-v3 .lbf-exp-day:nth-child(n+3) { border-top: 1px solid rgba(217,222,239,0.7); }
}


/* ── Experience icon rendering ──
   Symbol paths use stroke="currentColor"/fill="currentColor".
   currentColor resolves from the nearest ancestor with CSS `color` set.
   Must be set on the WRAPPER divs, not just the svg. */

/* Card badge (colored gradient bg) — white icons */
body.lbf-home-v3 .lbf-exp-card__icon {
  color: #ffffff !important;
}
/* Day box (white/translucent bg) — blue icons */
body.lbf-home-v3 .lbf-exp-day__icon {
  color: #1d4ed8 !important;
}

/* SVG element: inherit color, set defaults for stroke-based Lucide icons */
body.lbf-home-v3 .lbf-exp-card__icon svg,
body.lbf-home-v3 .lbf-exp-day__icon svg {
  display: block;
  color: inherit;
  overflow: visible;
  /* Stroke-based icons: use currentColor (inherited from wrapper) */
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Fill-based icons (fireworks, parade) — tagged with data-fill="1" by PHP */
body.lbf-home-v3 .lbf-exp-card__icon svg[data-fill="1"],
body.lbf-home-v3 .lbf-exp-day__icon svg[data-fill="1"] {
  fill: currentColor !important;
  stroke: none !important;
}

/* Size */
body.lbf-home-v3 .lbf-exp-card__icon svg { width: 18px; height: 18px; }
body.lbf-home-v3 .lbf-exp-day__icon svg  { width: 16px; height: 16px; }


/* ── Card image edit overlay (admin only) ── */
body.lbf-home-v3 .lbf-exp-card__img-wrap {
  cursor: default;
}
body.lbf-home-v3 .lbf-exp-card__img-overlay-edit {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 110, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  z-index: 6;
  border-radius: 0; /* clip handled by parent overflow:hidden */
}
body.lbf-home-v3 .lbf-exp-card__img-wrap:hover .lbf-exp-card__img-overlay-edit {
  opacity: 1;
}
body.lbf-home-v3 .lbf-exp-card__img-overlay-edit svg {
  stroke: #fff;
  width: 22px; height: 22px;
}

/* ── END EXPERIENCE THE FESTIVAL ── */

/* ═══════════════════════════════════════════════════════════════
   FEATURED ENTERTAINERS — redesigned v24.14
   Matches updated JSX design: lighter overlay, logo+stats row,
   "Why Catch This Set" right card, lifted active selector card.
═══════════════════════════════════════════════════════════════ */

/* ── Outer wrapper ── */
body.lbf-home-v3 .lbf-feat-ent {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(125,211,252,0.18);
  box-shadow: 0 18px 50px rgba(17,94,168,0.12);
  background: #040d1a;
}

/* ── Hero panel ── */
body.lbf-home-v3 .lbf-feat-hero {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.18s ease;
}
@media (min-width: 768px) {
  body.lbf-home-v3 .lbf-feat-hero { min-height: 530px; }
}
body.lbf-home-v3 .lbf-feat-hero--switching { opacity: 0; }

/* Subtle left-side gradient so text stays legible */
/* lbf-feat-hero__overlay removed */
/* lbf-feat-hero__shimmer removed */
body.lbf-home-v3 .lbf-feat-hero__top-line {
  position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.60), transparent);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-hero__glow-orb {
  display: none; /* removed — was causing hero image blur in Chrome */
}

/* Pills — top left */
body.lbf-home-v3 .lbf-feat-hero__pills {
  position: absolute;
  top: 1.125rem; left: 1.125rem;
  z-index: 4;
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  max-width: 80%;
}
body.lbf-home-v3 .lbf-feat-pill {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.6375rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  line-height: 1;
}
body.lbf-home-v3 .lbf-feat-pill--accent {
  background: #fff;
  color: #0369a1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
body.lbf-home-v3 .lbf-feat-pill--glass {
  background: rgba(4,13,26,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.40);
}

/* Content grid — items-end so both columns sit at the bottom */
body.lbf-home-v3 .lbf-feat-hero__content {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: end;
  padding: 4rem 2rem 2rem;
  min-height: 440px;
}
@media (min-width: 768px) {
  body.lbf-home-v3 .lbf-feat-hero__content { padding: 4rem 2.5rem 2.5rem; min-height: 530px; }
}

/* Left column: logo image + stats row */
body.lbf-home-v3 .lbf-feat-hero__left {}
body.lbf-home-v3 .lbf-feat-hero__logo-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
body.lbf-home-v3 .lbf-feat-hero__logo-img {
  height: 7rem;
  max-width: 39rem;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.30));
  flex-shrink: 0;
}

/* Stats row — three frosted boxes */
body.lbf-home-v3 .lbf-feat-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
body.lbf-home-v3 .lbf-feat-stat {
  width: 6.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(4,13,26,0.65);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}
body.lbf-home-v3 .lbf-feat-stat__label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #5b9df9;
  margin-bottom: 0.25rem;
}
body.lbf-home-v3 .lbf-feat-stat__label svg {
  flex-shrink: 0;
  stroke: #5b9df9;
}
body.lbf-home-v3 .lbf-feat-stat__val {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  color: #fff;
}

/* Right column — "Why Catch This Set" card + buttons */
body.lbf-home-v3 .lbf-feat-hero__right {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-end;
}
body.lbf-home-v3 .lbf-feat-about {
  width: 100%;
  background: rgba(4,13,26,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  padding: 1rem 1.125rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  max-width: 20rem;
}
body.lbf-home-v3 .lbf-feat-about__label {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: #5b9df9; margin-bottom: 0.5rem;
}
body.lbf-home-v3 .lbf-feat-about__name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: #fff; margin-bottom: 0.375rem;
  line-height: 1.1;
}
body.lbf-home-v3 .lbf-feat-about__copy {
  font-size: 0.8125rem; line-height: 1.6;
  color: rgba(255,255,255,0.85); margin: 0;
}

/* CTA buttons */
body.lbf-home-v3 .lbf-feat-hero__btns {
  display: flex; gap: 0.625rem; width: 100%; max-width: 20rem;
}
body.lbf-home-v3 .lbf-feat-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
body.lbf-home-v3 .lbf-feat-btn--solid {
  background: #fff; color: #0f172a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
body.lbf-home-v3 .lbf-feat-btn--solid:hover {
  background: #f0f9ff; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  text-decoration: none; color: #0f172a;
}
body.lbf-home-v3 .lbf-feat-btn--ghost {
  background: rgba(4,13,26,0.55);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
body.lbf-home-v3 .lbf-feat-btn--ghost:hover {
  background: rgba(255,255,255,0.20); transform: translateY(-2px);
  text-decoration: none; color: #fff;
}

/* ── Selector cards row ── */
body.lbf-home-v3 .lbf-feat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: rgba(4,13,26,0.97);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 0.875rem;
}
body.lbf-home-v3 .lbf-feat-card {
  border-radius: 20px;
  overflow: visible; /* allow lift shadow */
  border: 1px solid rgba(255,255,255,0.10);
  background: none;
  padding: 0; cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  outline: none;
  position: relative;
}
/* Active card lifts */
body.lbf-home-v3 .lbf-feat-card--active {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(125,211,252,0.40),
    0 18px 42px rgba(14,116,144,0.22);
}
/* Hover glow on inactive cards */
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active):hover {
  border-color: rgba(125,211,252,0.55);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(125,211,252,0.50),
    0 0 0 6px rgba(56,189,248,0.12),
    0 0 34px rgba(56,189,248,0.20);
}
body.lbf-home-v3 .lbf-feat-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(125,211,252,0.55);
}
body.lbf-home-v3 .lbf-feat-card__img {
  position: relative;
  aspect-ratio: 4 / 2.9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 19px;
}
body.lbf-home-v3 .lbf-feat-card__img-overlay {
  position: absolute; inset: 0;
  transition: background 0.3s ease;
}
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img-overlay {
  background: rgba(14,30,50,0.18);
}
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__img-overlay {
  background: rgba(4,13,26,0.42);
}
body.lbf-home-v3 .lbf-feat-card__top-line {
  position: absolute; inset-inline: 0; top: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.45), transparent);
  pointer-events: none;
}
/* Active card inner ring */
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.20);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-card__img-grad {
  position: absolute; inset-inline: 0; bottom: 0;
  transition: height 0.3s ease;
  background: linear-gradient(to top, rgba(4,13,26,0.70) 0%, transparent 100%);
  pointer-events: none;
}
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__img-grad { height: 6rem; }
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__img-grad { height: 5rem; }

/* Logo at bottom-centre */
body.lbf-home-v3 .lbf-feat-card__logo-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0.5rem 0.875rem;
}
/* Active logo larger than inactive */
body.lbf-home-v3 .lbf-feat-card--active .lbf-feat-card__logo {
  max-height: 2.8rem;
  max-width: 52%;
}
body.lbf-home-v3 .lbf-feat-card:not(.lbf-feat-card--active) .lbf-feat-card__logo {
  max-height: 2.2rem;
  max-width: 47%;
}
body.lbf-home-v3 .lbf-feat-card__logo {
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition: max-height 0.3s ease, max-width 0.3s ease;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.lbf-home-v3 .lbf-feat-hero__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 4rem 1.5rem 1.5rem;
  }
  body.lbf-home-v3 .lbf-feat-hero__right { align-items: stretch; }
  body.lbf-home-v3 .lbf-feat-about,
  body.lbf-home-v3 .lbf-feat-hero__btns { max-width: 100%; }
  body.lbf-home-v3 .lbf-feat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  body.lbf-home-v3 .lbf-feat-hero { min-height: 480px; }
  body.lbf-home-v3 .lbf-feat-hero__content { padding: 3.5rem 1rem 1rem; min-height: 480px; }
  body.lbf-home-v3 .lbf-feat-hero__logo-stats { gap: 1rem; }
  body.lbf-home-v3 .lbf-feat-hero__logo-img  { height: 2.5rem; }
  body.lbf-home-v3 .lbf-feat-stat            { width: 5.5rem; }
  body.lbf-home-v3 .lbf-feat-cards { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; padding: 0.625rem; }
}

/* ── END FEATURED ENTERTAINERS ── */

/* ── Featured Entertainer hero — tagline line ── */
body.lbf-home-v3 .lbf-feat-hero__tagline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
