  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Georgia', serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== COLOR PALETTE ===== */
  :root {
    --navy: #0f1f3d;
    --navy-mid: #1a3260;
    --navy-light: #2a4a8a;
    --gold: #c9963a;
    --gold-light: #e8b86d;
    --cream: #faf8f4;
    --gray-light: #f5f5f0;
    --gray-mid: #e8e4dc;
    --gray-text: #5a5a6a;
    --white: #ffffff;
    --red-accent: #8b1a1a;
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 2rem;
  }
  .nav-brand .firm-name {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    font-family: 'Georgia', serif;
    white-space: nowrap;
  }
  .nav-brand .firm-tag {
    color: var(--gold-light);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }
  .nav-links a {
    display: block;
    padding: 0 0.85rem;
    height: 68px;
    line-height: 68px;
    white-space: nowrap;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold-light);
    background: rgba(255,255,255,0.05);
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: bold !important;
    padding: 0 1.2rem !important;
    border-radius: 0 !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ===== PAGES ===== */
  .page { display: none; padding-top: 68px; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(201,150,58,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
  }
  .hero h1 {
    font-size: 3.4rem;
    color: var(--white);
    line-height: 1.15;
    font-weight: normal;
    max-width: 760px;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin-bottom: 2.5rem;
    font-family: Arial, sans-serif;
    line-height: 1.7;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.05); }
  .hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .hero-stat {
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
  }
  .hero-stat .num {
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .hero-stat .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: Arial, sans-serif;
  }

  /* ===== SECTIONS ===== */
  .section { padding: 5rem 2rem; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-light { background: var(--white); }
  .section-cream { background: var(--cream); }
  .section-navy { background: var(--navy); color: var(--white); }
  .section-gray { background: var(--gray-light); }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: normal;
  }
  .section-navy .section-title { color: var(--white); }
  .section-intro {
    font-size: 1.05rem;
    color: var(--gray-text);
    max-width: 680px;
    margin-bottom: 3rem;
    font-family: Arial, sans-serif;
    line-height: 1.75;
  }
  .section-navy .section-intro { color: rgba(255,255,255,0.72); }
  hr.divider {
    border: none;
    border-top: 3px solid var(--gold);
    width: 48px;
    margin: 1rem 0 1.5rem;
  }

  /* ===== BENEFITS GRID ===== */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
  }
  .benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    padding: 2rem;
    border-top: 4px solid var(--gold);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .benefit-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
  }
  .benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.65;
  }

  /* ===== SERVICES GRID ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 2rem;
    transition: background 0.2s, border-color 0.2s;
  }
  .service-card:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); }
  .service-num {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 0.8rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.7rem;
  }
  .service-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    font-family: Arial, sans-serif;
    line-height: 1.65;
  }
  .service-price {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--gold-light);
    font-family: Arial, sans-serif;
  }

  /* ===== ACHIEVEMENTS STRIP ===== */
  .achievements-strip {
    background: var(--navy);
    padding: 3.5rem 2rem;
  }
  .achievements-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .achievement-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
  }
  .achievement-item .big-num {
    font-size: 2.6rem;
    color: var(--gold-light);
    font-weight: bold;
    line-height: 1;
  }
  .achievement-item .big-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.62);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    line-height: 1.4;
  }

  /* ===== BIO PAGE ===== */
  .bio-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
  .bio-sidebar {
    position: sticky;
    top: 100px;
  }
  .bio-card {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
  }
  .bio-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--navy-light);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold-light);
    border: 4px solid var(--gold);
  }
  .bio-name { font-size: 1.4rem; margin-bottom: 0.3rem; }
  .bio-title { font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.06em; font-family: Arial, sans-serif; text-transform: uppercase; margin-bottom: 1.5rem; }
  .bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .bio-tag {
    background: rgba(201,150,58,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    font-family: Arial, sans-serif;
    border-radius: 2px;
  }
  .contact-btn {
    display: block;
    background: var(--gold);
    color: var(--navy);
    font-weight: bold;
    font-size: 0.82rem;
    padding: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .contact-btn:hover { background: var(--gold-light); }

  .bio-content h2 {
    font-size: 1.9rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
  }
  .bio-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    margin-bottom: 1.2rem;
    line-height: 1.8;
  }
  .bio-section-title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin: 2.5rem 0 1rem;
    border-bottom: 1px solid var(--gray-mid);
    padding-bottom: 0.5rem;
  }

  /* ===== TIMELINE ===== */
  .timeline { list-style: none; }
  .timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--gray-mid);
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
  }
  .timeline-year {
    font-size: 0.72rem;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .timeline-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--navy);
    margin: 0.2rem 0;
  }
  .timeline-sub {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  /* ===== EDUCATION CARDS ===== */
  .edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .edu-card {
    border: 1px solid var(--gray-mid);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
  }
  .edu-school {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .edu-degree {
    font-size: 0.85rem;
    color: var(--gold);
    font-family: Arial, sans-serif;
    margin-bottom: 0.5rem;
  }
  .edu-notes {
    font-size: 0.82rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  /* ===== INITIATIVES PAGE ===== */
  .initiative-card {
    border: 1px solid var(--gray-mid);
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    border-top: 5px solid var(--navy);
    transition: box-shadow 0.2s;
  }
  .initiative-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
  .initiative-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .initiative-title { font-size: 1.3rem; font-weight: normal; color: var(--navy); }
  .initiative-badge {
    background: var(--navy);
    color: var(--gold-light);
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .initiative-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .initiative-results {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-mid);
  }
  .result-item .r-num { font-size: 1.5rem; color: var(--navy); font-weight: bold; }
  .result-item .r-label { font-size: 0.75rem; color: var(--gray-text); font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

  /* ===== AWARDS PAGE ===== */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .award-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    padding: 2rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .award-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-color: var(--gold); }
  .award-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }
  .award-info h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .award-org {
    font-size: 0.8rem;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .award-desc {
    font-size: 0.82rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin-top: 0.4rem;
  }

  /* ===== TRAINING PAGE ===== */
  .training-table-wrap { overflow-x: auto; }
  .training-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
  }
  .training-table th {
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    text-transform: uppercase;
  }
  .training-table td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--gray-mid);
    color: var(--gray-text);
    vertical-align: top;
    line-height: 1.55;
  }
  .training-table tr:hover td { background: var(--cream); }
  .training-table td:first-child { color: var(--navy); font-weight: 600; }
  .count-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: bold;
    padding: 0.15rem 0.45rem;
    border-radius: 10px;
    margin-left: 0.4rem;
    vertical-align: middle;
  }

  /* ===== PRESS PAGE ===== */
  .press-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .press-card {
    border: 1px solid var(--gray-mid);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .press-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
  .press-outlet {
    background: var(--navy);
    color: var(--gold-light);
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .press-body { padding: 1.5rem; }
  .press-body h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  .press-body p {
    font-size: 0.84rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.65;
  }
  .press-date {
    font-size: 0.72rem;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.8rem;
  }
  .press-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--navy-light);
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
  }
  .press-link:hover { color: var(--gold); }

  /* ===== FAQ PAGE ===== */
  .faq-list { max-width: 820px; }
  .faq-item {
    border-bottom: 1px solid var(--gray-mid);
    padding: 0.5rem 0;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-question:hover { color: var(--navy-light); }
  .faq-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .faq-answer {
    display: none;
    padding: 0 0 1.5rem;
    font-size: 0.92rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    line-height: 1.8;
    max-width: 720px;
  }
  .faq-item.open .faq-answer { display: block; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 5rem 2rem;
    text-align: center;
  }
  .contact-section h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: normal;
  }
  .contact-section p {
    color: rgba(255,255,255,0.72);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
  }
  .contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-option {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 2rem;
    min-width: 220px;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .contact-option:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
  .contact-option .c-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .contact-option h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.4rem; }
  .contact-option p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; }

  /* ===== V12: 5-panel contact page ===== */
  .contact-option-card { cursor: pointer; transition: background 0.2s, border-color 0.2s; }
  .contact-option-card.active { background: rgba(201,150,58,0.18); border-color: var(--gold); }
  .contact-option-card:not(.active):hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
  .form-template { display: none; }
  .form-template.active { display: block; }
  .ff-label { display:block; font-size:0.78rem; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.4rem; font-family:Arial,sans-serif; }
  .ff-input { width:100%; padding:0.8rem; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2); color:var(--white); font-family:Arial,sans-serif; font-size:0.9rem; outline:none; box-sizing:border-box; }
  .ff-input:focus { border-color: var(--gold); }
  .ff-textarea { resize: vertical; }
  .ff-select { width:100%; padding:0.8rem; background:rgba(20,40,80,0.95); border:1px solid rgba(255,255,255,0.2); color:var(--white); font-family:Arial,sans-serif; font-size:0.9rem; outline:none; box-sizing:border-box; }
  .ff-submit { width:100%; background:var(--gold); color:var(--navy); font-weight:bold; font-size:0.9rem; padding:1rem; border:none; cursor:pointer; text-transform:uppercase; letter-spacing:0.05em; font-family:Arial,sans-serif; transition:background 0.2s; margin-top:0.5rem; }
  .ff-submit:hover { background: #e8b86d; }
  .ff-submit:disabled { background: rgba(201,150,58,0.5); cursor:wait; }
  .ff-disclaimer-foot { font-size:0.72rem; color:rgba(255,255,255,0.4); font-family:Arial,sans-serif; text-align:center; margin-top:1rem; line-height:1.55; }
  .cf-status { display: none; margin-top:1rem; padding:0.8rem; font-family:Arial,sans-serif; font-size:0.85rem; text-align:center; border-radius:3px; }
  .cf-status.show-success { display:block; background:rgba(40,120,40,0.6); color:#fff; border:1px solid rgba(80,180,80,0.4); }
  .cf-status.show-error { display:block; background:rgba(120,30,30,0.6); color:#fff; border:1px solid rgba(200,80,80,0.4); }
  @media (max-width: 768px) {
    .contact-grid-5p { grid-template-columns: 1fr !important; gap: 2rem !important; }
  }


  /* ===== FOOTER ===== */
  footer {
    background: #0a1428;
    color: rgba(255,255,255,0.55);
    padding: 2rem;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
  }
  footer a { color: var(--gold-light); }
  footer .footer-brand { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; font-family: 'Georgia', serif; }

  /* ===== QUOTE BLOCK ===== */
  .quote-block {
    border-left: 5px solid var(--gold);
    padding: 1.5rem 2rem;
    background: var(--cream);
    margin: 2rem 0;
    font-size: 1.08rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.75;
  }
  .quote-block cite {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--gray-text);
    font-family: Arial, sans-serif;
    margin-top: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ===== BOARDS SECTION ===== */
  .boards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
  .board-item {
    background: var(--cream);
    border: 1px solid var(--gray-mid);
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--gold);
  }
  .board-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0.2rem; }
  .board-item p { font-size: 0.8rem; color: var(--gray-text); font-family: Arial, sans-serif; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .bio-layout { grid-template-columns: 1fr; }
    .bio-sidebar { position: static; }
    .nav-links { display: none; }
    .hero-stats { gap: 1.5rem; }
    .achievement-item { min-width: 120px; }
  }

  /* ===== V2 — LEGAL NOTICE BAR ===== */
  #legal-notice-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 2000;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    min-height: 36px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  #legal-notice-bar .notice-text {
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.04em;
    text-align: center;
  }
  #legal-notice-bar strong { color: var(--gold-light); }
  #legal-notice-bar .notice-text a {
    color: var(--gold-light);
    border-bottom: 1px solid var(--gold);
  }
  #legal-notice-bar .notice-dismiss {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.55);
    font-size: 0.65rem;
    font-family: Arial, sans-serif;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    border-radius: 2px;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
  }
  #legal-notice-bar .notice-dismiss:hover { border-color: var(--gold-light); color: var(--gold-light); }
  /* Notice bar offsets now handled dynamically by JS — see adjustForNoticeBar() */

  /* ===== V2 — FIRST-VISIT MODAL ===== */
  #terms-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,20,40,0.88);
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  #terms-modal.open { display: flex; }
  .modal-box {
    background: #fff;
    max-width: 640px;
    width: 100%;
    padding: 2.5rem;
    border-top: 5px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-logo {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: bold;
    margin-bottom: 0.3rem;
  }
  .modal-title {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: normal;
    border-bottom: 1px solid #e8e4dc;
    padding-bottom: 0.8rem;
  }
  .modal-body {
    font-family: Arial, sans-serif;
    font-size: 0.86rem;
    color: #5a5a6a;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .modal-body strong { color: var(--navy); }
  .modal-ack {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: #faf8f4;
    border: 1px solid #e8e4dc;
    padding: 1rem;
    margin-bottom: 1.2rem;
  }
  .modal-ack input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
  .modal-ack label {
    font-family: Arial, sans-serif;
    font-size: 0.83rem;
    color: var(--navy);
    line-height: 1.6;
    cursor: pointer;
  }
  .modal-btn {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.9rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
    transition: background 0.2s;
  }
  .modal-btn:hover { background: var(--gold-light); }
  .modal-fine {
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    color: #aaa;
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.5;
  }

  /* ===== V2 — JURISDICTION BADGES ===== */
  .juris-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    vertical-align: middle;
    line-height: 1.6;
  }
  .juris-ca {
    background: rgba(201,150,58,0.18);
    border: 1px solid var(--gold);
    color: var(--gold-light);
  }
  .juris-national {
    background: rgba(13,110,110,0.18);
    border: 1px solid #0D6E6E;
    color: #5ab8b8;
  }
  .juris-federal {
    background: rgba(27,58,107,0.35);
    border: 1px solid var(--navy-light);
    color: #8fafd4;
  }

  /* ===== V2 — FEDERAL PRACTICE EXCEPTION BOX ===== */
  .federal-box {
    margin-top: 2rem;
    border: 1px solid #0D6E6E;
    border-left: 5px solid #0D6E6E;
    background: rgba(13,110,110,0.08);
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .federal-box .fb-icon { font-size: 1.3rem; flex-shrink: 0; }
  .federal-box .fb-body { font-family: Arial, sans-serif; font-size: 0.84rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
  .federal-box .fb-body strong { color: #5ab8b8; }

  /* ===== V2 — HERO FINE PRINT ===== */
  .hero-fine-print {
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: -3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 640px;
  }

  /* ===== V2 — CONTACT FORM DISCLAIMER ===== */
  .form-disclaimer-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
  }
  .form-disclaimer-box strong { color: rgba(255,255,255,0.72); }
  .form-ack-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(201,150,58,0.07);
    border: 1px solid rgba(201,150,58,0.3);
  }
  .form-ack-row input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
  .form-ack-row label {
    font-family: Arial, sans-serif;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    cursor: pointer;
  }

  /* ===== V2 — ENHANCED FOOTER ===== */
  footer.footer-v2 {
    background: #060e1e;
    color: rgba(255,255,255,0.45);
    padding: 2.5rem 2rem;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    border-top: 3px solid var(--gold);
  }
  .footer-v2-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-v2-brand {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    margin-bottom: 0.3rem;
  }
  .footer-v2-attorney {
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
  }
  .footer-v2-disclaimer {
    max-width: 860px;
    margin: 0 auto 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.42);
    font-size: 0.75rem;
  }
  .footer-v2-links {
    margin-bottom: 0.8rem;
  }
  .footer-v2-links a {
    color: var(--gold-light);
    border-bottom: 1px solid rgba(201,150,58,0.4);
    transition: color 0.2s;
  }
  .footer-v2-links a:hover { color: var(--white); }
  .footer-v2-copy { color: rgba(255,255,255,0.3); font-size: 0.72rem; }

  /* ===== V3 — PRIOR RESULTS DISCLAIMER STRIP ===== */
  .results-disclaimer-strip {
    background: rgba(0,0,0,0.25);
    padding: 0.65rem 2rem;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* ===== V3 — MODAL SECTION HEADERS ===== */
  .modal-section-head {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 1.4rem 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e8e4dc;
  }

  /* ===== V3 — TERMS SUMMARY BOX IN MODAL ===== */
  .modal-terms-box {
    background: #f9f7f3;
    border: 1px solid #e8e4dc;
    border-left: 4px solid var(--navy);
    padding: 1rem 1.2rem;
    margin: 1rem 0;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    color: #5a5a6a;
    line-height: 1.7;
  }
  .modal-terms-box ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
  }
  .modal-terms-box ul li { margin-bottom: 0.35rem; }

  /* ===== V3 — RESULTS DISCLAIMER INLINE ===== */
  .results-note {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.55;
    margin-top: 1rem;
    text-align: center;
  }

  /* ===== V3 — GOVERNING LAW FOOTER LINE ===== */
  .footer-v2-govlaw {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    margin-top: 0.5rem;
    line-height: 1.55;
  }


  /* ===== V4 — LEGAL PAGES (Terms / Privacy) ===== */
  .legal-page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4rem 2rem 3rem;
  }
  .legal-page-header .legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
  }
  .legal-back:hover { color: var(--gold-light); }
  .legal-page-header .legal-effective {
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .legal-page-header h1 {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: normal;
    margin-bottom: 0.8rem;
  }
  .legal-page-header p {
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    max-width: 660px;
    line-height: 1.7;
  }
  .legal-content {
    background: var(--white);
    padding: 3.5rem 2rem;
  }
  .legal-content-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-mid);
  }
  .legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .legal-section-num {
    font-family: Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .legal-section h2 {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: normal;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--gold);
  }
  .legal-section p {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 0.9rem;
  }
  .legal-section p:last-child { margin-bottom: 0; }
  .legal-section ul, .legal-section ol {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.75;
    margin: 0.6rem 0 0.9rem 1.4rem;
    padding: 0;
  }
  .legal-section ul li, .legal-section ol li { margin-bottom: 0.4rem; }
  .legal-highlight {
    background: var(--cream);
    border: 1px solid var(--gray-mid);
    border-left: 4px solid var(--navy);
    padding: 1.2rem 1.5rem;
    margin: 1rem 0;
    font-family: Arial, sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.7;
  }
  .legal-highlight strong { color: var(--navy); }
  .legal-warning {
    background: #fff8f0;
    border: 1px solid #e8c890;
    border-left: 4px solid var(--gold);
    padding: 1rem 1.4rem;
    margin: 1rem 0;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: #5a4a20;
    line-height: 1.7;
  }
  .legal-toc {
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    font-family: Arial, sans-serif;
  }
  .legal-toc h3 {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
  }
  .legal-toc ol {
    margin: 0 0 0 1.2rem;
    padding: 0;
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.8;
  }
  .legal-contact-box {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
  }
  .legal-contact-box h3 {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
  }
  .legal-contact-box p {
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
  }
  .legal-contact-box a { color: var(--gold-light); border-bottom: 1px solid var(--gold); }


  /* ===== V6 — HERO CREDENTIAL STRIP ===== */
  .hero-cred-strip {
    display: flex; flex-wrap: wrap; gap: 0.4rem 0;
    margin-bottom: 2.5rem; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.2rem;
  }
  .hero-cred-item { font-size: 0.76rem; color: rgba(255,255,255,0.68); font-family: Arial, sans-serif; letter-spacing: 0.03em; padding: 0.1rem 0.7rem 0.1rem 0; }
  .hero-cred-item strong { color: var(--gold-light); }
  .hero-cred-sep { color: var(--gold); padding: 0 0.4rem; font-size: 0.8rem; }

  /* ===== V6 — WHAT TO EXPECT ===== */
  .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
  .step-card { padding: 1.8rem; background: var(--white); border: 1px solid var(--gray-mid); border-top: 4px solid var(--gold); position: relative; }
  .step-num { font-size: 2.2rem; font-weight: bold; color: rgba(201,150,58,0.2); line-height: 1; margin-bottom: 0.4rem; font-family: 'Georgia', serif; position: absolute; top: 1rem; right: 1.2rem; }
  .step-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
  .step-card p { font-size: 0.88rem; color: var(--gray-text); font-family: Arial, sans-serif; line-height: 1.65; }

  /* ===== V7 — AUDIENCE SELECTOR ===== */
  .audience-selector { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
  .aud-label { font-size: 0.65rem; font-family: Arial, sans-serif; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; padding-right: 0.3rem; }
  .aud-btn { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); font-size: 0.72rem; font-family: Arial, sans-serif; padding: 0.38rem 1rem; cursor: pointer; border-radius: 2px; transition: all 0.18s; text-transform: uppercase; letter-spacing: 0.05em; }
  .aud-btn:hover { border-color: var(--gold-light); color: var(--white); background: rgba(255,255,255,0.1); }
  .aud-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: bold; }

  /* V11 — Hero h1 sizing per audience */
  .hero h1.aud-general, .hero h1.aud-govt, .hero h1.aud-nonprofit, .hero h1.aud-corp {
    /* inherit existing hero h1 styles via class composition; ensure consistent size */
  }

  /* ===== V11 — 4-AUDIENCE VISIBILITY RULES (added Nonprofit) ===== */
  /* Default / General */
  body:not([data-audience]) .aud-govt,
  body:not([data-audience]) .aud-corp,
  body:not([data-audience]) .aud-nonprofit,
  body[data-audience="general"] .aud-govt,
  body[data-audience="general"] .aud-corp,
  body[data-audience="general"] .aud-nonprofit { display: none !important; }
  /* Government */
  body[data-audience="government"] .aud-general,
  body[data-audience="government"] .aud-corp,
  body[data-audience="government"] .aud-nonprofit { display: none !important; }
  /* Nonprofit */
  body[data-audience="nonprofit"] .aud-general,
  body[data-audience="nonprofit"] .aud-govt,
  body[data-audience="nonprofit"] .aud-corp { display: none !important; }
  /* Corporate */
  body[data-audience="corporate"] .aud-general,
  body[data-audience="corporate"] .aud-govt,
  body[data-audience="corporate"] .aud-nonprofit { display: none !important; }

  /* ===== V7 — SERVICE PRIORITY BADGE ===== */
  .svc-priority { font-size: 0.62rem; font-family: Arial, sans-serif; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .svc-priority::before { content: "★ "; }
  .svc-audience-note { margin-top: 0.8rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); font-family: Arial, sans-serif; font-style: italic; line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.6rem; }
  .svc-audience-note strong { color: var(--gold-light); font-style: normal; }

  /* ===== V7 — AUDIENCE PANELS ===== */
  .audience-panel-section { padding: 3rem 2rem; background: var(--navy); }
  .audience-panel-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  @media (max-width: 768px) { .audience-panel-inner { grid-template-columns: 1fr; } }
  .aud-panel-label { font-size: 0.68rem; font-family: Arial, sans-serif; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
  .aud-panel-title { font-size: 1.25rem; color: var(--white); font-weight: normal; margin-bottom: 1rem; }
  .aud-panel-list { list-style: none; margin: 0 0 1.2rem; }
  .aud-panel-list li { font-size: 0.87rem; color: rgba(255,255,255,0.7); font-family: Arial, sans-serif; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .aud-panel-list li::before { content: "→ "; color: var(--gold); }
  .aud-panel-body { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-family: Arial, sans-serif; line-height: 1.75; margin-bottom: 0.8rem; }

  /* ===== V7 — GOVERNMENT CASE CALLOUT ===== */
  .govt-case-callout { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--gold); padding: 1.8rem 2rem; margin-top: 1.5rem; }
  .gcc-kicker { font-size: 0.65rem; font-family: Arial, sans-serif; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
  .gcc-title { font-size: 1rem; color: var(--white); margin-bottom: 0.8rem; }
  .gcc-body { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-family: Arial, sans-serif; line-height: 1.72; margin-bottom: 0.6rem; }
  .gcc-outcomes { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
  .gcc-outcome .gcc-num { font-size: 1.4rem; color: var(--gold-light); font-weight: bold; }
  .gcc-outcome .gcc-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

  /* ===== V7 — PROCUREMENT BOX ===== */
  .procurement-box { background: rgba(201,150,58,0.06); border: 1px solid rgba(201,150,58,0.25); padding: 0.8rem 1rem; margin-top: 0.8rem; font-family: Arial, sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
  .procurement-box strong { color: var(--gold-light); }



  /* V11 — INSIGHTS CARD STYLING */
  .insight-card { background: var(--white); border-left: 4px solid var(--gold); padding: 1.6rem 2rem; margin-bottom: 1.2rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
  .insight-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-left-color: var(--navy); }
  .insight-meta { font-family: Arial, sans-serif; font-size: 0.78rem; color: #888; letter-spacing: 0.05em; margin-bottom: 0.5rem; text-transform: uppercase; }
  .insight-title { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.35; }
  .insight-summary { font-family: Georgia, serif; color: #444; line-height: 1.65; font-size: 0.95rem; margin-bottom: 0.8rem; }
  .insight-link { font-family: Arial, sans-serif; font-size: 0.85rem; color: var(--navy); font-weight: bold; letter-spacing: 0.04em; }

  /* V11 — PAGE HERO (used on Insights, Office Hours, For Attorneys, Individual Redirect) */
  .page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); padding: 4rem 2rem 3rem; }
  .page-hero-inner { max-width: 900px; margin: 0 auto; }
  .page-eyebrow { font-family: Arial, sans-serif; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: bold; }
  .page-hero h1 { font-size: 2.2rem; line-height: 1.25; margin-bottom: 1.2rem; color: var(--white); }
  .page-hero-sub { font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.85); }

  /* ===== V12 — HAMBURGER & MOBILE NAV DRAWER ===== */
  .nav-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.5rem;
    width: 42px; height: 42px;
    cursor: pointer;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .nav-hamburger:hover { border-color: var(--gold-light); color: var(--gold-light); }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1998;
    backdrop-filter: blur(2px);
  }
  .mobile-nav-overlay.open { display: block; }

  .mobile-nav-drawer {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    max-width: 88vw;
    height: 100%;
    background: var(--navy);
    z-index: 1999;
    overflow-y: auto;
    transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    box-shadow: -6px 0 32px rgba(0,0,0,0.4);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav-drawer.open { right: 0; }

  .mobile-nav-close {
    align-self: flex-end;
    margin: 1rem 1rem 0.5rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    width: 36px; height: 36px;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }
  .mobile-nav-close:hover { border-color: var(--gold-light); color: var(--gold-light); }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }
  .mobile-nav-links li a {
    display: block;
    padding: 0.9rem 1.6rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-links li a:hover,
  .mobile-nav-links li a:active { color: var(--gold-light); background: rgba(255,255,255,0.05); }

  .mobile-nav-section-label {
    padding: 0.6rem 1.6rem 0.3rem;
    font-size: 0.65rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.3rem;
    list-style: none;
  }

  .mobile-nav-cta-btn {
    display: block;
    margin: 1.2rem 1.6rem 0;
    background: var(--gold);
    color: var(--navy);
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.9rem 1rem;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-cta-btn:hover { background: var(--gold-light); }

  /* ===== V12 — COMPREHENSIVE MOBILE STYLES ===== */
  @media (max-width: 768px) {

    /* Nav */
    .nav-links { display: none; }
    .mobile-desktop-only { display: none !important; }
    .nav-hamburger { display: flex; }
    .nav-inner { padding: 0 1rem; }

    /* Body offset adjustments — notice bar height is set dynamically by adjustForNoticeBar() */
    .page { padding-top: 68px; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-inner { padding: 2.5rem 1.2rem 2rem; }
    .hero h1 { font-size: 1.9rem; line-height: 1.2; }
    .hero-sub { font-size: 1rem; }
    .hero-buttons { flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
    .btn-primary,
    .btn-outline { width: 100%; text-align: center; padding: 1rem 1.2rem; }
    .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
    .hero-stat { min-width: calc(50% - 0.8rem); }
    .hero-badge { font-size: 0.65rem; }

    /* Audience selector → 2×2 grid */
    .audience-selector {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.4rem;
      margin-bottom: 1.4rem;
    }
    .aud-label {
      grid-column: 1 / -1;
      font-size: 0.72rem;
    }
    .aud-btn {
      width: 100%;
      text-align: center;
      padding: 0.5rem 0.4rem;
      font-size: 0.68rem;
    }

    /* Sections */
    .section { padding: 2.5rem 1.2rem; }
    .section-title { font-size: 1.65rem !important; line-height: 1.25 !important; }
    .section-intro { font-size: 1rem; }
    .section-label { font-size: 0.68rem; }

    /* Bio about section — inline grid override */
    .bio-about-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }

    /* Bio layout (about page) */
    .bio-layout { grid-template-columns: 1fr; }
    .bio-sidebar { position: static; }

    /* Quote block */
    .quote-block { font-size: 1rem; padding: 1.2rem 1.5rem; margin: 0; }

    /* Achievements strip */
    .achievement-item { min-width: 120px; }

    /* Service cards — already use auto-fit minmax so they collapse fine */
    /* Stats numbers */
    .stat-number { font-size: 2.2rem; }

    /* Page hero (Insights / Office Hours / For Attorneys) */
    .page-hero { padding: 2.5rem 1.2rem 2rem; }
    .page-hero-title { font-size: 1.7rem; }
    .page-hero-sub { font-size: 0.95rem; }

    /* Insight cards */
    .insight-card { padding: 1.2rem 1.2rem; }
    .insight-title { font-size: 1.15rem; }

    /* FAQ — already accordion, just ensure touch-friendly */
    .faq-q {
      padding: 1rem 1rem !important;
      font-size: 0.95rem !important;
      line-height: 1.45;
      text-align: left;
      min-height: 52px;
    }
    .faq-list { padding: 0 0.2rem; }

    /* Contact grid — already handled by .contact-grid-5p rule */

    /* Footer */
    .footer-v2-inner { padding: 2rem 1.2rem !important; }
    .footer-v2-attorney { font-size: 0.75rem; }
    .footer-v2-links { flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
    .footer-v2-links a { font-size: 0.75rem; }
    .footer-v2-govlaw { font-size: 0.72rem; }

    /* Initiatives / steps grids */
    .steps-grid { grid-template-columns: 1fr !important; }

    /* Board section */
    .board-grid { grid-template-columns: 1fr !important; }

    /* Audience panel inner */
    .audience-panel-inner { grid-template-columns: 1fr; }

    /* Modal */
    .modal-box { padding: 1.5rem 1.2rem; margin: 0.5rem; }
    .modal-title { font-size: 1.2rem; }

    /* Forms */
    .ff-field { margin-bottom: 0.8rem; }
    .ff-input, .ff-textarea, .ff-select {
      font-size: 16px !important; /* prevents iOS zoom on focus */
    }

    /* Contact option cards — stack properly */
    .contact-option-card { padding: 0.9rem 1rem; }

    /* Legal notice bar */
    #legal-notice-bar { height: auto; min-height: 36px; padding: 0.4rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
    #legal-notice-bar .notice-text { font-size: 0.65rem; }

    /* Remove hover transforms on touch devices */
    .btn-primary:hover { transform: none; }
    .insight-card:hover { transform: none; }
    .service-card:hover { transform: none; }
    .nav-cta:hover { transform: none; }
  }

  /* Extra-small screens */
  @media (max-width: 400px) {
    .hero h1 { font-size: 1.65rem; }
    .aud-btn { font-size: 0.62rem; padding: 0.45rem 0.3rem; }
    .nav-brand .firm-name { font-size: 0.82rem; }
    .nav-brand .firm-tag { display: none; }
  }


/* ============================================================
   STANDALONE PAGE ADDITIONS
   Added for dedicated per-service pages (/services/*).
   The homepage is a single-page app where .page is toggled by JS;
   standalone pages use .static-page instead so they are always visible.
   ============================================================ */
.static-page { display: block; padding-top: 68px; }
.breadcrumb { background: var(--gray-light, #f4f4f2); border-bottom: 1px solid var(--gray-mid, #ddd); padding: 0.7rem 2rem; }
.breadcrumb ol { max-width: 1100px; margin: 0 auto; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; font-family: Arial, sans-serif; font-size: 0.78rem; }
.breadcrumb li { color: #666; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 0.5rem; color: #aaa; }
.breadcrumb a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(201,150,58,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.svc-body { max-width: 820px; margin: 0 auto; }
.svc-body p { font-family: Georgia, serif; font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.1rem; color: #2a2a2a; }
.svc-body h2 { font-size: 1.45rem; margin: 2.4rem 0 1rem; color: var(--navy); }
.svc-body h3 { font-size: 1.1rem; margin: 1.6rem 0 0.6rem; color: var(--navy); }
.svc-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.svc-tag { font-family: Arial, sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; background: var(--navy); color: #fff; padding: 0.3rem 0.7rem; }
.svc-note { font-family: Arial, sans-serif; font-size: 0.8rem; line-height: 1.7; color: #666; border-left: 3px solid var(--gold); padding: 0.8rem 1rem; background: #fbf9f4; margin: 2rem 0; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; max-width: 1100px; margin: 0 auto; }
.svc-grid .initiative-card { margin: 0; }
.svc-card-link { display: inline-block; margin-top: 0.9rem; font-family: Arial, sans-serif; font-size: 0.82rem; font-weight: bold; letter-spacing: 0.04em; color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.svc-card-link:hover { color: var(--gold); }
.svc-related { max-width: 820px; margin: 0 auto; }
.svc-related ul { list-style: none; padding: 0; }
.svc-related li { padding: 0.45rem 0; font-family: Arial, sans-serif; font-size: 0.92rem; }
.svc-related a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(201,150,58,0.5); }
.svc-related a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .static-page { padding-top: 68px; }
  .breadcrumb { padding: 0.6rem 1.2rem; }
}
