/*
 * BARC source CSS for about.html.
 * Generated from the original HTML handoff so this WordPress page matches the static design.
 */

/* ============================================================
   BAY AREA RECOVERY CENTER — SHARED STYLES
   Used across: index, about, programs, contact, verify-insurance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0E5070;
  --navy-dark: #083a54;
  --navy-deeper: #052638;
  --gold: #C89B3C;
  --gold-light: #E3C878;
  --cream: #F7F3EA;
  --paper: #FBFAF6;
  --ink: #0E1821;
  --ink-soft: #3A4958;
  --muted: #6B7A89;
  --line: #D9DDE1;
  --line-soft: #E9ECEF;
  --urgent: #C84734;
  --success: #2E7D5B;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink); background: var(--paper);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Source Serif 4', Georgia, serif; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-deeper); color: #fff;
  padding: 8px 0; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
}
.topbar .left { display: flex; align-items: center; gap: 12px; }
.topbar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80; box-shadow: 0 0 0 4px rgba(74,222,128,0.15);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.topbar .right { display: flex; gap: 20px; align-items: center; }
.topbar .sep { opacity: 0.4; }

/* ============ NAV ============ */
.nav {
  background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav .wrap {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav .logo img { height: 48px; display: block; }
.nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav ul a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 500; font-size: 15px;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.nav ul a:hover { color: var(--navy); border-color: var(--gold); }
.nav ul a.active { color: var(--navy); border-color: var(--gold); }
.nav .cta-group { display: flex; gap: 10px; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.15s ease; white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-gold { background: var(--gold); color: #1a1208; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,155,60,0.3); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 10px 20px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); }
.btn-verify { background: transparent; color: #fff; border: 2px solid var(--gold); padding: 16px 26px; }
.btn-verify:hover { background: var(--gold); color: #1a1208; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 18px 32px; font-size: 17px; }

/* ============ GENERIC SECTION ============ */
section { padding: 80px 0; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 800px; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.5;
}
.section-head h2 {
  font-family: 'Source Serif 4', serif; font-weight: 600;
  font-size: clamp(32px, 3.8vw, 46px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--navy-deeper);
  margin-bottom: 16px;
}
.section-head h2 em { font-style: italic; color: var(--navy); font-weight: 400; }
.section-head p { font-size: 18px; color: var(--ink-soft); }

/* ============ PAGE HEADER (sub-page hero) ============ */
.page-header {
  background:
    linear-gradient(135deg, rgba(14,80,112,0.92) 0%, rgba(8,58,84,0.95) 100%),
    radial-gradient(circle at 80% 20%, rgba(200,155,60,0.15), transparent 50%),
    var(--navy);
  color: #fff; padding: 80px 0 96px;
  position: relative; overflow: hidden; text-align: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.page-header .wrap { position: relative; z-index: 1; max-width: 900px; }
.page-header h1 {
  font-family: 'Source Serif 4', serif; font-weight: 600;
  font-size: clamp(38px, 5vw, 58px); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.page-header p {
  font-size: 19px; color: rgba(255,255,255,0.82);
  max-width: 700px; margin: 0 auto;
}
.page-header .crumb {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 18px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-header .crumb a { color: rgba(255,255,255,0.75); text-decoration: none; }

/* ============ CONTENT (long-form) ============ */
.content { padding: 80px 0; background: var(--paper); }
.content h2 {
  font-family: 'Source Serif 4', serif; font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy-deeper); margin-bottom: 20px;
}
.content h2 em { font-style: italic; color: var(--navy); font-weight: 400; }
.content h3 {
  font-family: 'Source Serif 4', serif; font-size: 24px; font-weight: 600;
  color: var(--navy-deeper); margin: 32px 0 12px; line-height: 1.2;
}
.content p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.65; }
.content p strong { color: var(--ink); }
.content ul.checklist {
  list-style: none; margin: 18px 0 24px;
  display: grid; gap: 10px;
}
.content ul.checklist li {
  font-size: 16px; color: var(--ink-soft);
  padding-left: 28px; position: relative; line-height: 1.5;
}
.content ul.checklist li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; font-size: 18px;
}

/* ============ PILLARS ============ */
.pillars { background: #fff; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pillar {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 8px; padding: 36px 28px;
  position: relative; transition: all 0.2s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14,80,112,0.10);
  border-color: var(--navy);
}
.pillar .num {
  font-family: 'Source Serif 4', serif; font-size: 22px;
  font-style: italic; color: var(--gold);
  margin-bottom: 14px; font-weight: 400;
}
.pillar h3 {
  font-family: 'Source Serif 4', serif; font-size: 22px;
  font-weight: 600; color: var(--navy-deeper);
  margin-bottom: 10px; line-height: 1.2;
}
.pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* ============ MISSION (gold/navy band) ============ */
.mission { background: var(--cream); padding: 80px 0; }
.mission-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; border-radius: 12px; padding: 64px 56px;
  text-align: center; max-width: 980px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 320px; height: 100%;
  background: radial-gradient(circle at right, rgba(200,155,60,0.18), transparent 70%);
}
.mission-card .eyebrow { color: var(--gold-light); justify-content: center; }
.mission-card .eyebrow::before, .mission-card .eyebrow::after { background: var(--gold-light); }
.mission-card h2 {
  font-family: 'Source Serif 4', serif; font-size: clamp(32px, 4vw, 44px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.mission-card h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.mission-card p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 660px; margin: 0 auto 28px;
  position: relative; z-index: 1;
}
.mission-card .actions { position: relative; z-index: 1; }

/* ============ STATS BAND ============ */
.stats-band { background: var(--navy-deeper); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-grid .stat-big {
  font-family: 'Source Serif 4', serif; font-size: 64px; font-weight: 600;
  color: var(--gold-light); line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stats-grid .stat-label {
  font-size: 14px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============ LOCATIONS LIST ============ */
.locations-list {
  display: flex; flex-direction: column; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 8px;
}
.loc-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  padding: 16px; border-radius: 4px; align-items: center;
  transition: background 0.15s;
}
.loc-item:hover { background: var(--cream); }
.loc-item + .loc-item { border-top: 1px solid var(--line-soft); }
.loc-pin {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 600;
}
.loc-name { font-weight: 600; font-size: 15px; color: var(--navy-deeper); }
.loc-addr { font-size: 13px; color: var(--muted); }
.loc-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; white-space: nowrap;
}
.loc-tag.in { background: rgba(14,80,112,0.1); color: var(--navy); }
.loc-tag.out { background: rgba(200,155,60,0.15); color: #8a6b2a; }

/* ============ HERO FORM (used on home + contact) ============ */
.hero-form {
  background: #fff; color: var(--ink);
  border-radius: 8px; padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
}
.hero-form::before {
  content: ''; position: absolute; top: -6px; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 8px 8px 0 0;
}
.hero-form .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--navy); text-transform: uppercase; margin-bottom: 6px;
  display: block;
}
.hero-form .eyebrow::before, .hero-form .eyebrow::after { display: none; }
.hero-form h3 {
  font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 600;
  line-height: 1.15; margin-bottom: 8px; color: var(--navy-deeper);
}
.hero-form p.lead { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.hero-form .field { margin-bottom: 14px; }
.hero-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 6px;
}
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 4px; font-family: inherit; font-size: 15px;
  background: #fff; transition: border-color 0.15s;
}
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.hero-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.hero-form .privacy {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: 12px; display: flex; gap: 6px; align-items: center; justify-content: center;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  background: #fff; border: 1px solid var(--line);
  padding: 24px 26px; border-radius: 8px;
}
.contact-block.highlight {
  background: var(--navy-deeper); color: #fff; border: 1px solid var(--navy);
  border-top: 4px solid var(--gold);
}
.contact-block .contact-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.contact-block.highlight .contact-label { color: var(--gold-light); }
.contact-block a {
  color: var(--navy); text-decoration: none; font-weight: 600;
  font-size: 16px; word-break: break-word;
}
.contact-block.highlight a { color: #fff; }
.contact-block .big-phone {
  display: block;
  font-family: 'Source Serif 4', serif; font-size: 32px;
  font-weight: 600; color: #fff; letter-spacing: -0.01em;
  line-height: 1.1; margin-bottom: 8px;
}
.contact-block .meta { font-size: 13px; color: rgba(255,255,255,0.7); }
.contact-block:not(.highlight) .meta { color: var(--muted); }
.contact-block ol.steps {
  list-style: none; counter-reset: step;
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 8px;
}
.contact-block ol.steps li {
  counter-increment: step; padding-left: 36px; position: relative;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.contact-block ol.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #1a1208;
  font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-block ol.steps li strong { color: var(--ink); }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--navy-deeper); color: #fff; text-align: center;
  padding: 96px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,155,60,0.2), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(14,80,112,0.4), transparent 40%);
}
.final-cta .wrap { position: relative; z-index: 1; max-width: 820px; }
.final-cta h2 {
  font-family: 'Source Serif 4', serif; font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.final-cta h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.final-cta p {
  font-size: 19px; color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 620px;
  margin-left: auto; margin-right: auto;
}
.final-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer {
  background: #0a1922; color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
footer > .wrap {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
footer .logo-col img {
  height: 56px; margin-bottom: 20px;
  filter: brightness(0) invert(1); opacity: 0.95;
}
footer .logo-col p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
footer h5 {
  color: var(--gold-light); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--gold-light); }
footer .bottom {
  max-width: 1240px; margin: 48px auto 0; padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ============ STICKY CALL BAR (mobile) ============ */
.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-deeper); color: #fff;
  padding: 12px 16px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  z-index: 100; box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  border-top: 2px solid var(--gold);
}
.sticky-call .label { font-size: 13px; font-weight: 600; }
.sticky-call .label small { display: block; font-size: 11px; opacity: 0.7; font-weight: 400; }
.sticky-call a { text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-card { padding: 44px 28px; }
  footer > .wrap { grid-template-columns: 1fr 1fr; }
  .nav ul { display: none; }
  .sticky-call { display: flex; }
  body { padding-bottom: 72px; }
  .topbar .right .sep, .topbar .right .hide-mobile { display: none; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  footer > .wrap { grid-template-columns: 1fr; }
}
