/* ============================================================
   BURNCLAIM.COM — Design System & Stylesheet
   ============================================================ */

/* ── Self-hosted fonts ──────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:        #09243C;
  --navy-dark:   #050f1a;
  --navy-light:  #0e3558;
  --navy-mid:    #0b2d4e;

  /* Gold / Bronze accent (matches original brand) */
  --ember:       #CC8C33;
  --ember-light: #D4973F;
  --ember-pale:  #F5E9D0;

  /* Amber / warm gold secondary */
  --amber:       #B8792A;
  --amber-light: #CC8C33;
  --amber-pale:  #F5E9D0;

  /* Status */
  --green:       #27764f;
  --green-pale:  #d4eddf;
  --red:         #b03020;
  --red-pale:    #fdecea;

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f5f7fb;
  --gray-50:     #f0f2f7;
  --gray-100:    #e4e8f0;
  --gray-200:    #c8d0e0;
  --gray-400:    #8892a8;
  --gray-600:    #68747A;
  --gray-700:    #4a5568;
  --dark:        #0d1526;

  /* Typography */
  --font-sans:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Scale */
  --text-xs:     0.75rem;
  --text-sm:     0.875rem;
  --text-base:   1rem;
  --text-lg:     1.125rem;
  --text-xl:     1.25rem;
  --text-2xl:    1.5rem;
  --text-3xl:    1.875rem;
  --text-4xl:    2.25rem;
  --text-5xl:    3rem;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Layout */
  --max-w:       1200px;
  --max-w-prose: 760px;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  /* Transitions */
  --transition:      200ms ease;
  --transition-slow: 400ms ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container        { max-width: var(--max-w);       margin: 0 auto; padding: 0 var(--sp-6); }
.container--narrow{ max-width: var(--max-w-prose); margin: 0 auto; padding: 0 var(--sp-6); }

.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.grid-auto{ display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--sp-6); }

.flex            { display: flex; }
.flex-col        { display: flex; flex-direction: column; }
.items-center    { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }

.section     { padding: var(--sp-20) 0; }
.section--sm { padding: var(--sp-12) 0; }
.section--lg { padding: var(--sp-24) 0; }
.section--dark  { background: var(--navy-dark); color: var(--white); }
.section--navy  { background: var(--navy);      color: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--ember { background: var(--ember-pale); }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top: var(--sp-4); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-8  { margin-bottom: var(--sp-8); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy-dark);
  font-weight: 700;
}
h1 { font-size: clamp(var(--text-3xl), 5vw,   var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl),  2.5vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--sp-4); color: var(--gray-700); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--gray-600);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: var(--sp-3);
}
.section-title    { margin-bottom: var(--sp-4); }
.section-subtitle { font-size: var(--text-lg); color: var(--gray-600); max-width: 640px; }

.text-white { color: var(--white) !important; }
.text-white p, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }
.text-ember  { color: var(--ember); }
.text-amber  { color: var(--amber); }
.text-gray   { color: var(--gray-600); }
.text-sm     { font-size: var(--text-sm); }
.text-xs     { font-size: var(--text-xs); }
.font-bold   { font-weight: 700; }
.font-600    { font-weight: 600; }

/* Prose / article body */
.prose p    { color: var(--gray-700); margin-bottom: var(--sp-5); }
.prose h2   { margin: var(--sp-10) 0 var(--sp-4); }
.prose h3   { margin: var(--sp-8) 0 var(--sp-3); }
.prose ul   { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.prose ol   { list-style: decimal; padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.prose li   { margin-bottom: var(--sp-2); color: var(--gray-700); }
.prose strong { color: var(--navy); }
.prose a    { color: var(--ember); text-decoration: underline; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}
.btn--primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196,75,39,.35);
}
.btn--primary:hover {
  background: var(--ember-light);
  box-shadow: 0 4px 16px rgba(196,75,39,.45);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
}
.btn--amber:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}
.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-lg);
  border-radius: var(--r-lg);
}
.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  border-radius: var(--r-sm);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__body   { padding: var(--sp-6); }
.card__header {
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.card__footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.badge--ember  { background: var(--ember-pale);  color: var(--ember); }
.badge--amber  { background: var(--amber-pale);  color: var(--amber); }
.badge--navy   { background: var(--navy);         color: var(--white); }
.badge--green  { background: var(--green-pale);   color: var(--green); }
.badge--red    { background: var(--red-pale);     color: var(--red); }
.badge--gray   { background: var(--gray-100);     color: var(--gray-700); }

/* ── Fade-in animation ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  z-index: 2000;
  font-size: var(--text-sm);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  flex-wrap: wrap;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text a { color: var(--ember-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }

/* ── HEADER & NAVIGATION ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.header-top {
  background: var(--navy-dark);
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,.85); }
.header-top a:hover { color: var(--ember-light); }
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  color: var(--amber-light) !important;
  font-size: var(--text-base);
}
.header-phone svg { width: 16px; height: 16px; }

.header-main { padding: var(--sp-4) 0; }
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.site-logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.site-logo__icon {
  width: 44px;
  height: 44px;
  background: var(--ember);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.site-logo__text    { line-height: 1.1; }
.site-logo__name    { font-size: var(--text-xl); font-weight: 700; color: var(--white); display: block; }
.site-logo__tld     { font-size: var(--text-xs); color: var(--amber-light); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-item  { position: relative; }
.nav-link  {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-4);
  color: rgba(255,255,255,.85);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-link .chevron { width: 12px; height: 12px; opacity: .6; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  color: var(--gray-700);
  font-size: var(--text-sm);
  border-radius: var(--r-sm);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--navy); }
.nav-dropdown a .dd-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.nav-dropdown__section {
  padding: var(--sp-2) var(--sp-3) var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.nav-dropdown hr { border: none; border-top: 1px solid var(--gray-100); margin: var(--sp-2) 0; }
.nav-dropdown--wide {
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--sp-2);
}
.nav-dropdown--wide .nav-dropdown__section {
  grid-column: 1 / -1;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.mobile-nav.is-open { max-height: 80vh; overflow-y: auto; }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  color: rgba(255,255,255,.85);
  font-size: var(--text-base);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.mobile-nav__group-title {
  padding: var(--sp-3) var(--sp-6) var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-light);
}
.mobile-nav__sub a { padding-left: var(--sp-10); font-size: var(--text-sm); color: rgba(255,255,255,.65); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-20) 0 var(--sp-16);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,75,39,.20) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,133,10,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--amber) 50%, var(--ember) 100%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-16);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(196,75,39,.15);
  border: 1px solid rgba(196,75,39,.3);
  color: var(--ember-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.hero h1 { color: var(--white); margin-bottom: var(--sp-5); line-height: 1.15; }
.hero h1 span { color: var(--amber-light); }
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item  { text-align: center; }
.hero__trust-num   { font-size: var(--text-3xl); font-weight: 700; color: var(--amber-light); display: block; line-height: 1; }
.hero__trust-label { font-size: var(--text-xs); color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
.hero__trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); }

/* Hero intake card */
.hero__card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xl);
  color: var(--dark);
}
.hero__card-title {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}
.hero__card-sub { font-size: var(--text-sm); color: var(--gray-600); margin-bottom: var(--sp-6); }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group  { margin-bottom: var(--sp-4); }
.form-label  { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy); margin-bottom: var(--sp-2); }
.form-input  {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus  { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(196,75,39,.12); }
.form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  color: var(--dark);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.form-select:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(196,75,39,.12); }
.form-note { font-size: var(--text-xs); color: var(--gray-400); text-align: center; margin-top: var(--sp-3); }
.form-note a { color: var(--ember); }
.form-success {
  background: var(--green-pale);
  border: 1px solid var(--green);
  color: var(--green);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  text-align: center;
  font-weight: 600;
  display: none;
}
.form-error {
  background: var(--red-pale);
  border: 1px solid var(--red);
  color: var(--red);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  display: none;
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-dark);
  padding: var(--sp-6) 0;
  border-bottom: 3px solid var(--ember);
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: var(--sp-3) var(--sp-6); }
.stat-item__num {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--amber-light);
  display: block;
  line-height: 1;
}
.stat-item__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: var(--sp-1);
  display: block;
}
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.12); }

/* ── CAUSE / INJURY CARDS ───────────────────────────────────── */
.cause-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.cause-card:hover {
  border-color: var(--ember);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cause-card__icon {
  width: 52px;
  height: 52px;
  background: var(--ember-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
}
.cause-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); }
.cause-card__desc  { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ── BURN CENTER CARDS ──────────────────────────────────────── */
.center-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.center-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--ember); }
.center-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--sp-6);
  color: var(--white);
  position: relative;
}
.center-card__aba {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--ember);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
}
.center-card__city { font-size: var(--text-xs); color: var(--amber-light); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-1); }
.center-card__name { font-size: var(--text-xl); font-weight: 700; color: var(--white); line-height: 1.2; }
.center-card__body { padding: var(--sp-5); flex: 1; }
.center-card__desc { font-size: var(--text-sm); color: var(--gray-700); margin-bottom: var(--sp-4); }
.center-card__footer {
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.is-open { border-color: var(--ember); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.is-open .faq-question { background: var(--ember-pale); color: var(--ember); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-base);
  transition: all var(--transition);
}
.faq-item.is-open .faq-icon { background: var(--ember); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 var(--sp-6) var(--sp-5); background: var(--white); }
.faq-item.is-open .faq-answer { display: block; }
.faq-answer p { color: var(--gray-700); margin-bottom: var(--sp-3); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: disc; padding-left: var(--sp-6); }
.faq-answer li { color: var(--gray-700); margin-bottom: var(--sp-2); }

/* ── TRUST BAR / CHECKLIST ──────────────────────────────────── */
.trust-bar {
  background: var(--ember-pale);
  border: 1px solid rgba(196,75,39,.15);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.trust-item__icon { font-size: 1.2rem; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  background: var(--ember);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--ember-light); transform: translateY(-2px); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--gray-400);
  padding: var(--sp-4) 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ember); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--gray-200); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--amber) 50%, var(--ember) 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.page-hero .lead { color: rgba(255,255,255,.8); }

/* ── CENTER DETAIL PAGE ─────────────────────────────────────── */
.center-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}
.center-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ember) 0%, var(--amber) 50%, var(--ember) 100%);
}
.center-hero .container { display: grid; grid-template-columns: 1fr 360px; gap: var(--sp-12); align-items: start; }
.center-hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.center-hero .lead { color: rgba(255,255,255,.8); margin-bottom: var(--sp-6); }
.center-info-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.center-info-row {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.85);
}
.center-info-row:last-child { border-bottom: none; }
.center-info-row .label { color: rgba(255,255,255,.5); min-width: 100px; }

/* ── INTAKE SECTION ─────────────────────────────────────────── */
.intake-section {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.intake-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,75,39,.15) 0%, transparent 70%);
  pointer-events: none;
}
.intake-section .container { position: relative; }
.intake-section--split .container { display: grid; grid-template-columns: 1fr 420px; gap: var(--sp-16); align-items: center; }
.intake-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-xl);
}
.intake-form-card h3 { color: var(--navy); margin-bottom: var(--sp-2); }
.intake-form-card .sub { font-size: var(--text-sm); color: var(--gray-600); margin-bottom: var(--sp-6); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: var(--sp-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.site-footer p  { font-size: var(--text-sm); color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 0; }
.site-footer ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.site-footer ul a { font-size: var(--text-sm); color: rgba(255,255,255,.65); transition: color var(--transition); }
.site-footer ul a:hover { color: var(--ember-light); }
.footer-bottom {
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--ember-light); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__card { max-width: 560px; }
  .center-hero .container { grid-template-columns: 1fr; }
  .intake-section--split .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: var(--sp-12) 0 var(--sp-10); }
  .hero__trust { flex-wrap: wrap; gap: var(--sp-4); }
  .hero__trust-divider { display: none; }
  .stats-bar .container { flex-direction: column; gap: 0; }
  .stat-divider { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { width: 100%; justify-content: center; }
  .back-to-top { bottom: var(--sp-4); right: var(--sp-4); }
}

/* ── Chat Widget ────────────────────────────────────────────── */
#bc-chat {
  position: fixed;
  bottom: calc(var(--sp-6) + 56px + var(--sp-3)); /* sit above back-to-top */
  right: var(--sp-6);
  z-index: 9000;
}

.bc-chat__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: transform .2s, background .2s;
  position: relative;
}
.bc-chat__fab:hover { transform: scale(1.08); background: var(--ember-light); }
.bc-chat__fab--open { background: var(--navy); }
.bc-chat__fab--open:hover { background: var(--navy-light); }

.bc-chat__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.bc-chat__panel {
  position: absolute;
  bottom: calc(100% + var(--sp-3));
  right: 0;
  width: 340px;
  max-height: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(.97);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.bc-chat__panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.bc-chat__header {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.bc-chat__header-info { display: flex; align-items: center; gap: var(--sp-3); }
.bc-chat__avatar { font-size: 1.4rem; line-height: 1; }
.bc-chat__header-name { font-weight: 600; font-size: var(--text-sm); }
.bc-chat__header-status { font-size: var(--text-xs); color: rgba(255,255,255,.65); }
.bc-chat__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-size: 1rem;
  padding: var(--sp-1);
  line-height: 1;
  transition: color .15s;
}
.bc-chat__close:hover { color: var(--white); }

.bc-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  scroll-behavior: smooth;
}

.bc-chat__msg { display: flex; }
.bc-chat__msg--user { justify-content: flex-end; }
.bc-chat__msg--assistant { justify-content: flex-start; }

.bc-chat__bubble {
  max-width: 82%;
  padding: var(--sp-2) var(--sp-3);
  border-radius: 12px;
  font-size: var(--text-sm);
  line-height: 1.55;
}
.bc-chat__msg--user .bc-chat__bubble {
  background: var(--ember);
  color: var(--white);
  border-bottom-right-radius: 3px;
}
.bc-chat__msg--assistant .bc-chat__bubble {
  background: var(--gray-50);
  color: var(--dark);
  border-bottom-left-radius: 3px;
}

/* Typing dots */
.bc-dots { display: inline-flex; gap: 4px; align-items: center; height: 16px; }
.bc-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-400);
  animation: bcDot 1.2s infinite ease-in-out;
}
.bc-dots span:nth-child(2) { animation-delay: .2s; }
.bc-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes bcDot {
  0%, 80%, 100% { transform: scale(.75); opacity: .4; }
  40%           { transform: scale(1.1); opacity: 1; }
}

/* Option chips */
.bc-chat__options {
  padding: 0 var(--sp-4) var(--sp-2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.bc-chat__opt {
  background: var(--ember-pale);
  border: 1px solid var(--ember);
  color: var(--amber);
  border-radius: 20px;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bc-chat__opt:hover { background: var(--ember); color: var(--white); }

/* Input row */
.bc-chat__input-row {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.bc-chat__input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .15s;
}
.bc-chat__input:focus { border-color: var(--ember); }

.bc-chat__send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.bc-chat__send:hover:not(:disabled) { background: var(--ember-light); }
.bc-chat__send:disabled { opacity: .45; cursor: default; }

/* Intake complete confirmation */
.bc-chat__complete {
  background: var(--green-pale);
  color: var(--green);
  border-radius: 8px;
  padding: var(--sp-3);
  font-size: var(--text-sm);
  text-align: center;
}

@media (max-width: 480px) {
  #bc-chat { bottom: calc(var(--sp-4) + 48px + var(--sp-2)); right: var(--sp-4); }
  .bc-chat__panel { width: calc(100vw - 32px); right: 0; max-height: 70vh; }
}
