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

: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 .cta-group { display: flex; gap: 10px; align-items: center; }

  .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; }

  /* ============ HERO ============ */
  .hero {
    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;
    position: relative;
    overflow: hidden;
  }
  .hero::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;
  }
  .hero .wrap {
    max-width: 1240px; margin: 0 auto; padding: 72px 24px 88px;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start;
    position: relative; z-index: 1;
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border: 1px solid rgba(227,200,120,0.4);
    border-radius: 999px; font-size: 13px; font-weight: 600;
    color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

  .hero h1 {
    font-family: 'Source Serif 4', serif; font-weight: 600;
    font-size: clamp(40px, 5.2vw, 62px); line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 20px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }

  .hero-sub {
    font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.82);
    max-width: 560px; margin-bottom: 32px;
  }

  .hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
  }

  .hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-trust .item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.75);
  }
  .hero-trust .item svg { flex-shrink: 0; color: var(--gold-light); }
  .hero-trust .item strong { color: #fff; font-weight: 600; }

  /* Hero form card */
  .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;
  }
  .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;
  }

  /* ============ GENERIC SECTION ============ */
  section { padding: 80px 0; }
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
  .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); }

  /* ============ PROGRAMS ============ */
  .programs { background: var(--paper); }
  .programs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .program-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 8px; padding: 36px 32px;
    position: relative; transition: all 0.2s;
    display: flex; flex-direction: column;
  }
  .program-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(14,80,112,0.12);
    border-color: var(--navy);
  }
  .program-card .step {
    position: absolute; top: 28px; right: 32px;
    font-family: 'Source Serif 4', serif;
    font-size: 48px; font-weight: 400; font-style: italic;
    color: var(--gold); opacity: 0.35; line-height: 1;
  }
  .program-card .phase {
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    color: var(--navy); text-transform: uppercase; margin-bottom: 12px;
  }
  .program-card h3 {
    font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 600;
    color: var(--navy-deeper); margin-bottom: 14px; line-height: 1.2;
  }
  .program-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; flex: 1; }
  .program-card ul { list-style: none; margin-bottom: 22px; }
  .program-card ul li {
    padding: 6px 0; font-size: 14px; color: var(--ink-soft);
    display: flex; gap: 8px; align-items: flex-start;
  }
  .program-card ul li::before {
    content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
  }
  .program-card .link {
    color: var(--navy); text-decoration: none; font-weight: 600;
    font-size: 14px; display: inline-flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--gold); padding-bottom: 2px;
    align-self: flex-start;
  }
  .program-card .link:hover { color: var(--gold); }

  /* ============ WHY BARC ============ */
  .why {
    background: var(--navy-deeper); color: #fff;
    position: relative; overflow: hidden;
  }
  .why::before {
    content: ''; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,155,60,0.12), transparent 70%);
  }
  .why .section-head h2 { color: #fff; }
  .why .section-head h2 em { color: var(--gold-light); }
  .why .section-head p { color: rgba(255,255,255,0.75); }
  .why .eyebrow { color: var(--gold-light); }
  .why .eyebrow::before, .why .eyebrow::after { background: var(--gold-light); }

  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative; z-index: 1;
  }
  .why-item {
    padding: 28px 20px 28px 0;
    border-left: 2px solid rgba(200,155,60,0.4);
    padding-left: 24px;
  }
  .why-item .stat {
    font-family: 'Source Serif 4', serif; font-size: 48px; font-weight: 600;
    color: var(--gold-light); line-height: 1; margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .why-item h4 {
    font-size: 17px; font-weight: 600; margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
  .why-item p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }

  /* ============ HOUSTON / LOCAL ============ */
  .local { background: var(--cream); }
  .local .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .local .eyebrow { justify-content: flex-start; }
  .local h2 {
    font-family: 'Source Serif 4', serif; font-size: 44px; font-weight: 600;
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--navy-deeper); margin-bottom: 20px;
  }
  .local h2 em { font-style: italic; color: var(--navy); font-weight: 400; }
  .local p.lead { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; }

  .locations-list {
    display: flex; flex-direction: column; gap: 8px;
    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;
  }
  .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; }

  /* ============ COST / PRICING ============ */
  .cost { background: var(--paper); }
  .cost-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff; border-radius: 12px;
    padding: 56px 64px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
    position: relative; overflow: hidden;
  }
  .cost-card::before {
    content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 100%;
    background: radial-gradient(circle at right, rgba(200,155,60,0.15), transparent 70%);
  }
  .cost-card h3 {
    font-family: 'Source Serif 4', serif; font-size: 38px; font-weight: 600;
    line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em;
  }
  .cost-card h3 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
  .cost-card p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
  .cost-card .features { display: flex; flex-direction: column; gap: 10px; }
  .cost-card .features li {
    list-style: none; display: flex; gap: 10px; font-size: 15px;
    color: rgba(255,255,255,0.9);
  }
  .cost-card .features li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }
  .cost-card .right {
    display: flex; flex-direction: column; gap: 12px;
    position: relative; z-index: 1;
  }

  /* ============ INSURANCE ============ */
  .insurance { background: #fff; padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .insurance .label {
    text-align: center; font-size: 13px; font-weight: 700;
    letter-spacing: 0.14em; color: var(--muted);
    text-transform: uppercase; margin-bottom: 28px;
  }
  .insurance .logos {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
    align-items: center; max-width: 1100px; margin: 0 auto;
  }
  .ins-logo {
    height: 56px; border: 1px dashed var(--line); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Source Serif 4', serif; font-size: 13px; font-weight: 600;
    color: var(--navy); background: var(--paper);
    text-align: center; padding: 6px;
  }

  /* ============ REVIEWS ============ */
  .reviews { background: var(--paper); }
  .review-head {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    margin-bottom: 48px; padding: 20px 28px;
    background: #fff; border-radius: 8px;
    max-width: 640px; margin-left: auto; margin-right: auto;
    border: 1px solid var(--line);
  }
  .review-head .big {
    font-family: 'Source Serif 4', serif;
    font-size: 48px; font-weight: 600; color: var(--navy-deeper);
    line-height: 1;
  }
  .stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
  .review-head .meta { font-size: 14px; color: var(--ink-soft); }
  .review-head .meta strong { color: var(--navy); }

  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 8px; padding: 32px;
    position: relative;
  }
  .review-card .quote-mark {
    font-family: 'Source Serif 4', serif; font-size: 80px;
    color: var(--gold); line-height: 0.7; margin-bottom: 8px;
    opacity: 0.4;
  }
  .review-card .stars { margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
  .review-card blockquote {
    font-size: 15px; color: var(--ink); line-height: 1.6;
    margin-bottom: 20px;
  }
  .review-card cite {
    font-style: normal; font-weight: 600; color: var(--navy-deeper); font-size: 14px;
  }
  .review-card .date { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* ============ FAQ ============ */
  .faq { background: #fff; }
  .faq-list { max-width: 860px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .faq-item summary {
    cursor: pointer; list-style: none;
    font-family: 'Source Serif 4', serif; font-size: 20px; font-weight: 600;
    color: var(--navy-deeper);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; font-family: 'Inter', sans-serif; font-size: 28px;
    font-weight: 300; color: var(--gold); flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item .answer {
    margin-top: 14px; font-size: 16px; color: var(--ink-soft); line-height: 1.6;
  }

  /* ============ 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) {
    .hero .wrap { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
    .programs-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .local .wrap { grid-template-columns: 1fr; gap: 40px; }
    .cost-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
    .insurance .logos { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    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) {
    .why-grid { grid-template-columns: 1fr; }
    .insurance .logos { grid-template-columns: repeat(2, 1fr); }
    footer .wrap { grid-template-columns: 1fr; }
  }
