/*
Theme Name:  Pichon Law Firm
Theme URI:   https://www.pichonlawfirm.com
Author:      Pichon Law Firm
Description: Complete WordPress theme. Logo with dark navy background displayed correctly. All mobile fixes: iOS 16px inputs, autocomplete, touch targets, aria-expanded on FAQ. Form emails to jeremy@pichonlawfirm.com. Jeremy Pichon photo on homepage. Retired Major 25 years. All outbound SEO links.
Version:     4.1.0
License:     Private
Text Domain: pichon-law
*/

/* ─── TOKENS ───────────────────────────────────────────── */
:root {
  --navy:    #0a1628;
  --navy2:   #112040;
  --navy3:   #070e1c;
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --gold-dk: #a07830;
  --cream:   #f5f0e8;
  --cream2:  #ebe4d4;
  --white:   #ffffff;
  --gray-lt: #f8f7f4;
  --gray:    #9a9082;
  --text:    #2e2616;
  --red:     #8b1a1a;
  --nav-h:   72px;
  --max:     1200px;
  --r:       4px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body { font-family:'Source Sans 3',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; line-height:1.6; padding-top:var(--nav-h) }
img { max-width:100%; height:auto; display:block }
a { color:inherit; text-decoration:none }
button { font-family:inherit }

/* ─── SKIP LINK (accessibility) ────────────────────────── */
.skip-link {
  position:absolute; top:-100px; left:16px; z-index:9999;
  background:var(--gold); color:var(--navy);
  padding:10px 18px; border-radius:var(--r);
  font-size:14px; font-weight:700; text-decoration:none;
  transition:top .2s;
}
.skip-link:focus { top:80px }

/* ─── FLOATING NAV ─────────────────────────────────────── */
#site-nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  background:rgba(7,14,28,.96);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:2px solid var(--gold-dk);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 40px;
  transition:box-shadow .3s, background .3s;
}
#site-nav.scrolled {
  background:rgba(7,14,28,.99);
  box-shadow:0 4px 32px rgba(0,0,0,.5);
}

/* ─── LOGO — no filter, displays on dark nav as designed ─ */
.nav-logo {
  display:flex; align-items:center; flex-shrink:0;
  text-decoration:none;
  /* logo has dark navy background — renders perfectly on dark nav */
}
.nav-logo img {
  height:200px;   /* tall enough to show full logo crest + text */
  width:auto;
  display:block;
  border-radius:2px;
  /* NO filter — the logo's navy bg matches the nav perfectly */
}

#primary-nav { display:flex; align-items:center; list-style:none; margin:0; padding:0 }
#primary-nav > li { position:relative }
#primary-nav > li > a {
  display:flex; align-items:center;
  padding:0 14px; height:var(--nav-h); min-height:44px;
  font-size:11.5px; font-weight:700; color:rgba(255,255,255,.82);
  text-transform:uppercase; letter-spacing:.07em;
  border-bottom:3px solid transparent;
  transition:color .2s, border-color .2s;
}
#primary-nav > li > a:hover,
#primary-nav > li.current-menu-item > a { color:var(--gold); border-bottom-color:var(--gold) }

#primary-nav .sub-menu {
  position:absolute; top:100%; left:0; min-width:240px;
  background:var(--navy3); border-top:3px solid var(--gold);
  box-shadow:0 16px 48px rgba(0,0,0,.55);
  list-style:none; padding:6px 0;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:all .22s; z-index:200;
}
#primary-nav > li:hover .sub-menu { opacity:1; visibility:visible; transform:translateY(0) }
#primary-nav .sub-menu li a {
  display:block; padding:12px 20px; min-height:44px;
  font-size:13px; color:rgba(255,255,255,.72);
  border-bottom:1px solid rgba(255,255,255,.05);
  transition:background .15s, color .15s;
  display:flex; align-items:center;
}
#primary-nav .sub-menu li:last-child a { border-bottom:none }
#primary-nav .sub-menu li a:hover { background:rgba(201,168,76,.1); color:var(--gold-lt) }

.nav-call {
  background:var(--gold) !important; color:var(--navy) !important;
  padding:10px 18px !important; height:auto !important; line-height:normal !important;
  min-height:44px !important;
  border-radius:2px; margin-left:10px; border-bottom:none !important;
  font-size:12px !important; font-weight:700 !important;
  transition:background .2s !important; white-space:nowrap;
  display:flex !important; align-items:center !important;
}
.nav-call:hover { background:var(--gold-lt) !important }

/* Hamburger — larger tap target */
#nav-toggle {
  display:none; background:none; border:none; cursor:pointer;
  padding:12px 8px; flex-direction:column; gap:5px;
  min-width:44px; min-height:44px; justify-content:center; align-items:center;
}
#nav-toggle span { display:block; width:24px; height:2px; background:var(--white); transition:.3s; border-radius:2px }
#nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
#nav-toggle.open span:nth-child(2) { opacity:0; transform:scaleX(0) }
#nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-gold {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--gold); color:var(--navy);
  padding:14px 32px; min-height:44px;
  font-size:14px; font-weight:700;
  border-radius:var(--r); text-transform:uppercase; letter-spacing:.06em;
  border:none; cursor:pointer; transition:background .2s, transform .15s;
}
.btn-gold:hover { background:var(--gold-lt); transform:translateY(-1px) }
.btn-ghost {
  display:inline-flex; align-items:center; justify-content:center;
  border:2px solid rgba(255,255,255,.38); color:var(--white);
  padding:12px 28px; min-height:44px;
  font-size:14px; font-weight:600;
  border-radius:var(--r); text-transform:uppercase; letter-spacing:.06em;
  transition:border-color .2s, background .2s;
}
.btn-ghost:hover { border-color:var(--gold); background:rgba(201,168,76,.1) }
.btn-navy {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--navy); color:var(--gold);
  padding:12px 26px; min-height:44px;
  font-size:13px; font-weight:700;
  border-radius:var(--r); text-transform:uppercase; letter-spacing:.06em;
  border:none; cursor:pointer; transition:background .2s;
}
.btn-navy:hover { background:var(--navy2) }

/* ─── LAYOUT ───────────────────────────────────────────── */
.container { max-width:var(--max); margin:0 auto; padding:0 40px }
.section { padding:88px 0 }
.section-sm { padding:60px 0 }
.bg-white  { background:var(--white) }
.bg-cream  { background:var(--cream) }
.bg-navy   { background:var(--navy) }
.bg-navy2  { background:var(--navy2) }
.bg-navy3  { background:var(--navy3) }

/* ─── HEADINGS ─────────────────────────────────────────── */
.eyebrow {
  font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold-dk); display:flex; align-items:center; gap:10px; margin-bottom:12px;
}
.eyebrow::before { content:''; width:28px; height:2px; background:var(--gold); flex-shrink:0 }
.eyebrow.lt { color:rgba(201,168,76,.75) }
.h-display {
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,50px); font-weight:900;
  line-height:1.1; letter-spacing:-.025em;
}
.h-display.dk { color:var(--navy) }
.h-display.lt { color:var(--white) }
.h-display em { font-style:normal; color:var(--gold) }
.lead { font-size:17px; color:var(--gray); line-height:1.75; font-weight:300; max-width:580px }
.lead.lt { color:rgba(255,255,255,.62) }

/* ─── TRUST BAR ────────────────────────────────────────── */
.trust-bar {
  background:var(--navy2); padding:15px 40px;
  display:flex; align-items:center; justify-content:center;
  gap:32px; flex-wrap:wrap;
  border-top:1px solid rgba(201,168,76,.15);
  border-bottom:1px solid rgba(201,168,76,.15);
}
/* contrast fix — was .7 opacity, bumped to .88 for WCAG */
.trust-item { display:flex; align-items:center; gap:7px; font-size:12px; font-weight:700; color:rgba(255,255,255,.88); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap }
.trust-sep { width:1px; height:22px; background:rgba(255,255,255,.18); flex-shrink:0 }

/* ─── PAGE HERO ────────────────────────────────────────── */
.page-hero {
  background:var(--navy); padding:72px 0 60px;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(-45deg,transparent,transparent 38px,rgba(201,168,76,.035) 38px,rgba(201,168,76,.035) 39px);
  pointer-events:none;
}
.page-hero::after { content:''; position:absolute; left:0; top:0; bottom:0; width:5px; background:linear-gradient(to bottom,var(--gold),var(--gold-dk),var(--gold)) }
.page-hero .container { position:relative; z-index:1 }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(30px,4vw,50px); font-weight:900; color:var(--white); line-height:1.1; margin:14px 0 16px }
.page-hero p { font-size:17px; color:rgba(255,255,255,.65); max-width:620px; line-height:1.75; font-weight:300 }
.page-hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-top:26px }

/* ─── HOME HERO ────────────────────────────────────────── */
.home-hero { background:var(--navy); min-height:calc(90vh - var(--nav-h)); display:flex; align-items:center; position:relative; overflow:hidden }
.home-hero-bg { position:absolute; inset:0; background:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(201,168,76,.04) 40px,rgba(201,168,76,.04) 41px) }
.home-hero-line { position:absolute; left:0; top:0; bottom:0; width:5px; background:linear-gradient(to bottom,var(--gold),var(--gold-dk),var(--gold)) }
.hero-inner { position:relative; z-index:2; width:100%; display:grid; grid-template-columns:1fr 420px; gap:56px; align-items:center }
.hero-logo-wrap { margin-bottom:20px }
.hero-logo-wrap img {
  height:72px; width:auto;
  border-radius:var(--r);
  /* No filter — navy bg logo on navy hero looks perfect */
}
.hero-h1 { font-family:'Playfair Display',serif; font-size:clamp(36px,5.5vw,66px); font-weight:900; color:var(--white); line-height:1.05; margin-bottom:22px; letter-spacing:-.03em }
.hero-h1 em { font-style:normal; color:var(--gold); display:block }
.hero-desc { font-size:18px; color:rgba(255,255,255,.68); line-height:1.75; margin-bottom:32px; font-weight:300; max-width:540px }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.08); border-radius:var(--r); overflow:hidden }
.stat-cell { background:rgba(10,22,40,.7); padding:18px 12px; text-align:center }
.stat-n { font-family:'Playfair Display',serif; font-size:28px; font-weight:900; color:var(--gold); display:block; line-height:1; margin-bottom:3px }
.stat-l { font-size:10px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.1em; font-weight:700 }

/* ─── LEAD CARD ────────────────────────────────────────── */
.lead-card { background:var(--white); border-radius:var(--r); overflow:hidden; box-shadow:0 24px 80px rgba(0,0,0,.5) }
.lc-head { background:var(--navy2); padding:20px 24px; border-bottom:3px solid var(--gold) }
.lc-head h3 { font-family:'Playfair Display',serif; font-size:18px; color:var(--white); margin-bottom:3px }
.lc-head p { font-size:12px; color:rgba(255,255,255,.55) }
.lc-body { padding:22px }
.lc-foot { background:var(--cream); padding:14px 22px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap }
.lc-link { display:flex; align-items:center; gap:5px; font-size:13px; font-weight:700; color:var(--navy); min-height:44px; transition:color .2s }
.lc-link:hover { color:var(--gold-dk) }
.lc-sep { color:var(--gray); font-size:12px; align-self:center }

/* ─── FORMS — iOS-safe 16px inputs ─────────────────────── */
.fg { margin-bottom:13px }
.fl { display:block; font-size:11px; font-weight:700; color:var(--navy); margin-bottom:5px; text-transform:uppercase; letter-spacing:.07em }
/* 16px prevents iOS Safari auto-zoom on focus */
.fi,.fs,.ft,
.wpcf7 input[type=text],.wpcf7 input[type=email],.wpcf7 input[type=tel],.wpcf7 select,.wpcf7 textarea {
  width:100%; padding:11px 13px;
  border:1.5px solid var(--cream2); border-radius:2px;
  font-family:'Source Sans 3',sans-serif;
  font-size:16px; /* 16px = no iOS auto-zoom */
  color:var(--text); background:var(--gray-lt);
  outline:none; transition:border-color .2s;
  -webkit-appearance:none; appearance:none;
}
.fi:focus,.fs:focus,.ft:focus,
.wpcf7 input:focus,.wpcf7 select:focus,.wpcf7 textarea:focus { border-color:var(--gold-dk); background:var(--white) }
.ft { height:90px; resize:vertical }
.fsub,.wpcf7 input[type=submit] {
  width:100%; background:var(--gold); color:var(--navy);
  padding:14px; font-size:16px; font-weight:700; min-height:48px;
  text-transform:uppercase; letter-spacing:.06em;
  border:none; border-radius:2px; cursor:pointer;
  font-family:'Source Sans 3',sans-serif; transition:background .2s;
  -webkit-appearance:none; appearance:none;
}
.fsub:hover,.wpcf7 input[type=submit]:hover { background:var(--gold-dk); color:var(--white) }
.fnote { text-align:center; font-size:12px; color:var(--gray); margin-top:8px }

/* ─── ABOUT ────────────────────────────────────────────── */
.about-grid { display:grid; grid-template-columns:440px 1fr; gap:80px; align-items:start }
.about-img-wrap { position:relative }
.about-img { width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:var(--r); display:block }
.about-img-tag { position:absolute; bottom:22px; left:22px; background:var(--gold); color:var(--navy); padding:9px 16px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; border-radius:2px }
.award-float { position:absolute; top:20px; right:-18px; background:var(--white); border-radius:var(--r); padding:14px; box-shadow:0 8px 32px rgba(0,0,0,.15); display:flex; flex-direction:column; gap:7px; min-width:130px }
.award-chip { font-size:10px; font-weight:700; color:var(--navy); text-align:center; padding:7px 9px; background:var(--cream); border-radius:2px; border-left:3px solid var(--gold); line-height:1.35 }
.about-prose p { font-size:16px; line-height:1.8; margin-bottom:16px; color:var(--text) }
.pillar-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; margin:26px 0 }
.pillar { display:flex; align-items:flex-start; gap:11px; padding:13px; background:var(--cream); border-radius:2px; border-left:3px solid var(--gold) }
.pillar-ico { width:33px; height:33px; background:var(--navy); border-radius:2px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.pillar-ico svg { width:16px; height:16px; color:var(--gold) }
.pillar h4 { font-size:12px; font-weight:700; color:var(--navy); margin-bottom:2px; text-transform:uppercase; letter-spacing:.04em }
.pillar p { font-size:12px; color:var(--gray); line-height:1.4 }

/* ─── PRACTICE CARDS ───────────────────────────────────── */
.practice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px }
.pcard { background:var(--white); border-radius:var(--r); border:1px solid var(--cream2); overflow:hidden; display:block; text-decoration:none; transition:box-shadow .25s, transform .25s }
.pcard:hover { box-shadow:0 14px 44px rgba(10,22,40,.13); transform:translateY(-4px) }
.pcard-bar { height:5px }
.pcard-body { padding:26px }
.pcard-ico { width:44px; height:44px; background:var(--navy); border-radius:var(--r); display:flex; align-items:center; justify-content:center; margin-bottom:16px }
.pcard-ico svg { width:22px; height:22px; color:var(--gold) }
.pcard h3 { font-family:'Playfair Display',serif; font-size:19px; font-weight:700; color:var(--navy); margin-bottom:9px; line-height:1.2 }
.pcard p { font-size:13px; color:var(--gray); line-height:1.6; margin-bottom:16px }
.pcard-cta { font-size:12px; font-weight:700; color:var(--gold-dk); text-transform:uppercase; letter-spacing:.08em; display:flex; align-items:center; gap:5px }
.pcard-cta svg { width:12px; height:12px; transition:transform .2s }
.pcard:hover .pcard-cta svg { transform:translateX(4px) }

/* ─── WHY US ───────────────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center }
.why-list { display:flex; flex-direction:column; gap:28px; margin-top:36px }
.why-item { display:flex; gap:18px; align-items:flex-start }
.why-num { font-family:'Playfair Display',serif; font-size:40px; font-weight:900; color:rgba(201,168,76,.18); line-height:1; flex-shrink:0; width:48px; text-align:right }
.why-item h4 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:5px; text-transform:uppercase; letter-spacing:.04em }
.why-item p { font-size:13px; color:rgba(255,255,255,.55); line-height:1.65 }
.stat-box { background:rgba(255,255,255,.04); border:1px solid rgba(201,168,76,.2); border-radius:var(--r); padding:32px; margin-bottom:16px }
.stat-box-n { font-family:'Playfair Display',serif; font-size:52px; font-weight:900; color:var(--gold); line-height:1; margin-bottom:6px }
.stat-box-l { font-size:14px; color:rgba(255,255,255,.65); font-weight:300 }
.stat-box-sub { font-size:11px; color:rgba(255,255,255,.35); margin-top:4px; font-style:italic }
.mil-badge { background:rgba(201,168,76,.07); border:1px solid rgba(201,168,76,.22); border-radius:var(--r); padding:22px; display:flex; gap:14px; align-items:flex-start }
.mil-badge h4 { font-size:13px; font-weight:700; color:var(--gold); margin-bottom:5px; text-transform:uppercase; letter-spacing:.06em }
.mil-badge p { font-size:13px; color:rgba(255,255,255,.58); line-height:1.6 }

/* ─── PHOTO STRIP ──────────────────────────────────────── */
.photo-strip { display:grid; grid-template-columns:repeat(5,1fr); overflow:hidden; max-height:220px }
.photo-strip img { width:100%; height:220px; object-fit:cover; filter:brightness(.7) saturate(.75); transition:filter .3s }
.photo-strip img:hover { filter:brightness(.9) saturate(1) }

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.tgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px }
.tcard { background:var(--cream); border-radius:var(--r); padding:28px; border-top:4px solid var(--gold) }
.tcard-stars { color:var(--gold); font-size:13px; letter-spacing:2px; margin-bottom:10px }
.tcard-q { font-family:'Playfair Display',serif; font-size:48px; color:var(--gold); line-height:.5; margin-bottom:12px; display:block }
.tcard-text { font-size:14px; line-height:1.78; color:var(--text); font-style:italic; margin-bottom:20px }
.tcard-author { display:flex; align-items:center; gap:10px }
.tcard-init { width:38px; height:38px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:var(--gold); flex-shrink:0 }
.tcard-name { font-size:13px; font-weight:700; color:var(--navy) }
.tcard-role { font-size:11px; color:var(--gray) }

<section class="section bg-navy" id="https://www.youtube.com/watch?v=TQO1NJkG7ps" style="padding:80px 0">
  <div class="container">

    <!-- SECTION HEADER -->
    <div style="text-align:center;margin-bottom:44px">
      <div class="eyebrow lt" style="justify-content:center;margin-bottom:14px">
        Watch Our Story
      </div>
      <h2 class="h-display lt" style="margin-bottom:18px;text-align:center">
        Meet Attorney Jeremy Pichon
      </h2>
      <p style="
        font-size:17px;
        color:rgba(255,255,255,.62);
        line-height:1.75;
        font-weight:300;
        max-width:620px;
        margin:0 auto;
        text-align:center;
      ">
        A Retired Army Major, Top-Rated Super Lawyer, and the attorney who will
        fight for you like it is the only case in the building. Watch Jeremy
        explain why he became a personal injury lawyer and what sets
        Pichon Law Firm apart from every other firm in New Orleans.
      </p>
    </div>

    <!-- VIDEO EMBED BOX -->
    <div style="
      max-width:880px;
      margin:0 auto;
      border-radius:8px;
      overflow:hidden;
      border:3px solid #a07830;
      box-shadow:0 32px 100px rgba(0,0,0,.65);
      position:relative;
    ">
      <!-- 16:9 responsive wrapper -->
      <div style="position:relative;padding-bottom:56.25%;height:0;overflow:hidden">
        <iframe
          src="https://www.youtube.com/embed/YOUR_VIDEO_ID?rel=0&modestbranding=1&color=white&showinfo=0"
          title="New Orleans Car Accident Lawyer Jeremy J. Pichon — Pichon Law Firm"
          style="position:absolute;top:0;left:0;width:100%;height:100%;border:0"
          allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
          allowfullscreen
          loading="lazy">
        </iframe>
      </div>
    </div>

    <!-- CREDENTIAL STRIP BELOW VIDEO -->
    <div style="
      max-width:880px;
      margin:0 auto;
      background:rgba(201,168,76,.08);
      border:1px solid rgba(201,168,76,.22);
      border-top:none;
      border-radius:0 0 8px 8px;
      padding:16px 24px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:32px;
      flex-wrap:wrap;
    ">
      <?php foreach ([
        '⭐ Top-Rated Super Lawyer',
        '💰 $100M+ Recovered',
        '🎖 Retired Army Major — 25 Yrs',
        '⚖️ 150+ Trials Won',
      ] as $item) : ?>
      <div style="
        font-size:12px;
        font-weight:700;
        color:rgba(255,255,255,.75);
        text-transform:uppercase;
        letter-spacing:.06em;
        white-space:nowrap;
        display:flex;
        align-items:center;
        gap:6px;
      "><?php echo esc_html($item); ?></div>
      <?php endforeach; ?>
    </div>

    <!-- CTA BUTTONS BELOW VIDEO -->
    <div style="
      text-align:center;
      margin-top:40px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:16px;
    ">
      <p style="
        color:rgba(255,255,255,.58);
        font-size:16px;
        line-height:1.7;
        max-width:480px;
      ">
        Ready to talk? Your consultation is always free and confidential.
        No fee unless we win.
      </p>
      <div style="display:flex;gap:12px;justify-content:center;flex-wrap:wrap">
        <a href="tel:<?php echo p_phoneraw(); ?>" class="btn-gold">
          ☎ Call <?php echo p_phone(); ?>
        </a>
        <a href="#contact" class="btn-ghost">
          Free Case Review →
        </a>
      </div>
      <p style="font-size:12px;color:rgba(255,255,255,.3);margin-top:4px">
        Available 24 hours a day · 7 days a week · 365 Canal Street, Suite 1490, New Orleans
      </p>
    </div>

  </div>
</section>/* ─── AWARDS ───────────────────────────────────────────── */
.awards-section { background:var(--navy2); padding:52px 0; text-align:center }
.awards-lbl { font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:26px }
.awards-row { display:flex; flex-wrap:wrap; justify-content:center; gap:9px }
.award-pill { background:rgba(255,255,255,.05); border:1px solid rgba(201,168,76,.2); border-radius:2px; padding:10px 18px; font-size:12px; font-weight:600; color:rgba(255,255,255,.75); letter-spacing:.03em; display:flex; align-items:center; gap:6px }

/* ─── SERVICE AREAS ────────────────────────────────────── */
.chip-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:9px; margin-top:28px }
.chip { background:var(--white); border:1px solid var(--cream2); border-left:3px solid var(--gold); border-radius:2px; padding:12px 14px; font-size:13px; font-weight:600; color:var(--navy); text-align:center }
.roads-note { margin-top:24px; padding:20px 24px; background:var(--white); border-radius:var(--r); border-left:4px solid var(--gold); font-size:14px; color:var(--text); line-height:1.75 }

/* ─── FAQ — with aria-expanded support ─────────────────── */
.faq-layout { display:grid; grid-template-columns:340px 1fr; gap:70px; align-items:start }
.faq-item { border-bottom:1px solid var(--cream2) }
.faq-q {
  width:100%; background:none; border:none;
  padding:18px 0; min-height:48px;
  display:flex; justify-content:space-between; align-items:flex-start;
  cursor:pointer; font-family:'Source Sans 3',sans-serif;
  font-size:15px; font-weight:700; color:var(--navy);
  text-align:left; gap:14px; transition:color .2s;
}
.faq-q:hover { color:var(--gold-dk) }
.faq-chev { width:18px; height:18px; flex-shrink:0; color:var(--gold-dk); transition:transform .3s; margin-top:2px }
.faq-chev.open { transform:rotate(180deg) }
.faq-a { font-size:14px; color:var(--text); line-height:1.78; padding:0 0 18px; display:none }
.faq-a.open { display:block }
.faq-a a { color:var(--gold-dk); text-decoration:underline }
.faq-cta-box { background:var(--navy); border-radius:var(--r); padding:32px; position:sticky; top:calc(var(--nav-h) + 20px) }
.faq-cta-box h3 { font-family:'Playfair Display',serif; font-size:20px; color:var(--white); margin-bottom:10px }
.faq-cta-box p { font-size:13px; color:rgba(255,255,255,.58); line-height:1.6; margin-bottom:20px }
.faq-phone { display:flex; align-items:center; gap:8px; background:var(--gold); color:var(--navy); padding:13px 18px; min-height:48px; border-radius:2px; font-size:17px; font-weight:700; margin-bottom:8px; transition:background .2s }
.faq-phone:hover { background:var(--gold-lt) }
.faq-sms { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.07); color:var(--white); padding:11px 18px; min-height:44px; border-radius:2px; font-size:15px; font-weight:600; transition:background .2s }
.faq-sms:hover { background:rgba(255,255,255,.13) }

/* ─── CONTACT ──────────────────────────────────────────── */
.contact-layout { display:grid; grid-template-columns:1fr 420px; gap:70px; align-items:start }
.ci { display:flex; gap:14px; align-items:flex-start; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,.07) }
.ci:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0 }
.ci-ico { width:44px; height:44px; background:rgba(201,168,76,.12); border:1px solid rgba(201,168,76,.25); border-radius:2px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:18px }
.ci-lbl { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.4); margin-bottom:3px }
.ci-val { font-size:16px; font-weight:700; color:var(--white) }
.ci-val a { color:var(--gold); transition:color .2s }
.ci-val a:hover { color:var(--gold-lt) }
.ci-sub { font-size:12px; color:rgba(255,255,255,.42); margin-top:2px }
.cform { background:var(--white); border-radius:var(--r); overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.35) }
.cform-hd { background:var(--gold); padding:18px 26px }
.cform-hd h3 { font-family:'Playfair Display',serif; font-size:19px; color:var(--navy); font-weight:900 }
.cform-hd p { font-size:12px; color:rgba(10,22,40,.65) }
.cform-body { padding:26px }

/* ─── SIDEBAR ──────────────────────────────────────────── */
.with-sidebar { display:grid; grid-template-columns:1fr 300px; gap:48px; align-items:start }
.sidebar { position:sticky; top:calc(var(--nav-h) + 20px) }
.sb-cta { background:var(--navy); border-radius:var(--r); padding:26px; margin-bottom:18px }
.sb-cta h3 { font-family:'Playfair Display',serif; font-size:18px; color:var(--white); margin-bottom:8px }
.sb-cta p { font-size:13px; color:rgba(255,255,255,.58); margin-bottom:16px; line-height:1.6 }
.sb-cta .ph { display:flex; align-items:center; justify-content:center; background:var(--gold); color:var(--navy); padding:12px; min-height:44px; text-align:center; border-radius:2px; font-size:15px; font-weight:700; margin-bottom:7px; transition:background .2s }
.sb-cta .ph:hover { background:var(--gold-lt) }
.sb-cta .sm { display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.07); color:var(--white); padding:10px; min-height:44px; text-align:center; border-radius:2px; font-size:14px; font-weight:600; transition:background .2s }
.sb-cta .sm:hover { background:rgba(255,255,255,.12) }
.sb-links { background:var(--cream); border-radius:var(--r); padding:20px; border-left:4px solid var(--gold); margin-bottom:16px }
.sb-links h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--navy); margin-bottom:12px }
.sb-links a { display:flex; align-items:center; min-height:44px; font-size:13px; color:var(--navy); padding:6px 0; border-bottom:1px solid var(--cream2); transition:color .2s }
.sb-links a:hover { color:var(--gold-dk) }
.sb-links a:last-child { border-bottom:none }
.sb-resources { background:var(--navy); border-radius:var(--r); padding:18px }
.sb-resources h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); margin-bottom:12px }
.sb-resources a { display:flex; align-items:center; min-height:44px; font-size:12px; color:rgba(255,255,255,.68); padding:5px 0; border-bottom:1px solid rgba(255,255,255,.06); transition:color .2s }
.sb-resources a:hover { color:var(--gold-lt) }
.sb-resources a:last-child { border-bottom:none }

/* ─── PROSE ────────────────────────────────────────────── */
.prose h2 { font-family:'Playfair Display',serif; font-size:clamp(22px,3vw,32px); color:var(--navy); margin:32px 0 14px; line-height:1.2 }
.prose h3 { font-size:19px; font-weight:700; color:var(--navy); margin:22px 0 10px }
.prose p { font-size:15px; line-height:1.82; margin-bottom:16px; color:var(--text) }
.prose ul,.prose ol { margin:12px 0 16px 22px }
.prose li { font-size:15px; line-height:1.75; margin-bottom:7px }
.prose strong { color:var(--navy); font-weight:700 }
.prose a { color:var(--gold-dk); text-decoration:underline; transition:color .2s }
.prose a:hover { color:var(--gold) }
.prose img { border-radius:var(--r); margin:8px 0 24px }
.callout { background:var(--navy); border-radius:var(--r); padding:28px; margin:26px 0 }
.callout h3 { font-family:'Playfair Display',serif; font-size:19px; color:var(--gold); margin-bottom:8px }
.callout p { font-size:13px; color:rgba(255,255,255,.62); line-height:1.65; margin-bottom:16px }
.law-box { background:rgba(201,168,76,.07); border:1px solid rgba(201,168,76,.28); border-radius:var(--r); padding:20px 24px; margin:22px 0 }
.law-box h4 { font-size:13px; font-weight:700; color:var(--gold-dk); text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px }
.law-box p { font-size:14px; color:var(--text); line-height:1.75; margin:0 }
.outbound-box { background:var(--cream); border-radius:var(--r); padding:18px 20px; margin:20px 0; border-left:3px solid var(--gold-dk) }
.outbound-box h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--navy); margin-bottom:10px }
.outbound-box a { display:inline-flex; align-items:center; gap:5px; font-size:13px; color:var(--gold-dk); text-decoration:none; font-weight:600; margin:3px 8px 3px 0; min-height:44px; transition:color .2s }
.outbound-box a:hover { color:var(--navy) }
.outbound-box a::after { content:'↗'; font-size:11px }

/* ─── GALLERY ──────────────────────────────────────────── */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px }
.gallery-grid img { border-radius:var(--r); aspect-ratio:4/3; object-fit:cover; width:100% }

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer { background:var(--navy3); padding:56px 0 24px; border-top:3px solid var(--gold-dk) }
.footer-logo-wrap { display:inline-block; margin-bottom:14px }
.footer-logo-wrap img {
  height:60px; width:auto;
  border-radius:2px;
  /* logo has dark navy bg — blends seamlessly on dark footer */
}
.footer-grid { display:grid; grid-template-columns:260px 1fr 1fr 1fr; gap:44px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:22px }
.footer-tag { font-size:12px; color:rgba(255,255,255,.4); margin-bottom:16px; line-height:1.65 }
.footer-contacts a { display:block; color:var(--gold); font-size:13px; font-weight:700; margin-bottom:5px; transition:color .2s }
.footer-contacts a:hover { color:var(--gold-lt) }
.footer-col h4 { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.15em; color:rgba(255,255,255,.35); margin-bottom:14px }
.footer-col a { display:flex; align-items:center; min-height:40px; color:rgba(255,255,255,.62); font-size:13px; margin-bottom:2px; transition:color .2s }
.footer-col a:hover { color:var(--gold) }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:11px; color:rgba(255,255,255,.28); flex-wrap:wrap; gap:8px }
.footer-disclaimer { font-size:10px; color:rgba(255,255,255,.22); line-height:1.65; border-top:1px solid rgba(255,255,255,.05); padding-top:16px; margin-top:16px }

/* ─── MOBILE STICKY BAR ────────────────────────────────── */
.mobile-bar { display:none; position:fixed; bottom:0; left:0; right:0; background:var(--navy); border-top:2px solid var(--gold); padding:10px 16px; z-index:2000; gap:8px }
.mobile-bar a { flex:1; display:flex; align-items:center; justify-content:center; min-height:44px; border-radius:2px; font-size:14px; font-weight:700; text-decoration:none; text-transform:uppercase; letter-spacing:.04em }
.mb-call { background:var(--gold); color:var(--navy) }
.mb-sms  { background:rgba(255,255,255,.08); color:var(--white); border:1px solid rgba(255,255,255,.18) }

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:translateY(0) } }
.fu  { animation:fadeUp .65s ease both }
.d1  { animation-delay:.1s } .d2 { animation-delay:.2s } .d3 { animation-delay:.3s } .d4 { animation-delay:.4s }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media(max-width:1024px) {
  .about-grid { grid-template-columns:1fr; gap:40px } .award-float { display:none }
  .why-grid { grid-template-columns:1fr; gap:40px } .contact-layout { grid-template-columns:1fr }
  .hero-inner { grid-template-columns:1fr } .lead-card { display:none }
  .footer-grid { grid-template-columns:1fr 1fr } .practice-grid { grid-template-columns:1fr 1fr }
  .with-sidebar { grid-template-columns:1fr } .sidebar { position:static }
  .faq-layout { grid-template-columns:1fr } .faq-cta-box { position:static; margin-bottom:32px }
  .tgrid { grid-template-columns:1fr } .chip-grid { grid-template-columns:1fr 1fr }
}
@media(max-width:900px) {
  :root { --nav-h:62px }
  #site-nav { padding:0 16px }
  .nav-logo img { height:48px }
  #primary-nav {
    display:none; position:fixed;
    top:var(--nav-h); left:0; right:0; bottom:0;
    background:var(--navy3); flex-direction:column;
    align-items:flex-start; padding:8px 0;
    overflow-y:auto; z-index:999;
    -webkit-overflow-scrolling:touch;
  }
  #primary-nav.open { display:flex }
  #primary-nav > li { width:100% }
  #primary-nav > li > a {
    height:auto; min-height:52px; line-height:normal;
    padding:14px 20px; border-bottom:1px solid rgba(255,255,255,.06);
    border-left:none; width:100%;
  }
  #primary-nav .sub-menu {
    position:static; opacity:1; visibility:visible;
    transform:none; box-shadow:none; border-top:none;
    background:rgba(255,255,255,.04); border-radius:0;
  }
  #primary-nav .sub-menu li a { padding:12px 36px; min-height:48px }
  #nav-toggle { display:flex } .nav-call { display:none !important }
  .section { padding:60px 0 } .section-sm { padding:44px 0 }
  .container { padding:0 20px }
  .trust-bar { padding:12px 20px; gap:12px } .trust-sep { display:none }
  .page-hero { padding:56px 0 44px }
  .hero-btns { flex-direction:column }
  .hero-logo-wrap img { height:56px }
  .hero-stats { grid-template-columns:1fr }
  .photo-strip { grid-template-columns:repeat(3,1fr) }
  .photo-strip img:nth-child(4),.photo-strip img:nth-child(5) { display:none }
  .gallery-grid { grid-template-columns:1fr 1fr }
  .mobile-bar { display:flex }
  body { padding-bottom:66px }
  .awards-row { gap:7px }
  .footer-logo-wrap img { height:48px }
}
@media(max-width:600px) {
  .hero-h1 { font-size:34px }
  .practice-grid { grid-template-columns:1fr }
  .footer-grid { grid-template-columns:1fr }
  .chip-grid { grid-template-columns:1fr 1fr }
  .pillar-grid { grid-template-columns:1fr }
  .tgrid { grid-template-columns:1fr }
  .gallery-grid { grid-template-columns:1fr }
  .photo-strip { grid-template-columns:repeat(2,1fr) }
  .hero-logo-wrap img { height:48px }
}
@media(max-width:380px) {
  .container { padding:0 16px }
  .trust-item { font-size:11px }
}