/* ============================================================
   Legacy Business Funding — 2026 Overhaul
   Brand palette: burgundy / black / cream (from logo)
   ============================================================ */

:root {
  /* Core brand — pulled from logo */
  --brand-burgundy:       #7a1225;   /* primary wine red from "LEGACY" */
  --brand-burgundy-dark:  #5c0d1c;   /* deeper burgundy for pressed/hover */
  --brand-burgundy-deep:  #430917;   /* shadow wine for gradients */
  --brand-burgundy-soft:  #a63346;   /* lighter burgundy for accents */

  --brand-black:          #111111;   /* near-black from logo pillar */
  --brand-ink:            #1a1a1a;
  --brand-charcoal:       #2a2a2a;

  /* Warm neutrals that flatter burgundy */
  --brand-cream:          #faf5ec;   /* warm ivory backdrop */
  --brand-cream-2:        #f3ead8;   /* deeper cream for alt sections */
  --brand-sand:           #ebe2cf;

  --brand-gold:           #c9a34a;   /* antique-gold accent */
  --brand-gold-dark:      #a8852f;

  /* Ink / text colors */
  --ink-900: #1a1010;
  --ink-700: #3d2d2d;
  --ink-500: #6b5a5a;
  --ink-400: #a09292;
  --ink-200: #e4dcd0;
  --ink-100: #f1ead9;
  --ink-50:  #faf5ec;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 8px;

  --shadow-sm: 0 2px 8px rgba(67, 9, 23, 0.06);
  --shadow: 0 12px 30px rgba(67, 9, 23, 0.10);
  --shadow-lg: 0 28px 60px rgba(67, 9, 23, 0.18);
  --shadow-wine: 0 18px 40px rgba(122, 18, 37, 0.35);
  --shadow-gold: 0 14px 30px rgba(201, 163, 74, 0.35);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.lbf {
  margin: 0;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--white);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-burgundy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-burgundy-dark); }

/* Typography — Cormorant Garamond for headings: refined, authoritative serif */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

/* Layout helpers */
.lbf-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.lbf-section {
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
}
.lbf-section--tight { padding: clamp(32px, 5vw, 56px) 0; }
.lbf-section--light { background: var(--brand-cream); }
.lbf-section--cream { background: var(--brand-cream-2); }
.lbf-section--dark  { background: var(--brand-black); color: #e7d8dc; }
.lbf-section--dark h1, .lbf-section--dark h2, .lbf-section--dark h3 { color: #fff; }
.lbf-section--wine  { background: var(--brand-burgundy); color: #f8e9ec; }
.lbf-section--wine h1, .lbf-section--wine h2, .lbf-section--wine h3 { color: #fff; }

.lbf-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-burgundy);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.lbf-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--brand-burgundy);
  transform: translateY(-50%);
}
.lbf-section--dark .lbf-eyebrow,
.lbf-section--wine .lbf-eyebrow { color: var(--brand-gold); }
.lbf-section--dark .lbf-eyebrow::before,
.lbf-section--wine .lbf-eyebrow::before { background: var(--brand-gold); }

.lbf-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-500);
  max-width: 720px;
  font-family: 'DM Sans', sans-serif;
}
.lbf-section--dark .lbf-lead,
.lbf-section--wine .lbf-lead { color: #ead7da; }

.text-center { text-align: center; }

/* Grid */
.lbf-grid { display: grid; gap: 28px; }
.lbf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lbf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lbf-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .lbf-grid--2, .lbf-grid--3, .lbf-grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 960px) {
  .lbf-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== BUTTONS ==================== */
.lbf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lbf-btn:hover { opacity: .9; }

/* Primary — burgundy (main CTA) */
.lbf-btn--primary,
.lbf-btn--blue {     /* legacy alias — now mapped to burgundy */
  background: var(--brand-burgundy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.lbf-btn--primary:hover,
.lbf-btn--blue:hover {
  color: #fff;
  background: var(--brand-burgundy-dark);
  box-shadow: var(--shadow);
}

/* Gold — secondary standout for hero variants */
.lbf-btn--gold {
  background: var(--brand-gold);
  color: #2a1c00;
  box-shadow: var(--shadow-sm);
}
.lbf-btn--gold:hover { color: #2a1c00; background: var(--brand-gold-dark); }

/* Black — strong dark variant */
.lbf-btn--black {
  background: var(--brand-black);
  color: #fff;
}
.lbf-btn--black:hover { background: #000; color: #fff; }

/* Ghost — outlined */
.lbf-btn--ghost {
  background: transparent;
  color: var(--brand-burgundy);
  border-color: var(--brand-burgundy);
}
.lbf-btn--ghost:hover { background: var(--brand-burgundy); color: #fff; }

/* White ghost for dark backgrounds */
.lbf-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.lbf-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

.lbf-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.lbf-btn--block { width: 100%; }

.lbf-btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==================== HEADER ==================== */
.lbf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.lbf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.lbf-brand { display: flex; align-items: center; }
.lbf-brand img { height: 50px; width: auto; }

.lbf-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.lbf-nav-links > li { position: relative; }
.lbf-nav-links a.lbf-nav-link {
  display: inline-block;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--brand-black);
  font-size: .98rem;
  border-radius: 8px;
}
.lbf-nav-links a.lbf-nav-link:hover,
.lbf-nav-links a.lbf-nav-link.active {
  color: var(--brand-burgundy);
  background: rgba(122, 18, 37, 0.06);
}

.lbf-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand-burgundy) !important;
}
.lbf-nav-phone::before {
  content: '\260E';
  font-size: 1rem;
}

.lbf-dropdown { position: relative; }
.lbf-dropdown-toggle { cursor: pointer; }
.lbf-dropdown-toggle::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s var(--ease);
}
.lbf-dropdown:hover .lbf-dropdown-toggle::after,
.lbf-dropdown.open .lbf-dropdown-toggle::after {
  transform: translateY(1px) rotate(225deg);
}
.lbf-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: all .2s var(--ease);
  border: 1px solid var(--ink-200);
}
.lbf-dropdown:hover .lbf-dropdown-menu,
.lbf-dropdown.open .lbf-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.lbf-dropdown-menu li { margin: 0; }
.lbf-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--brand-black);
  border-radius: 8px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
.lbf-dropdown-menu a:hover { background: rgba(122, 18, 37, 0.06); color: var(--brand-burgundy); }

.lbf-nav-cta { margin-left: 6px; }

/* Mobile menu */
.lbf-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.lbf-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brand-black);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.lbf-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lbf-menu-toggle.open span:nth-child(2) { opacity: 0; }
.lbf-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .lbf-menu-toggle { display: flex; }
  .lbf-nav-links {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 20px;
    border-top: 1px solid var(--ink-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .lbf-nav-links.open { transform: translateY(0); }
  .lbf-nav-links a.lbf-nav-link { padding: 14px 12px; font-size: 1.05rem; }
  .lbf-dropdown-menu {
    position: static;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    margin-top: 6px;
    background: var(--brand-cream);
    border: 0;
    display: none;
  }
  .lbf-dropdown.open .lbf-dropdown-menu { display: block; }
  .lbf-nav-cta { margin: 10px 0 0; }
  .lbf-btn.lbf-nav-cta { display: block; }
}

/* ==================== HERO ====================
   Background image visible through a lighter overlay
   Warm burgundy tint keeps text legible while
   letting the photography come through
=================================================== */
.lbf-hero {
  position: relative;
  padding: clamp(56px, 8vw, 112px) 0;
  background-color: var(--brand-black);
  background-image:
    linear-gradient(135deg, rgba(26, 10, 14, 0.72) 0%, rgba(17, 17, 17, 0.65) 50%, rgba(67, 9, 23, 0.7) 100%),
    var(--hero-bg, linear-gradient(180deg, #1a0409 0%, var(--brand-black) 100%));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #f3e1e4;
  overflow: hidden;
}
/* Subtle warm glow accents */
.lbf-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 5% 100%, rgba(122, 18, 37, 0.3), transparent 60%),
    radial-gradient(500px 300px at 95% 0%, rgba(201, 163, 74, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.lbf-hero::before {
  display: none;
}
/* Gold accent line under hero headings */
.lbf-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--brand-gold);
  margin-top: 20px;
}
.lbf-hero > .lbf-container { position: relative; z-index: 2; }
.lbf-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 980px) { .lbf-hero-inner { grid-template-columns: 1fr; } }

.lbf-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.lbf-hero h1 .accent { color: var(--brand-gold); font-style: italic; }
.lbf-hero p.sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #e3cfd3;
  max-width: 560px;
  margin-bottom: 26px;
}
.lbf-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #e3cfd3;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
}
.lbf-hero-badges span {
  display: inline-flex; align-items: center; gap: 8px;
}
.lbf-hero-badges span::before {
  content: '\2713';
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201, 163, 74, 0.2);
  color: var(--brand-gold);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
}

/* ==================== FORM IFRAME WRAPPER ==================== */
.lbf-form-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-top: 3px solid var(--brand-gold);
}
.lbf-form-card .lbf-form-head {
  text-align: center;
  padding: 8px 8px 18px;
  border-bottom: 1px solid var(--ink-100);
  margin-bottom: 12px;
}
.lbf-form-card .lbf-form-head h3 {
  color: var(--brand-burgundy);
  font-size: 1.35rem;
  margin: 0 0 6px;
  font-weight: 500;
}
.lbf-form-card .lbf-form-head p {
  color: var(--ink-500);
  font-size: .9rem;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}
.lbf-form-card iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 10px;
}
.br-10 { border-radius: 10px; }

.lbf-hero .lbf-form-card {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ==================== TRUST BAR ==================== */
.lbf-trustbar {
  background: var(--brand-cream);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding: 36px 0;
}
.lbf-trustbar-grid .stat {
  position: relative;
}
.lbf-trustbar-grid .stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--ink-200);
}
@media (max-width: 720px) {
  .lbf-trustbar-grid .stat + .stat::before { display: none; }
}
.lbf-trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.lbf-trustbar-grid .stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--brand-burgundy);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.lbf-trustbar-grid .stat span {
  display: block;
  color: var(--ink-500);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
@media (max-width: 720px) { .lbf-trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; } }

/* ==================== FEATURE CARDS ==================== */
.lbf-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-top: 3px solid var(--brand-burgundy);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lbf-card:hover {
  box-shadow: var(--shadow);
  border-top-color: var(--brand-gold);
}
.lbf-card .lbf-icon {
  display: none;
}
.lbf-card h3 { color: var(--brand-black); margin-bottom: 10px; }
.lbf-card p { color: var(--ink-700); flex: 1; font-family: 'DM Sans', sans-serif; }
.lbf-card .lbf-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--brand-burgundy);
  margin-top: 16px;
}
.lbf-card .lbf-card-link::after {
  content: '\2192';
  transition: transform .2s var(--ease);
}
.lbf-card:hover .lbf-card-link::after { transform: translateX(4px); }

/* ==================== SPLIT CONTENT ==================== */
.lbf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lbf-split--media-right { grid-template-columns: 1.05fr .95fr; }
.lbf-split--media-left  { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 900px) {
  .lbf-split, .lbf-split--media-left, .lbf-split--media-right { grid-template-columns: 1fr; gap: 32px; }
  .lbf-split .order-mobile-first { order: -1; }
}
.lbf-media {
  position: relative;
}
.lbf-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  border: 0;
}
/* Decorative gold accent corner on images */
.lbf-media::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  border-right: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none;
  opacity: .5;
}

/* ==================== STEPS ==================== */
.lbf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
@media (max-width: 860px) { .lbf-steps { grid-template-columns: 1fr; } }
.lbf-step {
  position: relative;
  padding: 36px 26px 26px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  counter-increment: step;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lbf-step:hover { box-shadow: var(--shadow-sm); }
.lbf-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -22px; left: 26px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-burgundy), var(--brand-burgundy-deep));
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.lbf-step h3 { color: var(--brand-black); margin-bottom: 8px; }
.lbf-step p { font-family: 'DM Sans', sans-serif; }

.lbf-steps-inline { display: flex; flex-direction: column; gap: 22px; }
.lbf-steps-inline .lbf-step { padding: 24px 24px 24px 86px; }
.lbf-steps-inline .lbf-step::before {
  top: 22px; left: 22px;
}

/* ==================== CHECK LIST ==================== */
.lbf-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
@media (max-width: 600px) { .lbf-checklist { grid-template-columns: 1fr; } }
.lbf-checklist li {
  padding-left: 32px;
  position: relative;
  color: var(--ink-700);
  margin-bottom: 6px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
.lbf-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(122, 18, 37, 0.1) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%237a1225'><path d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L9 11.6l6.3-6.3a1 1 0 011.4 0z'/></svg>") center no-repeat;
  background-size: 14px;
}

/* ==================== PRODUCT STATS STRIP ==================== */
.lbf-statstrip {
  background: var(--brand-burgundy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--brand-gold);
}
.lbf-statstrip .stat { text-align: center; border-right: 1px solid rgba(255,255,255,0.15); padding: 6px 10px; }
.lbf-statstrip .stat:last-child { border-right: 0; }
.lbf-statstrip .stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--brand-gold);
  font-weight: 600;
}
.lbf-statstrip .stat span {
  display: block;
  color: #e3cfd3;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
@media (max-width: 720px) {
  .lbf-statstrip { grid-template-columns: repeat(2, 1fr); }
  .lbf-statstrip .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 14px; }
  .lbf-statstrip .stat:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}

/* ==================== CTA BANNER ==================== */
.lbf-cta-banner {
  position: relative;
  background: var(--brand-burgundy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 72px);
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(201, 163, 74, 0.15);
}
/* Subtle gold corner accents */
.lbf-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  border-top: 2px solid var(--brand-gold);
  border-left: 2px solid var(--brand-gold);
  border-radius: var(--radius) 0 0 0;
  opacity: .4;
  pointer-events: none;
}
.lbf-cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--brand-gold);
  border-right: 2px solid var(--brand-gold);
  border-radius: 0 0 var(--radius) 0;
  opacity: .4;
  pointer-events: none;
}
.lbf-cta-banner > * { position: relative; z-index: 1; }
.lbf-cta-banner h2 { color: #fff; font-weight: 500; }
.lbf-cta-banner p { color: #e3cfd3; max-width: 720px; margin: 0 auto 30px; font-size: 1.05rem; font-family: 'DM Sans', sans-serif; }
.lbf-cta-banner .lbf-btn-row { justify-content: center; }
.lbf-cta-banner .lbf-eyebrow { color: var(--brand-gold); }
.lbf-cta-banner .lbf-eyebrow::before { background: var(--brand-gold); }

/* ==================== TESTIMONIALS ==================== */
.lbf-testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--ink-200);
  border-left: 3px solid var(--brand-gold);
  box-shadow: none;
  position: relative;
}
.lbf-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 22px;
  font-size: 3.5rem;
  color: var(--brand-gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1;
  opacity: .35;
}
.lbf-testimonial p { font-style: italic; color: var(--ink-700); padding-top: 14px; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; line-height: 1.6; }
.lbf-testimonial footer {
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
}
.lbf-testimonial footer .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-burgundy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .95rem;
  letter-spacing: .05em;
}
.lbf-testimonial footer strong { display: block; color: var(--ink-900); font-size: .98rem; font-family: 'DM Sans', sans-serif; }
.lbf-testimonial footer span { display: block; color: var(--ink-500); font-size: .85rem; font-family: 'DM Sans', sans-serif; }
.lbf-stars { color: var(--brand-gold); letter-spacing: 2px; margin-bottom: 6px; }

/* ==================== FAQ ==================== */
.lbf-faq { display: flex; flex-direction: column; gap: 12px; }
.lbf-faq-item {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lbf-faq-item:hover, .lbf-faq-item.open {
  border-color: rgba(122, 18, 37, 0.25);
  box-shadow: var(--shadow-sm);
}
.lbf-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-black);
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.lbf-faq-q::after {
  content: '+';
  font-size: 1.7rem; line-height: 1;
  color: var(--brand-burgundy);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.lbf-faq-item.open .lbf-faq-q::after { transform: rotate(45deg); }
.lbf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  color: var(--ink-700);
}
.lbf-faq-item.open .lbf-faq-a { max-height: 600px; }
.lbf-faq-a-inner { padding: 0 24px 22px; font-family: 'DM Sans', sans-serif; }

/* ==================== INDUSTRIES ==================== */
.lbf-industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .lbf-industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .lbf-industries { grid-template-columns: repeat(2, 1fr); } }
.lbf-industry {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  background: var(--brand-cream);
  cursor: pointer;
}
.lbf-industry img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.lbf-industry:hover img { transform: scale(1.07); }
.lbf-industry::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(67, 9, 23, 0.9) 0%, rgba(67, 9, 23, 0.1) 60%);
}
.lbf-industry span {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}

/* ==================== PAGE TITLE ==================== */
.lbf-page-title {
  background-color: var(--brand-black);
  background-image:
    linear-gradient(135deg, rgba(26, 10, 14, 0.65) 0%, rgba(17, 17, 17, 0.55) 50%, rgba(67, 9, 23, 0.6) 100%),
    var(--hero-bg, linear-gradient(135deg, var(--brand-burgundy-deep), var(--brand-black)));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lbf-page-title::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(17, 17, 17, 0.5) 0%, transparent 40%),
    radial-gradient(600px 300px at 50% 100%, rgba(122, 18, 37, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Gold accent line under page title h1 */
.lbf-page-title h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--brand-gold);
  margin: 20px auto 0;
}
.lbf-page-title::before {
  display: none;
}
.lbf-page-title > * { position: relative; z-index: 1; }
.lbf-page-title h1 { color: #fff; margin-bottom: 10px; font-weight: 500; letter-spacing: 0.01em; }
.lbf-page-title p { color: #e3cfd3; max-width: 720px; margin: 0 auto; font-size: 1.1rem; font-family: 'DM Sans', sans-serif; }
.lbf-page-title .lbf-eyebrow { color: var(--brand-gold); }
.lbf-page-title .lbf-eyebrow::before { background: var(--brand-gold); }

/* ==================== FOOTER ==================== */
.lbf-footer {
  background: var(--brand-black);
  color: #c9b9bb;
  padding: 72px 0 0;
  margin-top: 0;
  position: relative;
}
.lbf-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-gold);
  opacity: .4;
}
.lbf-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 860px) { .lbf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .lbf-footer-grid { grid-template-columns: 1fr; } }
.lbf-footer-brand img {
  height: 60px; width: auto; margin-bottom: 16px;
  /* Keep logo visible on dark — apply white-tint */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.lbf-footer h4 { color: var(--brand-gold); font-size: .95rem; margin-bottom: 18px; letter-spacing: .14em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.lbf-footer ul { list-style: none; padding: 0; margin: 0; }
.lbf-footer li { margin-bottom: 10px; }
.lbf-footer a { color: #c9b9bb; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.lbf-footer a:hover { color: #fff; }
.lbf-footer p { color: #c9b9bb; font-size: .95rem; font-family: 'DM Sans', sans-serif; }
.lbf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .88rem;
  color: #8d7a7c;
  font-family: 'DM Sans', sans-serif;
}

/* ==================== LEGAL / CONTENT PAGES ==================== */
.lbf-prose {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink-700);
  font-family: 'DM Sans', sans-serif;
}
.lbf-prose h2, .lbf-prose h3 { color: var(--brand-black); margin-top: 1.6em; font-family: 'Cormorant Garamond', Georgia, serif; }
.lbf-prose h5.title { color: var(--brand-burgundy); font-size: 1.15rem; margin: 1.6em 0 .5em; font-weight: 700; font-family: 'Cormorant Garamond', Georgia, serif; }
.lbf-prose ol, .lbf-prose ul { padding-left: 1.25em; }
.lbf-prose a { text-decoration: underline; }

/* ==================== UTILITY ==================== */
.lbf-show-lg { display: block; }
.lbf-hide-lg { display: none; }
@media (max-width: 980px) {
  .lbf-show-lg { display: none; }
  .lbf-hide-lg { display: block; }
}

/* Floating Mobile Apply button — subtle presentation */
.lbf-mobile-cta {
  display: none;
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  background: var(--brand-burgundy);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 900;
  box-shadow: var(--shadow);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em;
  font-size: .95rem;
}
.lbf-mobile-cta:hover { color: #fff; }
@media (max-width: 720px) { .lbf-mobile-cta { display: block; } body.lbf { padding-bottom: 70px; } }

/* Fade-in reveal */
[data-reveal] {
  opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* Decorative divider used under headings */
.lbf-ornament {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 auto 18px;
  color: var(--brand-gold);
}
.lbf-ornament::before, .lbf-ornament::after {
  content: ''; width: 40px; height: 1px; background: currentColor; display: block;
}

/* ============================================================
   LANDING PAGE COMPONENTS
   ============================================================ */

/* Announcement / urgency bar that sits under the header */
.lbf-announce {
  background: linear-gradient(90deg, var(--brand-burgundy-deep), var(--brand-burgundy), var(--brand-burgundy-deep));
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: .92rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
/* Announcement bar — hidden for cleaner presentation */
.lbf-announce { display: none !important; }

/* Landing hero — form-first layout */
.lbf-landing-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  background-color: var(--brand-black);
  background-image:
    linear-gradient(135deg, rgba(26, 10, 14, 0.72) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(67, 9, 23, 0.68) 100%),
    var(--hero-bg, linear-gradient(180deg, #1a0409 0%, var(--brand-black) 100%));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f3e1e4;
  overflow: hidden;
}
.lbf-landing-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(17, 17, 17, 0.4) 0%, transparent 40%),
    radial-gradient(500px 300px at 90% 0%, rgba(201, 163, 74, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
/* Gold accent line under landing hero h1 */
.lbf-landing-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--brand-gold);
  margin-top: 20px;
}
.lbf-landing-hero::before {
  display: none;
}
.lbf-landing-hero > .lbf-container { position: relative; z-index: 2; }
.lbf-landing-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .lbf-landing-hero-inner { grid-template-columns: 1fr; gap: 32px; } }

.lbf-landing-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.lbf-landing-hero h1 .accent { color: var(--brand-gold); font-style: italic; }
.lbf-landing-hero p.sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  color: #e6d3d6;
  max-width: 560px;
  margin-bottom: 24px;
}

/* Key selling points as "pill" list under headline */
.lbf-landing-points {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  max-width: 560px;
}
@media (max-width: 600px) { .lbf-landing-points { grid-template-columns: 1fr; } }
.lbf-landing-points li {
  color: #f4e3e6;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding-left: 30px;
  position: relative;
}
.lbf-landing-points li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201, 163, 74, 0.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a34a'><path d='M16.7 5.3a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-4-4a1 1 0 111.4-1.4L9 11.6l6.3-6.3a1 1 0 011.4 0z'/></svg>") center no-repeat;
  background-size: 14px;
}

/* Small inline rating row under headline */
.lbf-rating-row {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #e6d3d6;
}
.lbf-rating-row .stars { color: var(--brand-gold); letter-spacing: 2px; }
.lbf-rating-row strong { color: #fff; }

/* Sticky form panel */
.lbf-sticky-form { position: relative; }
@media (min-width: 981px) {
  .lbf-sticky-form { position: sticky; top: 90px; }
}

/* Urgency badge floated on form card */
.lbf-form-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gold);
  color: #2a1c00;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  white-space: nowrap;
}

/* Trust logos / press mentions strip */
.lbf-logos-strip {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid var(--ink-200);
}
.lbf-logos-strip .label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.lbf-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  opacity: .85;
}
.lbf-logos-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-500);
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.lbf-logos-item:hover { color: var(--brand-burgundy); }

/* "Us vs. banks" comparison */
.lbf-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 780px) { .lbf-compare { grid-template-columns: 1fr; } }
.lbf-compare-col {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  position: relative;
}
.lbf-compare-col.bank {
  background: linear-gradient(180deg, #fbf4f4 0%, #fff 100%);
}
.lbf-compare-col.legacy {
  background: linear-gradient(180deg, var(--brand-burgundy-deep), var(--brand-black));
  color: #fff;
  border: 1px solid transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-wine);
}
@media (max-width: 780px) { .lbf-compare-col.legacy { transform: none; } }
.lbf-compare-col h3 { margin-bottom: 18px; }
.lbf-compare-col.legacy h3 { color: #fff; }
.lbf-compare-col.legacy .tag {
  display: inline-block;
  background: var(--brand-gold);
  color: #2a1c00;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.lbf-compare-list { list-style: none; padding: 0; margin: 0; font-family: 'DM Sans', sans-serif; }
.lbf-compare-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 500;
}
.lbf-compare-col.legacy .lbf-compare-list li { border-bottom-color: rgba(255,255,255,0.1); color: #f0dde0; }
.lbf-compare-list li:last-child { border-bottom: 0; }
.lbf-compare-list.neg li::before {
  content: '\2715';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(180, 0, 0, 0.08);
  color: #b33;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
}
.lbf-compare-list.pos li::before {
  content: '\2713';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: rgba(201, 163, 74, 0.25);
  color: var(--brand-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}

/* Visual timeline of the process */
.lbf-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: tl;
}
@media (max-width: 860px) { .lbf-timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lbf-timeline { grid-template-columns: 1fr; } }
.lbf-timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-burgundy), var(--brand-gold), var(--brand-burgundy));
  z-index: 0;
}
@media (max-width: 860px) { .lbf-timeline::before { display: none; } }
.lbf-tl-item {
  position: relative;
  text-align: center;
  padding-top: 80px;
  counter-increment: tl;
  z-index: 1;
}
.lbf-tl-item::before {
  content: counter(tl);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-burgundy);
  color: var(--brand-burgundy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.lbf-tl-item h4 { color: var(--brand-black); margin-bottom: 8px; }
.lbf-tl-item p { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--ink-500); }

/* Guarantee / trust badges */
.lbf-guarantee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 860px) { .lbf-guarantee { grid-template-columns: repeat(2, 1fr); } }
.lbf-guarantee-item {
  padding: 24px 16px;
}
.lbf-guarantee-item .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(122, 18, 37, 0.08);
  color: var(--brand-burgundy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.lbf-guarantee-item strong {
  display: block;
  color: var(--brand-black);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.lbf-guarantee-item span {
  color: var(--ink-500);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
}

/* Side CTA — disabled for cleaner presentation */
.lbf-side-cta {
  display: none !important;
}

/* Feature bullets next to form */
.lbf-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 600px) { .lbf-feature-grid { grid-template-columns: 1fr; } }
.lbf-feature-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #f0dde0;
  font-family: 'DM Sans', sans-serif;
}
.lbf-feature-tile strong {
  display: block;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.lbf-feature-tile span { font-size: .9rem; color: #e6d3d6; }
