body.custom-background {
    background-color: transparent!important;
}


:root {
    --navy: #132244;
    --navy-2: #1C325C;
    --navy-deep: #0C1830;
    --gold: #A9803D;
    --gold-light: #C9A76A;
    --cream: #FAF8F4;
    --paper: #FFFFFF;
    --ink: #20242E;
    --muted: #65697A;
    --line: #E7E5DF;
    --radius: 10px;
    --maxw: 1200px;
    --shadow-sm: 0 1px 3px rgba(19,34,68,.08);
    --shadow-md: 0 10px 30px rgba(19,34,68,.09);
    --shadow-lg: 0 20px 50px rgba(19,34,68,.14);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Inter',Arial,sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }
  
  h1,h2,h3,h4 {
    font-family: 'Playfair Display',Georgia,serif;
    color: var(--navy);
    margin: 0 0 .5em;
    letter-spacing: -.01em;
  }
  
  p {
    margin: 0 0 1.1em;
    color: var(--muted);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    margin: 0;
  }
  
  img {
    max-width: 100%;
  }
  
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
  }
  
  section {
    padding: 96px 0;
  }
  
  .section-tight {
    padding: 72px 0;
  }
  
  .section-alt {
    background: var(--cream);
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
  }
  
  .kicker {
    text-align: center;
  }
  
  .kicker .eyebrow {
    justify-content: center;
  }
  
  .kicker .eyebrow::before {
    display: none;
  }
  
  .lede {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 640px;
  }
  
  .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
    text-decoration: none;
  }
  
  .btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  
  .btn-primary:hover {
    background: var(--navy-2);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
  
  .btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }
  
  .btn-gold:hover {
    background: #8f6a30;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: #fff;
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
  }
  
  .btn-ghost:hover {
    background: var(--navy);
    color: #fff;
  }
  
  header.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease;
    padding-top: 0!important;
  }
  
  header.site-header.scrolled {
    box-shadow: var(--shadow-sm);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    max-width: 1440px;
    margin: 0 auto;
    gap: 24px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--navy),var(--navy-2));
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .brand-text {
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    line-height: 1.2;
  }
  
  .brand-text small {
    display: block;
    font-family: 'Inter',sans-serif;
    font-weight: 600;
    font-size: .65rem;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  
  nav.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: .88rem;
    align-items: center;
  }
  
  nav.primary-nav > ul > li {
    position: relative;
  }
  
  nav.primary-nav > ul > li > a,
    nav.primary-nav .dropdown-toggle {
    color: var(--ink);
    font-weight: 600;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
  }
  
  nav.primary-nav > ul > li > a:hover,
    nav.primary-nav .dropdown-toggle:hover {
    color: var(--navy);
    background: var(--cream);
  }
  
  .caret {
    transition: transform .2s ease;
  }
  
  .has-dropdown.open .caret {
    transform: rotate(180deg);
  }
  
  nav.primary-nav ul.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    transform: translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: 300px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 14px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .18s ease;
    list-style: none;
    display: block;
  }
  
  .dropdown-menu li.menu-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    padding: 12px 12px 4px;
    border-top: 1px solid var(--line);
    margin-top: 6px;
  }
  
  .dropdown-menu li.menu-label:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 7px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .84rem;
    color: var(--ink);
  }
  
  .dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--navy);
  }
  
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .phone-link {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
  }
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    padding: 0;
  }
  
  .hero-photo-pane {
    position: relative;
    background: var(--navy-deep);
    min-height: 420px;
  }
  
  .hero-photo-pane img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% 20%;
  }
  
  .photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(12,24,48,.92),rgba(12,24,48,0));
    padding: 36px 20px 14px;
    color: #fff;
  }
  
  .photo-caption strong {
    display: block;
    font-family: 'Playfair Display',serif;
    color: var(--gold-light);
    font-size: 1.05rem;
  }
  
  .photo-caption span {
    font-size: .8rem;
    color: #D7DCEB;
  }
  
  .hero-panel {
    background: var(--navy);
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  
  .hero-panel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--gold);
  }
  
  .hero-panel .eyebrow {
    color: var(--gold-light);
  }
  
  .hero-panel .eyebrow::before {
    background: var(--gold-light);
  }
  
  .hero-panel h1 {
    font-size: clamp(1.8rem,2.8vw,2.4rem);
    line-height: 1.16;
    color: #fff;
  }
  
  .hero-panel .subhead {
    font-size: 1.05rem;
    color: #E4E9F4;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .hero-form-wrap {
    max-width: 460px;
  }
  
  .hero-contact-line {
    font-size: .87rem;
    color: #B7BED2;
    line-height: 1.65;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.15);
    max-width: 460px;
  }
  
  .hero-contact-line a {
    color: var(--gold-light);
    font-weight: 700;
  }
  
  .form-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 32px 30px 28px;
    position: relative;
  }
  
  .form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg,var(--gold),var(--gold-light));
  }
  
  .form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  
  .form-card .form-note {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 20px;
  }
  
  .form-card .form-note strong {
    color: var(--navy);
  }
  
  .form-field {
    margin-bottom: 14px;
  }
  
  .form-field label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: .02em;
  }
  
  .form-field input,
    .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
    font-size: .92rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color .15s ease;
  }
  
  .form-field input:focus,
    .form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
  }
  
  .form-field textarea {
    height: 96px;
    resize: vertical;
  }
  
  .captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .captcha-row label {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    margin: 0;
  }
  
  .captcha-row input {
    width: 80px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
    background: var(--cream);
  }
  
  .form-card .btn {
    width: 100%;
  }
  
  .form-alt-contact {
    margin-top: 16px;
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
  }
  
  .form-alt-contact a {
    color: var(--navy);
    font-weight: 700;
  }
  
  .form-status {
    display: none;
    margin-top: 12px;
    font-size: .85rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
  }
  
  .form-status.ok {
    display: block;
    background: #EDF7EE;
    color: #256833;
    border: 1px solid #BFE3C5;
  }
  
  .form-status.err {
    display: block;
    background: #FCF0EF;
    color: #93312A;
    border: 1px solid #F0CBC7;
  }
  
  .proof-bar {
    background: var(--navy-deep);
    color: #fff;
  }
  
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
  }
  
  .proof-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }
  
  .proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,.12);
  }
  
  .proof-item .num {
    font-family: 'Playfair Display',serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .proof-item .label {
    font-size: .83rem;
    color: #B7BED2;
    max-width: 190px;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px;
    margin-top: 48px;
  }
  
  .service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s ease;
  }
  
  .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
  }
  
  .service-body {
    padding: 30px 26px;
  }
  
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--navy),var(--navy-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: .92rem;
    margin-bottom: 16px;
  }
  
  .service-card .card-link {
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .service-card .card-link svg {
    transition: transform .2s ease;
  }
  
  .service-card:hover .card-link svg {
    transform: translateX(4px);
  }
  
  .service-index {
    margin-top: 54px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 38px;
  }
  
  .service-index h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  
  .service-index ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px 28px;
  }
  
  .service-index li a {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
  }
  
  .service-index li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  
  .service-index li a:hover {
    color: var(--navy);
  }
  
  .seo-content {
    max-width: 880px;
    margin: 0 auto;
  }
  
  .seo-content h3 {
    font-size: 1.2rem;
    margin-top: 36px;
  }
  
  .seo-content p {
    font-size: .98rem;
    color: #3C3F49;
  }
  
  .seo-content p strong {
    color: var(--navy);
  }
  
  .seo-content a {
    color: var(--navy);
    font-weight: 700;
    border-bottom: 1px solid var(--gold-light);
  }
  
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 44px;
  }
  
  .insight-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s ease;
  }
  
  .insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  
  .insight-body {
    padding: 24px 26px 26px;
  }
  
  .insight-date {
    display: inline-block;
    font-size: .7rem;
    color: #fff;
    background: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  
  .insight-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  
  .insight-card p {
    font-size: .9rem;
  }
  
  .about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
  }
  
  .about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--navy);
  }
  
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
  }
  
  .photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--navy),var(--navy-2));
    color: var(--gold-light);
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 2.2rem;
  }
  
  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  
  .badge {
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy);
  }
  
  .reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  
  .reviews-score {
    font-family: 'Playfair Display',serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }
  
  .reviews-meta-col {
    text-align: left;
  }
  
  .stars {
    color: var(--gold);
    letter-spacing: 2px;
  }
  
  .reviews-meta {
    font-size: .88rem;
    color: var(--muted);
  }
  
  .google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-top: 52px;
    position: relative;
  }
  
  .process-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: var(--line);
  }
  
  .step {
    text-align: center;
    position: relative;
    background: var(--cream);
    padding: 0 12px;
  }
  
  .step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
  }
  
  .step h3 {
    font-size: 1.05rem;
  }
  
  .step p {
    font-size: .9rem;
  }
  
  #insights {
    padding-bottom: 56px;
  }
  
  #process {
    padding-top: 44px;
  }
  
  .faq-list {
    max-width: 820px;
    margin: 44px auto 0;
  }
  
  details.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
  }
  
  details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 24px;
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    position: relative;
  }
  
  details.faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  details.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 400;
    transition: transform .2s ease;
  }
  
  details.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  
  details.faq-item .faq-answer {
    padding: 0 24px 22px;
    font-size: .94rem;
    color: var(--muted);
  }
  
  .cta-band {
    background: linear-gradient(120deg,var(--navy),var(--navy-2));
    color: #fff;
    text-align: center;
    padding: 64px 0;
  }
  
  .cta-band h2 {
    color: #fff;
  }
  
  .cta-band p {
    color: #C7CEDE;
    max-width: 560px;
    margin: 0 auto 28px;
  }
  
  footer.site-footer {
    background: var(--navy-deep);
    color: #9AA3BC;
    padding: 64px 0 28px;
    font-size: .87rem;
  }
  
  footer.site-footer a:hover {
    color: var(--gold-light);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  
  .footer-grid h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-grid li {
    margin-bottom: 10px;
  }
  
  .footer-brand {
    font-family: 'Playfair Display',serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  
  .footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    font-size: .78rem;
    color: #727C99;
    line-height: 1.7;
  }
  
  .hidden-fields-container {
    display: none!important;
  }
  
  .form-field br {
    display: none!important;
  }
  
  #content > .container {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  #content > .container > .row {
    margin: 0;
  }
  
  .page-template-fda-label-review-final {
    margin: 0;
    font-family: 'Inter',Arial,sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  
  .page-template-fda-label-review-final h1,
        .page-template-fda-label-review-final h2,
        .page-template-fda-label-review-final h3,
        .page-template-fda-label-review-final h4 {
    font-family: 'Playfair Display',Georgia,serif;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 .5em;
    letter-spacing: -.01em;
  }
  
  .page-template-fda-label-review-final p {
    color: var(--muted);
    margin: 0 0 1.1em;
  }
  
  .page-template-fda-label-review-final a {
    color: var(--navy);
  }
  
  .page-template-fda-label-review-final img {
    max-width: 100%;
  }
 
  
  .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
  }
  
  .btn-ghost-light:hover {
    background: rgba(255,255,255,.12);
  }
  
  .page-hero {
    background: linear-gradient(120deg,var(--navy) 0%,var(--navy-deep) 100%);
    color: #fff;
    padding: 58px 0 54px;
    position: relative;
  }
  
  .page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--gold);
  }
  
  .breadcrumb {
    font-size: .78rem;
    color: #8C99B5;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .breadcrumb a {
    color: #B7BED2;
    font-weight: 600;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    color: var(--gold-light);
  }
  
  .breadcrumb .sep {
    color: #5A6785;
  }
  
  .breadcrumb .current {
    color: var(--gold-light);
    font-weight: 700;
  }
  
  .page-hero h1 {
    color: #fff;
    font-size: clamp(1.9rem,3vw,2.6rem);
    max-width: 760px;
    margin-bottom: 14px;
  }
  
  .hero-sub {
    color: #C7CEDE;
    font-size: 1.08rem;
    max-width: 600px;
    margin: 0 0 28px;
    font-weight: 500;
  }
  
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .hero-meta {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  
  .hero-meta span {
    font-size: .8rem;
    font-weight: 700;
    color: #E4E9F4;
  }
  
  .hero-meta span::before {
    content: '✓';
    color: var(--gold-light);
    margin-right: 7px;
  }
  
  .page-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    padding: 64px 32px 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  main h2 {
    font-size: 1.55rem;
    margin-top: 2.2em;
    padding-top: 6px;
  }
  
  main h2:first-of-type {
    margin-top: 0;
  }
  
  main h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 14px;
    border-radius: 2px;
  }
  
  main h3 {
    font-size: 1.18rem;
    margin-top: 1.6em;
  }
  
  main p {
    font-size: .98rem;
    color: #3C3F49;
  }
  
  main a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
  }
  
  main ul,main ol {
    color: #3C3F49;
    padding-left: 1.3em;
    font-size: .98rem;
  }
  
  main li {
    margin-bottom: .55em;
  }
  
  main li strong {
    color: var(--navy);
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.3em 0 2em;
    font-size: .92rem;
  }
  
  th,td {
    border: 1px solid var(--line);
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
  }
  
  th {
    background: var(--navy);
    color: #fff;
    font-family: 'Inter',sans-serif;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  
  td {
    color: #3C3F49;
  }
  
  tr:nth-child(even) {
    background: var(--cream);
  }
  
  .quick-facts {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .quick-facts th {
    width: 190px;
    background: var(--cream);
    color: var(--navy);
    text-transform: none;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: 0;
    font-family: 'Inter',sans-serif;
  }
  
  .quick-facts tr:nth-child(even) {
    background: #fff;
  }
  
  .mid-cta {
    background: linear-gradient(120deg,var(--navy),var(--navy-2));
    color: #fff;
    border-radius: var(--radius);
    padding: 30px 34px;
    margin: 2.6em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .mid-cta p {
    color: #C7CEDE;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    max-width: 540px;
  }
  
  .mid-cta .btn {
    flex-shrink: 0;
  }
  
  dl.faq-page {
    margin: 1.4em 0 0;
  }
  
  dl.faq-page dt {
    font-family: 'Playfair Display',Georgia,serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.06rem;
    margin-top: 1.5em;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
    line-height: 1.35;
  }
  
  dl.faq-page dd {
    margin: .5em 0 0 16px;
    color: #3C3F49;
    font-size: .95rem;
  }
  
  .final-cta {
    background: var(--navy-deep);
    color: #fff;
    border-radius: var(--radius);
    padding: 38px 40px;
    margin-top: 2.8em;
  }
  
  .final-cta h2 {
    color: #fff;
    margin-top: 0;
  }
  
  .final-cta h2::before {
    background: var(--gold-light);
  }
  
  .final-cta p {
    color: #C7CCDA;
  }
  
  .final-cta .contact-line {
    color: #fff;
    font-weight: 700;
    margin: .35em 0;
  }
  
  .final-cta a {
    color: var(--gold-light);
    text-decoration: none;
    border: none;
  }
  
  .placeholder-note {
    background: #FDF6E7;
    border: 1px dashed var(--gold);
    color: #7a5b17;
    font-size: .85rem;
    padding: 10px 15px;
    border-radius: 6px;
    font-style: italic;
    margin: .8em 0 1.4em;
  }
  
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
    align-self: start;
  }
  
  .widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
  }
  
  .sidebar h3 {
    margin-top: 0;
    font-size: 1.15rem;
  }
  
  .form-widget {
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }
  
  .form-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,var(--gold),var(--gold-light));
  }
  
  .form-note {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 16px;
  }
  
  .form-note strong {
    color: var(--navy);
  }
  
  .field {
    margin-bottom: 13px;
  }
  
  .field label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
  }
  
  .field input,.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 6px;
    padding: 11px 12px;
    font-family: 'Inter',sans-serif;
    font-size: .88rem;
    color: var(--ink);
    transition: border-color .15s ease;
  }
  
  .field input:focus,.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
  }
  
  .field textarea {
    min-height: 88px;
    resize: vertical;
  }
  
  .wpcf7-turnstile {
    margin: 4px 0 14px;
    min-height: 65px;
  }
  
  .submit-btn {
    width: 100%;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-size: .92rem;
    cursor: pointer;
    font-family: 'Inter',sans-serif;
    transition: background .2s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .submit-btn:hover {
    background: #8f6a30;
  }
  
  .disclaimer-tiny {
    font-size: .72rem;
    color: #9aa0ad;
    margin: 10px 0 0;
  }
  
  .sidebar-cta {
    background: linear-gradient(120deg,var(--navy),var(--navy-2));
    color: #fff;
    text-align: center;
    border: none;
  }
  
  .sidebar-cta h3 {
    color: #fff;
  }
  
  .sidebar-cta p {
    color: #C7CCDA;
    font-size: .88rem;
  }
  
  .sidebar-cta .btn {
    width: 100%;
  }
  
  .badge-widget {
    display: flex;
    justify-content: center;
    padding: 22px;
  }
  
  .badge-widget .slbadge {
    margin: 0 auto;
  }
  
  .attorney-mini {
    background: var(--navy);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    color: #fff;
  }
  
  .attorney-mini img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center 12%;
    display: block;
  }
  
  .attorney-mini .am-body {
    padding: 18px 22px 20px;
  }
  
  .attorney-mini .am-body strong {
    display: block;
    font-family: 'Playfair Display',serif;
    font-size: 1.02rem;
    color: var(--gold-light);
  }
  
  .attorney-mini .am-body span {
    font-size: .78rem;
    color: #C7CEDE;
    display: block;
    margin-bottom: 12px;
  }
  
  .attorney-mini .am-body a {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-light);
  }
  
  .related-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .related-widget li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    font-size: .87rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
  }
  
  .related-widget li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  
  .related-widget li a:hover {
    color: var(--navy);
  }
  
  .related-strip {
    background: var(--cream);
    padding: 72px 0;
  }
  
  .related-strip .kicker {
    text-align: center;
    margin-bottom: 38px;
  }
  
  .related-strip .kicker .eyebrow::before {
    display: none;
  }
  
  .rel-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
  }
  
  .rel-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .2s ease;
  }
  
  .rel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  
  .rel-card h3 {
    font-size: 1.02rem;
    margin: 0 0 6px;
  }
  
  .rel-card p {
    font-size: .85rem;
    margin-bottom: 12px;
  }
  
  .rel-card a {
    font-weight: 700;
    font-size: .82rem;
    color: var(--navy);
    text-decoration: none;
  }
  
  .rel-card a:hover {
    color: var(--gold);
  }
  
  @media (hover:hover) {
    .has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }
  
  @media (max-width:980px) {
    nav.primary-nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--line);
      display: none;
      box-shadow: var(--shadow-md);
    }
    
    nav.primary-nav.open {
      display: block;
    }
    
    nav.primary-nav > ul {
      flex-direction: column;
      gap: 0;
      padding: 8px 32px 20px;
      align-items: stretch;
    }
    
    nav.primary-nav > ul > li {
      border-top: 1px solid var(--line);
    }
    
    nav.primary-nav > ul > li > a, nav.primary-nav .dropdown-toggle {
      width: 100%;
      justify-content: space-between;
      padding: 14px 0;
    }
    
    nav.primary-nav ul.dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      padding: 0 0 10px 12px;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      width: auto;
      max-height: none;
    }
    
    nav.primary-nav .has-dropdown.open ul.dropdown-menu {
      display: block;
    }
    
    .nav-toggle {
      display: block;
    }
    
    .header-inner {
      position: relative;
    }
    
    .nav-cta-group .btn {
      display: none;
    }
  }
  
  @media (max-width:980px) {
    .hero {
      grid-template-columns: 1fr;
    }
    
    .hero-panel {
      padding: 44px 30px 48px;
    }
  }
  
  @media (max-width:900px) {
    .hero-form-wrap {
      max-width: 100%;
    }
  }
  
  @media (max-width:760px) {
    .proof-grid {
      grid-template-columns: repeat(2,1fr);
      row-gap: 36px;
    }
    
    .proof-item:nth-child(2)::after {
      display: none;
    }
  }
  
  @media (max-width:980px) {
    .services-grid {
      grid-template-columns: repeat(2,1fr);
    }
  }
  
  @media (max-width:640px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width:900px) {
    .service-index ul {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width:600px) {
    .service-index ul {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width:980px) {
    .insights-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width:760px) {
    .about-layout {
      grid-template-columns: 1fr;
    }
    
    .about-photo {
      max-width: 280px;
      margin: 0 auto;
    }
  }
  
  @media (max-width:760px) {
    .process-steps {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    
    .process-steps::before {
      display: none;
    }
  }
  
  @media (max-width:900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width:560px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width:600px) {
    .wrap {
      padding: 0 20px;
    }
    
    section {
      padding: 60px 0;
    }
    
    .section-tight {
      padding: 44px 0;
    }
    
    #insights {
      padding-bottom: 40px;
    }
    
    #process {
      padding-top: 28px;
    }
    
    .header-inner {
      padding: 12px 18px;
      gap: 12px;
    }
    
    .brand-text {
      font-size: .9rem;
    }
    
    .brand-text small {
      display: none;
    }
    
    .phone-link {
      font-size: .8rem;
    }
    
    .phone-link svg {
      display: none;
    }
    
    .hero-photo-pane {
      min-height: 320px;
    }
    
    .hero-panel {
      padding: 36px 20px 40px;
    }
    
    .hero-panel h1 {
      font-size: 1.6rem;
    }
    
    .hero-panel .subhead {
      font-size: .98rem;
    }
    
    .form-card {
      padding: 24px 18px 20px;
    }
    
    .proof-item .num {
      font-size: 1.8rem;
    }
    
    .proof-item .label {
      font-size: .78rem;
    }
    
    h2 {
      font-size: 1.5rem;
      overflow-wrap: break-word;
    }
    
    .service-index {
      padding: 26px 20px;
    }
    
    .service-body {
      padding: 24px 20px;
    }
    
    .seo-content p {
      font-size: .94rem;
    }
    
    .reviews-score {
      font-size: 2.4rem;
    }
    
    .footer-grid {
      gap: 24px;
    }
    
    .kicker .lede {
      font-size: .98rem;
    }
  }
  
  @media (max-width:980px) {
    .page-body {
      grid-template-columns: 1fr;
      gap: 44px;
    }
    
    .sidebar {
      position: static;
    }
    
    .rel-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width:600px) {
    .container {
      padding: 0 20px;
    }
    
    .page-hero {
      padding: 40px 0 38px;
    }
    
    .page-hero h1 {
      font-size: 1.65rem;
    }
    
    .hero-sub {
      font-size: .98rem;
    }
    
    .hero-ctas .btn {
      width: 100%;
    }
    
    .page-body {
      padding: 44px 20px 56px;
    }
    
    main h2 {
      font-size: 1.35rem;
    }
    
    .quick-facts th {
      width: auto;
    }
    
    table {
      font-size: .85rem;
    }
    
    th,td {
      padding: 9px 10px;
    }
    
    .mid-cta,.final-cta {
      padding: 24px 22px;
    }
    
    .related-strip {
      padding: 52px 0;
    }
    
    h2 {
      overflow-wrap: break-word;
    }
  }