/* ==========================================================================
   Brookfield — shared design system
   Deep navy/charcoal + amber-gold accents, editorial serif headings.
   ========================================================================== */

:root {
  --bf-navy: #0a1a2f;
  --bf-navy-2: #0f2540;
  --bf-navy-3: #13304f;
  --bf-charcoal: #14181f;
  --bf-ink: #0b0d12;
  --bf-gold: #c9a24b;
  --bf-gold-light: #e4c877;
  --bf-cream: #f6f4ee;
  --bf-paper: #fbfaf7;
  --bf-line: rgba(255, 255, 255, 0.12);
  --bf-line-dark: rgba(10, 26, 47, 0.1);
  --bf-text: #1c2430;
  --bf-text-muted: #5b6472;
  --bf-radius: 4px;
  --bf-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --bf-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bf-container: 1280px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.bf-body {
  font-family: var(--bf-sans);
  color: var(--bf-text);
  background: var(--bf-paper);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.bf-container {
  max-width: var(--bf-container);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--bf-serif); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 0.5em; color: var(--bf-navy); }
p { margin: 0 0 1em; }

.bf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bf-gold);
  margin-bottom: 14px;
}
.bf-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--bf-gold);
}

.bf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--bf-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.bf-btn-gold {
  background: var(--bf-gold);
  color: var(--bf-navy);
}
.bf-btn-gold:hover { background: var(--bf-gold-light); transform: translateY(-1px); }
.bf-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.bf-btn-outline:hover { border-color: var(--bf-gold); color: var(--bf-gold); }
.bf-btn-outline-dark {
  background: transparent;
  border-color: rgba(10,26,47,0.25);
  color: var(--bf-navy);
}
.bf-btn-outline-dark:hover { border-color: var(--bf-navy); background: var(--bf-navy); color: #fff; }
.bf-btn-arrow { transition: transform 0.2s ease; }
.bf-btn:hover .bf-btn-arrow { transform: translateX(3px); }

/* ---------------- Header ---------------- */
.bf-topbar {
  background: var(--bf-ink);
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
}
.bf-topbar .bf-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.bf-topbar a { color: rgba(255,255,255,0.65); }
.bf-topbar a:hover { color: var(--bf-gold-light); }
.bf-topbar-links { display: flex; gap: 22px; }
.bf-topbar-links span { color: rgba(255,255,255,0.35); margin: 0 2px; }
.bf-topbar-social { display: flex; gap: 14px; }
.bf-topbar-social a { font-size: 12px; }

.bf-header {
  background: var(--bf-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--bf-line);
}
.bf-header .bf-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.bf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bf-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.bf-logo span { color: var(--bf-gold); }

.bf-nav { display: flex; align-items: center; height: 100%; }
.bf-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.bf-nav > ul > li { position: relative; display: flex; align-items: center; height: 100%; }
.bf-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.88);
  font-size: 14.5px;
  font-weight: 500;
  padding: 0 18px;
  height: 100%;
  transition: color 0.2s ease;
}
.bf-nav > ul > li > a svg { width: 10px; height: 10px; opacity: 0.6; transition: transform .2s ease; }
.bf-nav > ul > li:hover > a { color: var(--bf-gold-light); }
.bf-nav > ul > li:hover > a svg { transform: rotate(180deg); }
.bf-nav > ul > li.active > a { color: var(--bf-gold); }

.bf-header-actions { display: flex; align-items: center; gap: 14px; }
.bf-icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  transition: all .2s ease;
}
.bf-icon-btn:hover { border-color: var(--bf-gold); color: var(--bf-gold); }

/* Mega menu */
.bf-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 780px;
  background: #fff;
  border-radius: var(--bf-radius);
  box-shadow: 0 24px 60px rgba(4,12,24,0.28);
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bf-nav > ul > li:hover .bf-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.bf-mega.bf-mega-sm { width: 460px; grid-template-columns: repeat(2, 1fr); }
.bf-mega-col h5 {
  font-family: var(--bf-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bf-gold);
  margin-bottom: 14px;
}
.bf-mega-col ul { list-style: none; margin: 0; padding: 0; }
.bf-mega-col li { margin-bottom: 4px; }
.bf-mega-col a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--bf-text);
  border-bottom: 1px solid transparent;
}
.bf-mega-col a:hover { color: var(--bf-navy); font-weight: 600; padding-left: 4px; }
.bf-mega-col .bf-mega-desc { font-size: 12.5px; color: var(--bf-text-muted); margin-top: 10px; line-height: 1.5; }
.bf-mega-feature {
  background: var(--bf-cream);
  border-radius: var(--bf-radius);
  padding: 20px;
}
.bf-mega-feature h6 { font-family: var(--bf-serif); font-size: 16px; color: var(--bf-navy); margin: 0 0 8px; }
.bf-mega-feature p { font-size: 13px; color: var(--bf-text-muted); margin-bottom: 12px; }
.bf-mega-feature a { font-size: 12.5px; font-weight: 700; color: var(--bf-navy); text-transform: uppercase; letter-spacing: 0.04em; }

/* Mobile nav toggle */
.bf-burger {
  display: none;
  width: 40px; height: 40px;
  border: none; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.bf-burger span { display: block; width: 22px; height: 2px; background: #fff; }

/* ---------------- Footer ---------------- */
.bf-footer { background: var(--bf-navy); color: rgba(255,255,255,0.72); }
.bf-footer-top { padding: 72px 0 48px; border-bottom: 1px solid var(--bf-line); }
.bf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}
.bf-footer-brand .bf-logo { color: #fff; margin-bottom: 16px; }
.bf-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 320px; }
.bf-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.bf-footer-col h5 {
  font-family: var(--bf-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.bf-footer-col ul { list-style: none; margin: 0; padding: 0; }
.bf-footer-col li { margin-bottom: 11px; }
.bf-footer-col a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color .2s ease; }
.bf-footer-col a:hover { color: var(--bf-gold-light); }
.bf-footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.bf-footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.45); }
.bf-footer-legal { display: flex; gap: 22px; }
.bf-footer-legal a { font-size: 13px; color: rgba(255,255,255,0.45); }
.bf-footer-legal a:hover { color: var(--bf-gold-light); }

/* ---------------- Hero ---------------- */
.bf-hero {
  position: relative;
  background: linear-gradient(180deg, var(--bf-navy) 0%, var(--bf-navy-2) 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 96px;
}
.bf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(201,162,75,0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,162,75,0.08), transparent 40%);
  pointer-events: none;
}
.bf-hero-inner { position: relative; max-width: 760px; }
.bf-hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.bf-hero h1 em { font-style: normal; color: var(--bf-gold); }
.bf-hero p.lead { font-size: 19px; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 36px; }
.bf-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.bf-hero-stats {
  position: relative;
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bf-line);
  padding-top: 40px;
}
.bf-hero-stats .stat { padding-right: 24px; }
.bf-hero-stats .stat h3 { font-family: var(--bf-serif); font-size: 40px; color: var(--bf-gold); margin: 0 0 6px; }
.bf-hero-stats .stat p { font-size: 13.5px; color: rgba(255,255,255,0.55); margin: 0; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------------- Sections ---------------- */
.bf-section { padding: 100px 0; }
.bf-section-tight { padding: 72px 0; }
.bf-section-dark { background: var(--bf-navy); color: rgba(255,255,255,0.8); }
.bf-section-dark h2 { color: #fff; }
.bf-section-cream { background: var(--bf-cream); }

.bf-section-head { max-width: 640px; margin-bottom: 56px; }
.bf-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bf-section-head h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; }
.bf-section-head p { font-size: 16.5px; color: var(--bf-text-muted); }
.bf-section-dark .bf-section-head p { color: rgba(255,255,255,0.6); }

.bf-flex-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.bf-flex-head .bf-section-head { margin-bottom: 0; }

/* Pillar cards (Own What's Next section) */
.bf-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bf-line-dark);
  border: 1px solid var(--bf-line-dark);
}
.bf-pillar {
  background: #fff;
  padding: 36px 30px;
  transition: background .25s ease;
}
.bf-pillar:hover { background: var(--bf-cream); }
.bf-pillar .num { font-family: var(--bf-serif); font-size: 15px; color: var(--bf-gold); margin-bottom: 18px; }
.bf-pillar h3 { font-size: 19px; margin-bottom: 10px; }
.bf-pillar p { font-size: 14px; color: var(--bf-text-muted); margin: 0; }

/* Feature rows (Built for what's next) */
.bf-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--bf-line-dark);
}
.bf-feature-row:first-of-type { border-top: none; }
.bf-feature-row.reverse .bf-feature-media { order: 2; }
.bf-feature-media {
  aspect-ratio: 4/3;
  border-radius: var(--bf-radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.bf-feature-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0) 40%, rgba(10,26,47,0.55) 100%);
}
.bf-feature-text .bf-eyebrow { color: var(--bf-navy); opacity: 0.55; }
.bf-feature-text .bf-eyebrow::before { background: var(--bf-navy); opacity: 0.55; }
.bf-feature-text h3 { font-size: 28px; margin-bottom: 14px; }
.bf-feature-text p { color: var(--bf-text-muted); font-size: 15.5px; margin-bottom: 22px; }
.bf-feature-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; letter-spacing: 0.03em; color: var(--bf-navy); text-transform: uppercase; }
.bf-feature-link svg { transition: transform .2s ease; }
.bf-feature-link:hover svg { transform: translateX(4px); }

/* Audience cards */
.bf-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bf-audience-card {
  position: relative;
  border-radius: var(--bf-radius);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.bf-audience-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0.05) 30%, rgba(6,14,26,0.92) 100%);
}
.bf-audience-card .content { position: relative; padding: 30px; }
.bf-audience-card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.bf-audience-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 16px; }
.bf-audience-card a { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bf-gold-light); }

/* Ecosystem / stat band */
.bf-ecosystem { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bf-ecosystem-text h2 { color: #fff; }
.bf-ecosystem-text p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 28px; }

/* News / insights cards */
.bf-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bf-card {
  background: #fff;
  border: 1px solid var(--bf-line-dark);
  border-radius: var(--bf-radius);
  padding: 30px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.bf-card:hover { box-shadow: 0 20px 44px rgba(10,26,47,0.1); transform: translateY(-3px); }
.bf-card .tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bf-gold); }
.bf-card .meta { font-size: 12.5px; color: var(--bf-text-muted); margin: 10px 0 14px; }
.bf-card h4 { font-size: 18px; line-height: 1.35; margin-bottom: 0; }

/* Careers band */
.bf-band {
  background: var(--bf-navy);
  color: #fff;
  border-radius: var(--bf-radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bf-band h2 { color: #fff; margin-bottom: 8px; }
.bf-band p { color: rgba(255,255,255,0.62); margin: 0; max-width: 460px; }

/* Podcast / feature spotlight */
.bf-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bf-spotlight-media {
  border-radius: var(--bf-radius);
  aspect-ratio: 16/11;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bf-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--bf-navy);
  font-size: 20px;
}

/* Marquee */
.bf-marquee { background: var(--bf-cream); padding: 26px 0; overflow: hidden; border-top: 1px solid var(--bf-line-dark); border-bottom: 1px solid var(--bf-line-dark); }
.bf-marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: bf-scroll 32s linear infinite; width: max-content; }
.bf-marquee-track span { font-family: var(--bf-serif); font-size: 20px; color: var(--bf-navy); opacity: 0.35; }
@keyframes bf-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Buttons row helper */
.bf-link-row { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; color: var(--bf-navy); }

/* ---------------- Auth pages ---------------- */
.bf-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bf-paper);
}
.bf-auth-visual {
  position: relative;
  background: linear-gradient(180deg, rgba(10,26,47,0.86), rgba(10,26,47,0.94)), url('../../img/home-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bf-auth-visual .bf-logo { color: #fff; }
.bf-auth-quote { max-width: 440px; }
.bf-auth-quote p { font-family: var(--bf-serif); font-size: 24px; line-height: 1.4; color: #fff; margin-bottom: 18px; }
.bf-auth-quote .who { font-size: 13.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.04em; }
.bf-auth-stats { display: flex; gap: 40px; }
.bf-auth-stats div h3 { color: var(--bf-gold); font-size: 26px; margin-bottom: 4px; }
.bf-auth-stats div p { color: rgba(255,255,255,0.55); font-size: 12.5px; margin: 0; text-transform: uppercase; letter-spacing: 0.03em; }

.bf-auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
}
.bf-auth-form { width: 100%; max-width: 400px; }
.bf-auth-form .bf-logo-mobile { display: none; margin-bottom: 28px; }
.bf-auth-form h1 { font-size: 30px; margin-bottom: 8px; }
.bf-auth-form > p.sub { color: var(--bf-text-muted); margin-bottom: 32px; }

.bf-field { margin-bottom: 20px; }
.bf-field label { display: block; font-size: 13px; font-weight: 600; color: var(--bf-navy); margin-bottom: 7px; }
.bf-field .input-wrap { position: relative; }
.bf-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #dcdfe4;
  border-radius: var(--bf-radius);
  font-size: 14.5px;
  font-family: var(--bf-sans);
  background: #fff;
  color: var(--bf-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.bf-input:focus { outline: none; border-color: var(--bf-navy); box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
.bf-input[readonly] { background: #f2f3f5; color: var(--bf-text-muted); }
.bf-field-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--bf-text-muted);
}
.bf-field-row { display: flex; align-items: center; justify-content: space-between; }
.bf-field-row a { font-size: 13px; color: var(--bf-navy); font-weight: 600; }
.bf-field-row a:hover { color: var(--bf-gold); }
.bf-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--bf-text-muted); margin-bottom: 22px; }
.bf-check input { width: 16px; height: 16px; accent-color: var(--bf-navy); }

.bf-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--bf-radius);
  background: var(--bf-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}
.bf-submit:hover { background: var(--bf-navy-2); }

.bf-auth-foot { margin-top: 28px; text-align: center; font-size: 13.5px; color: var(--bf-text-muted); }
.bf-auth-foot a { color: var(--bf-navy); font-weight: 700; }
.bf-auth-foot a:hover { color: var(--bf-gold); }
.bf-auth-disclaimer { margin-top: 40px; font-size: 11.5px; color: #9aa2ad; line-height: 1.6; text-align: center; }
.bf-auth-copy { margin-top: 12px; font-size: 12px; color: #b4bac2; text-align: center; }

.bf-alert { padding: 12px 16px; border-radius: var(--bf-radius); font-size: 13.5px; margin-bottom: 20px; }
.bf-alert-danger { background: #fdecec; color: #a02622; border: 1px solid #f6c9c7; }
.bf-alert-success { background: #eaf6ec; color: #1f7a34; border: 1px solid #c6e8cc; }

/* ---------------- Inner page hero ---------------- */
.bf-page-hero {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bf-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,12,22,0.55) 0%, rgba(6,12,22,0.35) 38%, rgba(6,12,22,0.94) 100%),
    linear-gradient(90deg, rgba(6,12,22,0.55) 0%, rgba(6,12,22,0.05) 45%);
}
.bf-page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--bf-gold), var(--bf-gold-light) 40%, transparent 100%);
}
.bf-page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0 56px;
}
.bf-page-hero .bf-eyebrow { color: var(--bf-gold-light); }
.bf-page-hero .bf-eyebrow::before { background: var(--bf-gold-light); }
.bf-page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.06;
  margin: 0 0 28px;
  max-width: 780px;
}
.bf-page-hero-content {
  max-width: 620px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.bf-page-hero-content h2 {
  color: var(--bf-gold-light);
  font-family: var(--bf-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  white-space: nowrap;
}
.bf-page-hero-content p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.55; margin: 0; max-width: 460px; }

.bf-breadcrumb {
  background: var(--bf-cream);
  padding: 14px 0;
  font-size: 13px;
  color: var(--bf-text-muted);
}
.bf-breadcrumb a { color: var(--bf-text-muted); }
.bf-breadcrumb a:hover { color: var(--bf-navy); }
.bf-breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* Intro with stats */
.bf-intro-stats {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.bf-intro-stats h2 { font-size: clamp(26px, 3vw, 36px); }
.bf-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.bf-stat-grid .metric h3 {
  font-family: var(--bf-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bf-navy);
  margin-bottom: 10px;
}
.bf-stat-grid .metric .value { font-family: var(--bf-serif); font-size: 36px; color: var(--bf-navy); }

/* Businesses / featured cards */
.bf-business-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bf-business-card {
  position: relative;
  border-radius: var(--bf-radius);
  overflow: hidden;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.bf-business-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0) 45%, rgba(6,14,26,0.35) 100%);
}
.bf-business-card-panel {
  position: relative;
  background: #fff;
  border-radius: var(--bf-radius);
  padding: 22px;
  width: 100%;
  max-width: 420px;
}
.bf-business-card-panel .label { font-size: 13.5px; font-weight: 700; color: var(--bf-gold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.03em; }
.bf-business-card-panel h3 { font-size: 22px; margin-bottom: 0; }
.bf-business-card-panel .arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bf-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.bf-business-card:hover .arrow { transform: translate(3px,-3px); }

/* Who we serve list-accordion */
.bf-serve-list { display: flex; flex-direction: column; }
.bf-serve-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--bf-line-dark);
}
.bf-serve-item:last-child { border-bottom: 1px solid var(--bf-line-dark); }
.bf-serve-item .media {
  aspect-ratio: 16/10;
  border-radius: var(--bf-radius);
  background-size: cover;
  background-position: center;
}
.bf-serve-item h3 { font-size: 26px; margin-bottom: 12px; }
.bf-serve-item p { color: var(--bf-text-muted); font-size: 15px; margin-bottom: 20px; }

/* Two-column split with media (owner-operator, video-style section) */
.bf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bf-split-media {
  aspect-ratio: 4/3;
  border-radius: var(--bf-radius);
  background-size: cover;
  background-position: center;
  position: relative;
}
.bf-split-text h2 { font-size: 30px; margin-bottom: 16px; }
.bf-split-text p { color: rgba(255,255,255,0.65); font-size: 16px; }
.bf-section-dark .bf-split-text p { color: rgba(255,255,255,0.65); }

/* Accreditation / trust logos */
.bf-trust-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--bf-line-dark); }
.bf-trust-row img { height: 46px; width: auto; opacity: 0.85; }

/* ---------------- Legal / prose content ---------------- */
.bf-legal { max-width: 820px; }
.bf-legal .updated { font-size: 13px; color: var(--bf-text-muted); margin-bottom: 40px; }
.bf-legal h2 { font-size: 24px; margin-top: 44px; margin-bottom: 16px; }
.bf-legal h2:first-of-type { margin-top: 0; }
.bf-legal h3 { font-size: 18px; margin-top: 28px; margin-bottom: 12px; }
.bf-legal p { font-size: 15.5px; line-height: 1.75; color: var(--bf-text); margin-bottom: 16px; }
.bf-legal ul { margin: 0 0 16px; padding-left: 22px; }
.bf-legal li { font-size: 15.5px; line-height: 1.75; color: var(--bf-text); margin-bottom: 8px; }
.bf-legal a { color: var(--bf-navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.bf-legal a:hover { color: var(--bf-gold); }
.bf-legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
}
.bf-legal-nav h5 {
  font-family: var(--bf-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bf-text-muted);
  margin-bottom: 14px;
}
.bf-legal-nav ul { list-style: none; margin: 0; padding: 0; }
.bf-legal-nav li { margin-bottom: 4px; }
.bf-legal-nav a {
  display: block;
  font-size: 14px;
  color: var(--bf-text-muted);
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--bf-line-dark);
  text-decoration: none;
  font-weight: 500;
}
.bf-legal-nav a:hover { color: var(--bf-navy); border-color: var(--bf-gold); }
.bf-legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 56px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .bf-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .bf-pillars { grid-template-columns: repeat(2, 1fr); }
  .bf-card-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-audience-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .bf-nav, .bf-header-actions .bf-btn-outline { display: none; }
  .bf-burger { display: flex; }
  .bf-hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .bf-feature-row, .bf-feature-row.reverse { grid-template-columns: 1fr; }
  .bf-feature-row.reverse .bf-feature-media { order: 0; }
  .bf-ecosystem { grid-template-columns: 1fr; }
  .bf-spotlight { grid-template-columns: 1fr; }
  .bf-auth { grid-template-columns: 1fr; }
  .bf-auth-visual { display: none; }
  .bf-auth-form .bf-logo-mobile { display: flex; }
  .bf-intro-stats { grid-template-columns: 1fr; }
  .bf-business-grid { grid-template-columns: 1fr; }
  .bf-serve-item, .bf-serve-item:nth-child(even) { grid-template-columns: 1fr; }
  .bf-legal-grid { grid-template-columns: 1fr; }
  .bf-legal-nav { position: static; margin-bottom: 32px; }
  .bf-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .bf-topbar { display: none; }
  .bf-footer-grid { grid-template-columns: 1fr 1fr; }
  .bf-audience-grid, .bf-card-grid { grid-template-columns: 1fr; }
  .bf-pillars { grid-template-columns: 1fr; }
  .bf-band { flex-direction: column; align-items: flex-start; }
  .bf-hero { padding: 90px 0 64px; }
  .bf-page-hero { min-height: auto; padding-top: 90px; }
  .bf-page-hero-content { flex-direction: column; gap: 16px; }
  .bf-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav panel */
.bf-mobile-nav {
  position: fixed; inset: 0 0 0 auto;
  width: 320px; max-width: 86vw; height: 100vh;
  background: var(--bf-navy);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 28px 24px;
}
.bf-mobile-nav.open { transform: translateX(0); }
.bf-mobile-overlay {
  position: fixed; inset: 0; background: rgba(6,12,22,0.6);
  z-index: 1100; opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.bf-mobile-overlay.open { opacity: 1; visibility: visible; }
.bf-mobile-nav-close { background: none; border: none; color: #fff; font-size: 22px; float: right; cursor: pointer; }
.bf-mobile-nav ul { list-style: none; padding: 0; margin: 48px 0 0; }
.bf-mobile-nav > ul > li { border-bottom: 1px solid var(--bf-line); }
.bf-mobile-nav > ul > li > a, .bf-mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; font-size: 15.5px; font-weight: 600; padding: 14px 0;
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
}
.bf-mobile-submenu { list-style: none; padding: 0 0 14px 12px; margin: 0; display: none; }
.bf-mobile-submenu.open { display: block; }
.bf-mobile-submenu li a { padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 400; }
