
  /* ── TOKENS ── */
  :root {
    --navy:        #122B55;
    --navy-deep:   #08172E;
    --navy-mid:    #1A3D61;
    --gold:        #C8A84B;
    --gold-light:  #DFC27A;
    --gold-pale:   #F9F3E3;
    --cream:       #FAFAF7;
    --slate:       #4A5568;
    --slate-light: #718096;
    --rule:        #E2E8F0;
    --white:       #FFFFFF;
    --serif:       'Cormorant Garamond', Georgia, serif;
    --sans:        'Jost', system-ui, sans-serif;
    --nav-h:       68px;
  }

  /* ── RESET ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--navy-deep); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  /* ── UTILITY ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  .gold-rule { width: 48px; height: 3px; background: var(--gold); margin: 0 auto 28px; display: block; }
  .gold-rule.left { margin-left: 0; }
  .section-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy-deep);
    font-family: var(--sans); font-weight: 600; font-size: 13px;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 14px 30px; border: 2px solid var(--gold);
    cursor: pointer; transition: all .25s ease;
  }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,.35); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    font-family: var(--sans); font-weight: 600; font-size: 13px;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 14px 30px; border: 2px solid rgba(255,255,255,.55);
    cursor: pointer; transition: all .25s ease;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    font-family: var(--sans); font-weight: 600; font-size: 13px;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 14px 30px; border: 2px solid var(--navy);
    cursor: pointer; transition: all .25s ease;
  }
  .btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy-deep);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .04em;
    color: rgba(255,255,255,.7);
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
  .topbar a { color: rgba(255,255,255,.7); transition: color .2s; }
  .topbar a:hover { color: var(--gold); }
  .topbar-right { display: flex; gap: 24px; align-items: center; }
  .topbar-phone {
    color: var(--gold-light) !important;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .02em;
    line-height: 1;
    padding: 4px 0;
  }
  .topbar-phone:hover { color: var(--white) !important; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(200,168,75,.2);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
    height: var(--nav-h);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
  .logo-lockup { display: flex; align-items: center; }
  .logo-img {
    height: 52px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .logo-firm { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--navy); line-height: 1.1; }
  .logo-tag { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
  .nav-links { display: flex; align-items: center; gap: 2px; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: block; padding: 10px 14px;
    font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: .04em;
    color: rgba(255,255,255,.88); transition: color .2s;
  }
  .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
  .nav-links > li > a::after {
    content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
    height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease;
  }
  .nav-links > li > a:hover::after { transform: scaleX(1); }
  .dropdown { position: relative; }
  .dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--navy-deep); min-width: 240px;
    border: 1px solid var(--rule); border-top: 3px solid var(--gold);
    box-shadow: 0 12px 40px rgba(15,35,69,.14);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: all .22s ease; z-index: 200;
  }
  .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-menu li a {
    display: block; padding: 10px 18px;
    font-size: 13px; font-weight: 400; color: var(--slate);
    border-bottom: 1px solid var(--rule);
    transition: background .15s, color .15s, padding-left .15s;
  }
  .dropdown-menu li:last-child a { border-bottom: none; }
  .dropdown-menu li a:hover { background: var(--gold-pale); color: var(--navy); padding-left: 24px; }
  .nav-cta { margin-left: 16px; }

  /* ── HERO ── */
  .hero {
    position: relative; overflow: hidden;
    background: var(--navy-deep);
    min-height: 88vh;
    display: flex; align-items: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(11,25,50,.97) 0%, rgba(27,58,107,.88) 55%, rgba(15,35,69,.92) 100%);
  }
  /* Subtle geometric texture */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,168,75,.04) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(200,168,75,.04) 80px);
  }
  .hero-bg::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    background: linear-gradient(90deg, transparent, rgba(200,168,75,.06));
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
    animation: heroFadeIn .9s ease both;
  }
  @keyframes heroFadeIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
  .hero-eyebrow {
    font-family: var(--sans); font-size: 11px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  }
  .hero-eyebrow::before { content:''; width:32px; height:2px; background:var(--gold); flex-shrink:0; }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(44px, 6vw, 76px);
    font-weight: 600; line-height: 1.05; color: var(--white);
    margin-bottom: 24px; letter-spacing: -.01em;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 17px; font-weight: 300; color: rgba(255,255,255,.75);
    max-width: 520px; margin-bottom: 40px; line-height: 1.75;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
  .hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
  }
  .hero-stat-num {
    font-family: var(--serif); font-size: 38px; font-weight: 700;
    color: var(--gold); line-height: 1; display: block;
  }
  .hero-stat-label { font-size: 12px; font-weight: 400; letter-spacing: .06em; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }

  /* Award Banner */
  .award-bar {
    background: var(--gold);
    padding: 14px 0;
    text-align: center;
  }
  .award-bar p {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: var(--navy-deep);
  }
  .award-bar span { color: var(--navy); font-weight: 700; }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--cream); border-bottom: 1px solid var(--rule);
    padding: 36px 0;
  }
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .trust-item {
    padding: 20px 28px; text-align: center;
    border-right: 1px solid var(--rule);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 24px; margin-bottom: 10px; }
  .trust-item strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--navy); }
  .trust-item span { font-size: 12px; color: var(--slate-light); letter-spacing: .03em; }

  /* ── ABOUT ── */
  .about { padding: 100px 0; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-text h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 600; line-height: 1.15; color: var(--navy-deep); margin-bottom: 24px; }
  .about-text p { font-size: 15.5px; color: var(--slate); line-height: 1.85; margin-bottom: 18px; }
  .about-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
  .about-card {
    background: var(--navy-deep); color: var(--white);
    padding: 48px 40px; position: relative; overflow: hidden;
  }
  .about-card::before {
    content: '"'; font-family: var(--serif); font-size: 180px; line-height: 1;
    color: rgba(200,168,75,.12); position: absolute; top: -20px; left: 20px;
    font-weight: 700;
  }
  .about-card blockquote {
    font-family: var(--serif); font-size: 22px; font-style: italic;
    line-height: 1.65; color: rgba(255,255,255,.9); margin-bottom: 24px;
    position: relative;
  }
  .about-card cite { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-style: normal; }
  .about-card-facts { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .fact-row { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .fact-row:first-child { border-top: none; }
  .fact-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold); flex-shrink: 0; min-width: 60px; }
  .fact-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

  /* ── SERVICES ── */
  .services { padding: 100px 0; background: var(--cream); }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-header h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: var(--navy-deep); margin-bottom: 16px; }
  .section-header p { font-size: 16px; color: var(--slate); max-width: 560px; margin: 0 auto; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card {
    background: var(--white);
    padding: 36px 32px;
    transition: all .25s ease;
    border-bottom: 3px solid transparent;
    position: relative; cursor: pointer;
  }
  .service-card:hover { border-bottom-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(15,35,69,.1); z-index: 1; }
  .service-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 20px; transition: background .25s;
  }
  .service-card:hover .service-icon { background: var(--gold); }
  .service-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
  .service-card p { font-size: 13.5px; color: var(--slate); line-height: 1.75; }
  .service-card .learn-more {
    margin-top: 18px; font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 6px;
    opacity: 0; transform: translateX(-4px); transition: all .25s;
  }
  .service-card:hover .learn-more { opacity: 1; transform: translateX(0); }

  /* ── ATTORNEYS ── */
  .attorneys { padding: 100px 0; }
  .attorneys-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
  .attorney-card {
    display: flex; gap: 28px; padding: 36px;
    border: 1px solid var(--rule); transition: all .25s ease;
  }
  .attorney-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(15,35,69,.08); }
  .attorney-avatar {
    width: 130px; height: 130px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--gold);
    border: 4px solid var(--gold-pale);
    overflow: hidden;
    align-self: flex-start;
  }
  .attorney-avatar img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    border-radius: 50%;
    transform: scale(1.15);
    transform-origin: center 8%;
  }
  .attorney-info h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .attorney-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
  .attorney-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
  .area-tag {
    font-size: 11px; font-weight: 500; letter-spacing: .04em;
    padding: 3px 10px; background: var(--cream); color: var(--navy);
    border: 1px solid var(--rule);
  }
  .attorney-cred { font-size: 13px; color: var(--slate); line-height: 1.6; }
  .attorney-bio-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px; font-size: 12px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold); cursor: pointer; border: none;
    background: none; padding: 0; font-family: var(--sans);
    transition: color .2s;
  }
  .attorney-bio-toggle:hover { color: var(--navy); }
  .attorney-bio-toggle .toggle-arrow {
    display: inline-block; transition: transform .3s ease;
    font-style: normal; font-size: 10px;
  }
  .attorney-card.bio-open .toggle-arrow { transform: rotate(180deg); }
  .attorney-info {
    flex: 1; min-width: 0; overflow: visible;
  }
  .attorney-bio-full {
    max-height: 0; overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0;
  }
  .attorney-card.bio-open .attorney-bio-full {
    max-height: 4000px;
    overflow: visible;
    opacity: 1;
    padding: 14px 0 4px;
  }
  .bio-section {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    border-left: 2px solid var(--gold);
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
  }
  .bio-section strong {
    display: block;
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    font-family: var(--sans);
  }
  /* Override base .area-tag inside bio panel — base uses cream/navy which is wrong here */
  .attorney-bio-full .area-tag {
    background: rgba(200,168,75,0.15) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(200,168,75,0.35) !important;
    font-size: 11.5px !important;
    padding: 4px 10px !important;
    border-radius: 3px !important;
    font-family: var(--sans) !important;
    letter-spacing: 0.03em !important;
    white-space: nowrap;
  }
  .bio-section strong {
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .attorney-card.bio-open .attorney-bio-full {
    max-height: 600px; opacity: 1;
  }
  .attorney-bio-full p {
    font-size: 14px; color: var(--slate); line-height: 1.8;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--rule);
  }

  /* ── COUNTIES ── */
  .counties { padding: 80px 0; background: var(--navy-deep); }
  .counties .section-label { color: var(--gold); }
  .counties h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 44px); font-weight: 600; color: var(--white); margin-bottom: 16px; }
  .counties-sub { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 48px; }
  .counties-inner { display: flex; gap: 80px; align-items: flex-start; }
  .counties-left { flex: 1; }
  .county-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid rgba(255,255,255,.1); }
  .county-item {
    padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
    display: flex; align-items: center; gap: 10px; transition: background .2s;
  }
  .county-item:nth-child(even) { border-right: none; }
  .county-item:nth-last-child(-n+2) { border-bottom: none; }
  .county-item:hover { background: rgba(200,168,75,.08); color: var(--gold-light); }
  .county-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .counties-right { width: 340px; }
  .consult-box {
    background: rgba(255,255,255,.04); border: 1px solid rgba(200,168,75,.3);
    padding: 36px; text-align: center;
  }
  .consult-box h3 { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 8px; }
  .consult-box p { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 6px; line-height: 1.6; }
  .consult-fee { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--gold); display: block; margin: 20px 0 6px; }
  .consult-fee-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 28px; }

  /* ── FAQ ── */
  .faq { padding: 100px 0; background: var(--cream); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .faq-intro h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 44px); font-weight: 600; color: var(--navy-deep); margin-bottom: 20px; }
  .faq-intro p { font-size: 15.5px; color: var(--slate); line-height: 1.8; margin-bottom: 28px; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { border-bottom: 1px solid var(--rule); }
  .faq-q {
    padding: 20px 0; display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; cursor: pointer; font-weight: 500; font-size: 15px; color: var(--navy);
    transition: color .2s;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-q svg { flex-shrink: 0; transition: transform .25s; margin-top: 3px; }
  .faq-a { font-size: 14px; color: var(--slate); line-height: 1.8; padding-bottom: 18px; display: none; }
  .faq-item.open .faq-q { color: var(--gold); }
  .faq-item.open .faq-q svg { transform: rotate(45deg); }
  .faq-item.open .faq-a { display: block; }

  /* ── CTA BANNER ── */
  .cta-banner { padding: 90px 0; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 39px, rgba(200,168,75,.03) 40px);
  }
  .cta-banner .container { position: relative; }
  .cta-banner h2 { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 600; color: var(--white); margin-bottom: 16px; }
  .cta-banner p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-phone { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--gold); display: block; margin-bottom: 8px; }
  .cta-phone-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }

  /* ── FOOTER ── */
  footer { background: #080F1D; color: rgba(255,255,255,.6); padding: 64px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand .logo-firm { color: var(--white); margin-bottom: 6px; }
  .footer-brand .logo-tag { display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.8; margin-top: 16px; color: rgba(255,255,255,.45); }
  .footer-col h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-address { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.5); }
  .footer-phone-link { color: var(--gold-light) !important; font-weight: 600; font-size: 15px !important; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
  .disclaimer { font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.7; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-right: 1px solid var(--rule); }
    .about-grid, .faq-grid, .attorneys-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .counties-inner { flex-direction: column; }
    .counties-right { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; }
    .topbar .container { justify-content: center; }
    .topbar-left { display: none; }
  }
  @media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .county-list { grid-template-columns: 1fr; }
    .county-item { border-right: none !important; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .attorney-card { flex-direction: column; align-items: center; text-align: center; }
    .attorney-avatar { width: 110px !important; height: 110px !important; }
    .attorney-areas { justify-content: center; }
    .bio-area-tags { justify-content: center; }
  }

  /* ── FONT AWESOME ICON SIZING ── */
  .service-icon i, .trust-icon i { font-size: 20px; color: var(--navy); }
  .service-card:hover .service-icon i { color: var(--navy-deep); }
  .trust-icon i { font-size: 22px; color: var(--gold); }
  .award-bar i { margin-right: 6px; }
  .topbar-phone i { margin-right: 4px; }
  .topbar-client-login {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gold); color: #fff !important;
    padding: 4px 11px; border-radius: 3px;
    font-size: 12px; font-weight: 600; letter-spacing: .04em;
    text-decoration: none !important;
    transition: background .2s, opacity .2s;
  }
  .topbar-client-login:hover { background: var(--gold-light); opacity: 1 !important; }
  .topbar-client-login i { font-size: 11px; }

  .bio-section-areas strong {
    display: block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .bio-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
    overflow: visible;
  }
  .bio-section-areas {
    background: rgba(200,168,75,0.08);
    border-left-color: var(--gold);
    padding: 12px 14px 14px;
  }
  .bio-section-areas strong {
    margin-bottom: 8px;
  }
  .bio-area-tag {
    background: rgba(200, 168, 75, 0.15) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(200, 168, 75, 0.35) !important;
    font-size: 11.5px !important;
    padding: 4px 10px !important;
    border-radius: 3px !important;
    font-family: var(--sans) !important;
    letter-spacing: 0.03em;
  }
  /* ── SERVICE CARD EXPANDED DETAIL ── */
  .service-detail {
    max-height: 0; overflow: hidden;
    transition: max-height .45s ease, opacity .3s ease, padding .3s ease;
    opacity: 0; padding: 0;
  }
  .service-card.detail-open .service-detail {
    max-height: 1600px; opacity: 1; padding: 18px 0 4px;
  }
  .service-detail p {
    font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.82);
    margin-bottom: 10px;
  }
  .service-detail-section {
    margin-bottom: 12px;
  }
  .service-detail-label {
    font-family: var(--sans); font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--gold); margin-bottom: 6px;
  }
  .service-detail ul {
    margin: 0; padding: 0 0 0 16px; list-style: disc;
  }
  .service-detail ul li {
    font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.78);
    margin-bottom: 3px; padding-left: 4px;
  }
  .service-detail ul li::marker { color: var(--gold); }
  .service-detail-note {
    font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.72);
    border-left: 2px solid var(--gold);
    padding: 8px 12px;
    background: rgba(255,255,255,.05);
    border-radius: 0 3px 3px 0;
    margin-top: 10px;
  }
  .service-detail-note strong { color: var(--gold-light); }
  .learn-more-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--sans); font-size: 12.5px; font-weight: 600;
    color: var(--gold); letter-spacing: .04em;
    background: none; border: none; cursor: pointer; padding: 0;
    transition: color .2s;
    margin-top: 6px;
  }
  .learn-more-btn:hover { color: var(--gold-light); }
  .learn-more-btn .btn-arrow { transition: transform .25s; display: inline-block; }
  .service-card.detail-open .learn-more-btn .btn-arrow { transform: rotate(180deg); }
  /* ── CONTACT FORM BOX ── */
  .contact-form-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    padding: 36px;
  }
  .contact-form-label {
    font-size: 13px; color: rgba(255,255,255,.5);
    letter-spacing: .1em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 20px;
  }
  .contact-form-disclaimer {
    font-size: 11px; color: rgba(255,255,255,.3);
    margin-top: 14px; line-height: 1.6;
  }
  .wpforms-wrap {
    margin: 0;
  }

  /* ── WPFORMS OVERRIDE — matches FJT navy/gold design ── */
  /* Labels */
  .wpforms-wrap .wpforms-field-label {
    font-family: var(--sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.55) !important;
    margin-bottom: 6px !important;
  }
  /* All inputs, selects, textareas */
  .wpforms-wrap input[type="text"],
  .wpforms-wrap input[type="email"],
  .wpforms-wrap input[type="tel"],
  .wpforms-wrap input[type="number"],
  .wpforms-wrap input[type="url"],
  .wpforms-wrap select,
  .wpforms-wrap textarea {
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 3px !important;
    color: rgba(255,255,255,.9) !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    padding: 13px 16px !important;
    width: 100% !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
  /* Focus state — gold border */
  .wpforms-wrap input[type="text"]:focus,
  .wpforms-wrap input[type="email"]:focus,
  .wpforms-wrap input[type="tel"]:focus,
  .wpforms-wrap select:focus,
  .wpforms-wrap textarea:focus {
    border-color: var(--gold) !important;
    background: rgba(255,255,255,.1) !important;
  }
  /* Select arrow color */
  .wpforms-wrap select {
    color: rgba(255,255,255,.7) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A84B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
  }
  /* Textarea */
  .wpforms-wrap textarea {
    resize: vertical !important;
    min-height: 90px !important;
  }
  /* Field containers */
  .wpforms-wrap .wpforms-field {
    margin-bottom: 12px !important;
    padding: 0 !important;
  }
  /* Submit button — gold pill matching site style */
  .wpforms-wrap .wpforms-submit,
  .wpforms-wrap button[type="submit"] {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    color: var(--navy-deep) !important;
    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 14px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
    margin-top: 4px !important;
    transition: opacity .2s !important;
  }
  .wpforms-wrap .wpforms-submit:hover,
  .wpforms-wrap button[type="submit"]:hover {
    opacity: .88 !important;
  }
  /* Submit container */
  .wpforms-wrap .wpforms-submit-container {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }
  /* Error messages */
  .wpforms-wrap label.wpforms-error {
    color: #f87171 !important;
    font-size: 11.5px !important;
    font-family: var(--sans) !important;
    margin-top: 4px !important;
  }
  /* Confirmation message */
  .wpforms-wrap .wpforms-confirmation-container-full {
    background: rgba(200,168,75,.15) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 4px !important;
    color: var(--gold-light) !important;
    font-family: var(--sans) !important;
    padding: 16px 20px !important;
    font-size: 14px !important;
  }
  /* Placeholder text */
  .wpforms-wrap input::placeholder,
  .wpforms-wrap textarea::placeholder {
    color: rgba(255,255,255,.35) !important;
  }
  /* Remove WPForms default styles */
  .wpforms-wrap .wpforms-form {
    margin: 0 !important;
  }
  


    /* Location section responsive */
  @media (max-width: 768px) {
    section [style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    section [style*="grid-template-columns:repeat(3,1fr)"] {
      grid-template-columns: 1fr !important;
    }
    section [style*="grid-template-columns:repeat(3,1fr)"] > div {
      border-right: none !important;
      border-bottom: 1px solid var(--rule);
    }
  }



  /* ── ABOUT SECTION — TEAM PHOTO ── */
  .about-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about-team-photo-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .about-team-photo {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 320px;
    object-position: center top;
  }
  .about-team-caption {
    background: var(--navy-deep);
    color: rgba(255,255,255,.65);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .06em;
    padding: 10px 16px;
    text-align: center;
  }
  .about-team-caption i {
    color: var(--gold);
  }
  @media (max-width: 900px) {
    .about-team-photo { max-height: 260px; }
  }

  /* ── LOCATION SECTION ── */
  .location-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    overflow: hidden;
  }
  .location-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--rule);
    border-top: none;
    margin-top: 0;
  }
  .location-info-cell {
    padding: 24px 28px;
    border-right: 1px solid var(--rule);
  }
  .location-info-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px !important;
  }
  .location-info-val {
    font-size: 14px;
    color: var(--navy) !important;
    line-height: 1.8;
    margin: 0 !important;
  }
  @media (max-width: 768px) {
    .location-map-grid { grid-template-columns: 1fr; }
    .location-info-strip { grid-template-columns: 1fr; }
    .location-info-cell { border-right: none; border-bottom: 1px solid var(--rule); }
    .location-info-cell:last-child { border-bottom: none; }
  }

  /* Force all sections visible for static file preview */
    .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
      opacity: 1 !important;
      transform: none !important;
      visibility: visible !important;
    }
  
  /* ── FONT AWESOME ICON SIZING ── */
  .service-icon i, .trust-icon i { font-size: 20px; color: var(--navy); }
  .service-card:hover .service-icon i { color: var(--navy-deep); }
  .trust-icon i { font-size: 22px; color: var(--gold); }
  .award-bar i { margin-right: 6px; }
  .topbar-phone i { margin-right: 4px; }
  .topbar-client-login {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gold); color: #fff !important;
    padding: 4px 11px; border-radius: 3px;
    font-size: 12px; font-weight: 600; letter-spacing: .04em;
    text-decoration: none !important;
    transition: background .2s, opacity .2s;
  }
  .topbar-client-login:hover { background: var(--gold-light); opacity: 1 !important; }
  .topbar-client-login i { font-size: 11px; }

  