/* Local vars not available in parent theme */
.lh {
    --lh-ink:    #111827;
    --lh-body:   #3d4a5c;
    --lh-border: #d8d4cb;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
.lh { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--lh-ink); }
.lh *, .lh *::before, .lh *::after { box-sizing: border-box; }

/* ── Shared ──────────────────────────────────── */
.lh-eyebrow {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .875rem;
}
.lh-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--secondary-beige);
    flex-shrink: 0;
}

/* ═══════════ 1. HERO ═══════════════════════════ */
.lh-hero {
    background-color: var(--primary-dark-green);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.lh-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    pointer-events: none;
}
.lh-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.04);
    pointer-events: none;
}
.lh-hero .lh-eyebrow { color: var(--secondary-beige); margin-bottom: 1.25rem; }
.lh-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
    max-width: 680px;
}
.lh-hero-body {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 0;
}
.lh-stats-strip {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}
.lh-stat {
    padding: 0 2rem 0 0;
    margin-right: 2rem;
    border-right: 1px solid rgba(255,255,255,.12);
}
.lh-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.lh-stat-val {
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
}
.lh-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .3rem;
}
.lh-hero-updated {
    margin-top: 1.5rem;
    font-size: .78rem;
    color: var(--text-muted);
}

/* ═══════════ 2. FOOTPRINT ══════════════════════ */
.lh-footprint {
    background: var(--secondary-cream);
    padding: 3.5rem 0;
}
.lh-footprint-inner {
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.75rem;
}
.lh-footprint h2 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--lh-ink);
    margin-bottom: 2rem;
}
/* Two-column flex layout — more robust than Bootstrap cols for tables */
.lh-ft-cols {
    display: flex;
    gap: 0;
    width: 100%;
}
.lh-ft-col {
    flex: 1;
    min-width: 0;
}
.lh-ft-col + .lh-ft-col {
    border-left: 1px solid var(--lh-border);
    padding-left: 2.5rem;
}
.lh-ft-col:first-child:not(:only-child) {
    padding-right: 2.5rem;
}
.lh-ft-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.lh-ft-table tr { border-bottom: 1px solid var(--lh-border); }
.lh-ft-table tr:last-child { border-bottom: none; }
.lh-ft-table td {
    padding: .9rem 0;
    vertical-align: top;
    font-size: .875rem;
    color: var(--lh-body);
    line-height: 1.6;
    word-break: break-word;
}
.lh-ft-lbl {
    width: 30%;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lh-body);
    opacity: .7;
    padding-right: 1.25rem;
    line-height: 1.5;
}
.lh-ft-val { width: 70%; }
.lh-ft-val a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lh-ft-bold { font-weight: 700; color: var(--lh-ink); }
/* Responsive: stack columns below lg */
@media (max-width: 991px) {
    .lh-ft-cols { flex-direction: column; gap: 0; }
    .lh-ft-col + .lh-ft-col {
        border-left: none;
        border-top: 1px solid var(--lh-border);
        padding-left: 0;
        padding-top: .5rem;
    }
    .lh-ft-col:first-child:not(:only-child) { padding-right: 0; }
}
/* Mobile: label above value */
@media (max-width: 575px) {
    .lh-footprint { padding: 2.5rem 0; }
    .lh-footprint-inner { padding-left: 1.25rem; }
    .lh-ft-table,
    .lh-ft-table tbody,
    .lh-ft-table tr,
    .lh-ft-table td { display: block; width: 100%; }
    .lh-ft-lbl {
        width: 100%;
        padding-right: 0;
        padding-bottom: .2rem;
        border-bottom: none;
        opacity: .6;
    }
    .lh-ft-val { width: 100%; padding-top: 0; }
    .lh-ft-table tr { padding: .625rem 0; border-bottom: 1px solid var(--lh-border); }
    .lh-ft-table td { padding: .15rem 0; border-bottom: none; }
}

/* ═══════════ 3. NOT SURE CTA ═══════════════════ */
.lh-notsure {
    background: var(--secondary-cream);
    border-top: 1px solid var(--lh-border);
    padding: 2.75rem 0;
}
.lh-notsure h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--lh-ink);
    margin-bottom: .625rem;
}
.lh-notsure p {
    font-size: .9rem;
    color: var(--lh-body);
    line-height: 1.65;
    margin-bottom: .875rem;
    max-width: 480px;
}
.lh-notsure-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--lh-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}
.lh-notsure-link:hover { color: var(--accent-primary); }
.lh-btn-red {
    display: block;
    width: 100%;
    padding: .875rem 1.5rem;
    background: var(--primary-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--primary-orange);
    cursor: pointer;
    transition: opacity .15s;
}
.lh-btn-red:hover { opacity: .88; color: #fff; }
.lh-btn-outline-dark {
    display: block;
    width: 100%;
    padding: .8rem 1.5rem;
    background: transparent;
    color: var(--lh-ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--lh-ink);
    margin-top: .625rem;
    transition: background .15s, color .15s;
}
.lh-btn-outline-dark:hover { background: var(--lh-ink); color: #fff; }

/* ═══════════ 4. STATE DIRECTORY ════════════════ */
.lh-directory { padding: 4rem 0 0; background: #fff; }
.lh-dir-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}
.lh-dir-header h2 {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 900;
    color: var(--lh-ink);
    margin: 0;
    letter-spacing: -.02em;
}
.lh-dir-toggles {
    font-size: .75rem;
    color: var(--text-muted);
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}
.lh-dir-toggles a { color: var(--lh-ink); text-decoration: none; }
.lh-dir-toggles a:hover { color: var(--accent-primary); }
.lh-dir-divider {
    border: none;
    border-top: 1.5px solid var(--lh-ink);
    margin: .75rem 0 1.25rem;
}
/* State tabs as text links */
.lh-state-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .1rem;
    margin-bottom: 1.75rem;
    align-items: center;
}
.lh-state-tab {
    background: none;
    border: none;
    padding: .1rem .3rem;
    font-size: .9rem;
    color: var(--lh-ink);
    cursor: pointer;
    text-decoration: none;
    transition: color .15s;
    font-weight: 400;
}
.lh-state-tab:hover { color: var(--accent-primary); }
.lh-state-tab.active { color: var(--accent-primary); font-weight: 600; }
.lh-state-tab-dot {
    color: var(--text-muted);
    font-size: .9rem;
    user-select: none;
}
/* State cards */
.lh-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-bottom: 3.5rem;
}
.lh-state-card {
    border: 1px solid var(--lh-border);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.lh-state-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.lh-card-banner {
    height: 100px;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark-green);
}
.lh-card-banner img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.lh-card-banner-grad {
    position: absolute; inset: 0;
    background: var(--accent-gradient);
}
.lh-card-abbr {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.25rem; font-weight: 900;
    color: rgba(255,255,255,.12); letter-spacing: .08em;
}
.lh-card-active {
    position: absolute; top: .625rem; right: .625rem;
    background: var(--primary-dark-green);
    color: #fff;
    font-size: .58rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .2rem .55rem;
}
.lh-card-body { padding: 1.125rem 1.25rem .875rem; flex: 1; }
.lh-card-title {
    font-size: 1.05rem; font-weight: 800;
    color: var(--lh-ink); margin-bottom: .25rem;
}
.lh-card-meta {
    font-size: .72rem; color: var(--text-muted);
    margin-bottom: .625rem;
}
.lh-card-desc {
    font-size: .82rem; color: var(--lh-body); line-height: 1.55;
}
.lh-card-desc a { color: var(--accent-primary); }
.lh-card-footer {
    background: var(--primary-orange);
    padding: .8rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .67rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    color: #fff; text-decoration: none;
}
.lh-card-footer:hover {
    color: #fff; text-decoration: none;
}
.lh-card-footer a {
    font-size: .67rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    color: #fff; text-decoration: none;
}
.lh-card-arrow { color: rgba(255,255,255,.6); font-size: 1rem; }

/* ═══════════ 5. WHY STATE MATTERS ══════════════ */
.lh-why { padding: 4.5rem 0; background: #fff; border-top: 1px solid var(--lh-border); }
.lh-why-heading {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 900; color: var(--lh-ink);
    line-height: 1.1; letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.lh-why-body { font-size: .9rem; color: var(--lh-body); line-height: 1.75; }
.lh-reason-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
}
.lh-reason-item { display: flex; gap: .875rem; align-items: flex-start; }
.lh-reason-num {
    width: 32px; min-width: 32px; height: 32px;
    border: 1.5px solid #c8c4bb;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 800;
    color: var(--lh-body);
    margin-top: .1rem;
    flex-shrink: 0;
}
.lh-reason-heading {
    font-size: .9rem; font-weight: 700;
    color: var(--lh-ink); margin-bottom: .375rem;
}
.lh-reason-body {
    font-size: .82rem; color: var(--lh-body); line-height: 1.6;
}

/* ═══════════ 6. HOW WE REPRESENT ═══════════════ */
.lh-how { background: var(--primary-dark-green); padding: 4.5rem 0; }
.lh-how .lh-eyebrow { color: var(--secondary-beige); }
.lh-how h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; letter-spacing: -.02em;
    max-width: 520px;
}
.lh-how-sidenote {
    font-size: .82rem; color: var(--text-muted);
    line-height: 1.65; max-width: 260px;
    text-align: right; margin-left: auto;
}
.lh-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding-top: 0;
}
.lh-step {
    padding: 2rem 2rem 1.5rem 0;
    border-right: 1px solid rgba(255,255,255,.1);
    padding-right: 2rem;
}
.lh-step:last-child { border-right: none; padding-right: 0; }
.lh-step:not(:first-child) { padding-left: 2rem; }
.lh-step-num {
    font-size: 2.25rem; font-weight: 900;
    color: var(--secondary-beige); line-height: 1;
    margin-bottom: 1rem;
}
.lh-step-heading {
    font-size: .875rem; font-weight: 700;
    color: #fff; margin-bottom: .5rem;
}
.lh-step-body {
    font-size: .8rem; color: var(--text-muted); line-height: 1.65;
}

/* ═══════════ 7. ABOUT THE FIRM ═════════════════ */
.lh-about { background: #fff; padding: 4.5rem 0; border-top: 1px solid var(--lh-border); }
.lh-about h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 900; color: var(--lh-ink);
    letter-spacing: -.02em; margin-bottom: .875rem;
}
.lh-about-body {
    font-size: .9rem; color: var(--lh-body);
    line-height: 1.75; margin-bottom: 1.75rem;
}
.lh-about-body a { color: var(--accent-primary); }
/* Team cards */
.lh-team-row { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.lh-team-card {
    display: flex; align-items: flex-start; gap: .875rem;
    flex: 1; min-width: 200px;
}
.lh-team-avatar {
    width: 44px; min-width: 44px; height: 44px;
    background: var(--primary-dark-green);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800;
    letter-spacing: .04em;
    flex-shrink: 0;
}
.lh-team-name { font-size: .9rem; font-weight: 700; color: var(--lh-ink); margin-bottom: .1rem; }
.lh-team-role { font-size: .75rem; color: var(--text-muted); }
/* Right sidebar cards */
.lh-sidebar-card {
    border: 1px solid var(--lh-border);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.lh-sidebar-label {
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: .75rem;
}
.lh-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.lh-badge {
    border: 1px solid #c8c4bb;
    padding: .25rem .75rem;
    font-size: .78rem; font-weight: 600;
    color: var(--lh-ink); text-decoration: none;
    transition: background .15s;
}
.lh-badge:hover { background: #f5f2eb; color: var(--lh-ink); }
.lh-press-list { margin: 0; padding: 0; list-style: none; }
.lh-press-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: .7rem 0;
    border-bottom: 1px solid #eae7e0;
    font-size: .9rem; font-weight: 500; color: var(--lh-ink);
    text-decoration: none;
}
.lh-press-item:last-child { border-bottom: none; }
.lh-press-item:hover { color: var(--accent-primary); }
.lh-press-icon { font-size: .72rem; color: var(--text-muted); }
.lh-rating-card {
    background: var(--primary-dark-green);
    padding: 1.125rem 1.375rem;
    display: flex; align-items: center; gap: 1.25rem;
}
.lh-rating-score {
    font-size: 2.25rem; font-weight: 900;
    color: #fff; line-height: 1;
}
.lh-rating-stars { color: var(--secondary-beige); font-size: .875rem; margin-bottom: .2rem; }
.lh-rating-desc { font-size: .72rem; color: var(--text-muted); line-height: 1.45; }

/* ═══════════ 8. FAQ ══════════════════════════════ */
.lh-faq { background: #fff; padding: 4.5rem 0; border-top: 1px solid var(--lh-border); }
.lh-faq-heading {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 900; color: var(--lh-ink);
    line-height: 1.15; letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.lh-faq-subnote {
    font-size: .82rem; color: var(--text-muted); line-height: 1.6;
}
.lh-faq-subnote a { color: var(--accent-primary); }
.lh-accordion { border-top: 1px solid var(--lh-border); }
.lh-acc-row { border-bottom: 1px solid var(--lh-border); }
.lh-acc-btn {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.125rem 0;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    font-size: .925rem; font-weight: 700;
    color: var(--lh-ink); cursor: pointer;
    transition: color .15s;
}
.lh-acc-btn:hover { color: var(--accent-primary); }
.lh-acc-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; flex-shrink: 0;
    border: 1.5px solid var(--accent-primary);
    border-radius: 50%;
    color: var(--accent-primary);
    font-size: 1rem; font-weight: 400; line-height: 1;
    transition: background .15s, color .15s;
}
.lh-acc-btn[aria-expanded="true"] .lh-acc-icon {
    background: var(--accent-primary); color: #fff;
}
/* Body: hidden by default, JS controls display */
.lh-acc-body {
    display: none;
    overflow: hidden;
}
.lh-acc-body-inner {
    font-size: .875rem; color: var(--lh-body);
    line-height: 1.75; padding-bottom: 1.25rem;
}

/* ═══════════ 9. GET STARTED ═════════════════════ */
.lh-start { background: var(--secondary-cream); padding: 5rem 0; }
.lh-start-heading {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 900; color: var(--lh-ink);
    line-height: 1.1; letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.lh-start-body {
    font-size: .9rem; color: var(--lh-body);
    line-height: 1.75; margin-bottom: 2rem;
}
.lh-start-body a { color: var(--accent-primary); }
.lh-call-label {
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: .3rem;
}
.lh-phone {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900; color: var(--lh-ink);
    text-decoration: none; display: block;
    letter-spacing: -.01em; line-height: 1.1;
    margin-bottom: .3rem;
}
.lh-phone:hover { color: var(--accent-primary); }
.lh-hours { font-size: .78rem; color: var(--text-muted); }
/* Form partial rendered inside .lh-start right col */
.lh-start .col-lg-7 { align-self: stretch; }

/* ═══════════ RESPONSIVE ═════════════════════════ */
@media (max-width: 991px) {
    .lh-how-sidenote { text-align: left; margin-left: 0; max-width: 100%; margin-top: .75rem; }
    .lh-steps-grid { grid-template-columns: repeat(2,1fr); }
    .lh-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 1.75rem 0; }
    .lh-step:last-child { border-bottom: none; }
    .lh-step:not(:first-child) { padding-left: 0; }
    .lh-reason-grid { gap: 1.5rem 2rem; }
}
@media (max-width: 767px) {
    .lh-hero { padding: 3rem 0 2.5rem; }
    .lh-hero::after, .lh-hero::before { display: none; }
    .lh-stat { padding-right: 1.25rem; margin-right: 1.25rem; }
    .lh-footprint, .lh-notsure, .lh-directory { padding-top: 2.5rem; }
    .lh-dir-header { flex-direction: column; align-items: flex-start; }
    .lh-dir-toggles { display: none; }
    .lh-cards-grid { grid-template-columns: 1fr; }
    .lh-why, .lh-how, .lh-about, .lh-faq, .lh-start { padding: 3rem 0; }
    .lh-reason-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .lh-steps-grid { grid-template-columns: 1fr; }
    .lh-step { padding: 1.5rem 0; }
    .lh-team-row { flex-direction: column; }
    .lh-how-sidenote { display: none; }
    .lh-faq-heading { font-size: 1.5rem; }
    .lh-start-heading { font-size: 1.875rem; }
}
@media (max-width: 575px) {
    .lh-hero h1 { font-size: 2rem; }
    .lh-stats-strip { gap: .5rem 0; }
    .lh-stat { padding-right: 1rem; margin-right: 1rem; }
    .lh-stat-val { font-size: 1.125rem; }
    .lh-notsure-btns { margin-top: 1.25rem; }
    /* ft-table responsive handled in component block */
}

/* ═══════════ MOBILE OVERFLOW FIX ═══════════════ */

/* 1. Contain the wrapper — clips hero pseudo-elements */
.lh { overflow-x: hidden; max-width: 100%; }
.lh-hero { overflow: hidden; }

/* 2. Stat strip — 2-up grid on tiny screens */
@media (max-width: 575px) {
    .lh-stats-strip { flex-wrap: wrap; gap: .75rem 0; }
    .lh-stat {
        flex: 0 0 50%;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
    .lh-stat:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.12);
        padding-right: 1rem;
    }

    /* 3. State tabs scroll within, don't push layout */
    .lh-state-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    /* 4. Cards stay single-column */
    .lh-cards-grid {
        padding-left: 0;
        padding-right: 0;
    }
}

/* 5. Images and tables never exceed their column */
.lh img, .lh table, .lh .lh-ft-table { max-width: 100%; }