:root {
    --teal: #0b7773;
    --orange: #b94700;
    --muted: #536b7a;
}

.section-dark .steps b,
.site-footer .footer-grid b {
    color: #ff9a52;
}

.form-progress {
    display: grid;
    gap: 10px;
    margin: 0 0 4px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f5fafb;
}

.form-progress[hidden],
.form-step[hidden] {
    display: none;
}

.form-progress > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.form-progress strong {
    color: var(--navy);
    font-size: .88rem;
}

.form-progress span {
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
}

.form-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce8ec;
}

.form-progress-track i {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: var(--teal);
    transition: width .2s ease;
}

.form-step {
    display: grid;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    gap: 18px;
}

.form-step > legend {
    margin: 0 0 2px;
    padding: 0;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 900;
}

.form-step-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.form-submit-actions {
    display: flex;
}

.contact-form:not(.form-enhanced) [data-form-back] {
    display: none;
}

.contact-form.form-enhanced .form-step-actions {
    display: flex;
}

.form-step-actions .button {
    margin: 0;
}

.form-step-actions [data-form-back] {
    border-color: #a9c0ca;
    color: var(--navy);
    background: #fff;
}

.service-advisor {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(220px, 1.1fr);
    gap: 14px 20px;
    padding: 18px;
    border: 1px solid #cbdde3;
    border-radius: 16px;
    background: #f6fafc;
}

.service-advisor > div span {
    display: block;
    margin-bottom: 3px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-advisor h2 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 1.08rem;
}

.service-advisor > div p,
.service-advisor-result {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}

.service-advisor-result {
    grid-column: 1 / -1;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    font-weight: 750;
}

.service-advisor-noscript {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

.request-summary {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #b8d7d5;
    border-radius: 16px;
    background: #f2f9f8;
}

.request-summary[hidden] {
    display: none;
}

.request-summary-heading span {
    display: block;
    margin-bottom: 3px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.request-summary-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.15rem;
}

.request-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.request-summary dl div {
    min-width: 0;
    padding: 11px 12px;
    border-radius: 10px;
    background: #fff;
}

.request-summary dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
}

.request-summary dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--navy);
    font-weight: 850;
}

.request-summary small {
    color: var(--muted);
}

.guide-hero h1 {
    max-width: 900px;
}

.guide-intro {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 30px;
}

.guide-intro h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.guide-intro > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.guide-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(18, 59, 93, .05);
}

.guide-card > span {
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guide-card > h2,
.guide-service h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.18;
}

.guide-card > h2 {
    font-size: 1.45rem;
}

.guide-card > p,
.guide-service p {
    margin: 0;
    color: var(--muted);
}

.guide-service {
    padding: 16px;
    border-radius: 14px;
    background: #f2f9f8;
}

.guide-service small {
    color: var(--teal);
    font-weight: 850;
}

.guide-service h3 {
    margin-top: 4px;
    font-size: 1.15rem;
}

.guide-service h3 a {
    text-decoration: none;
}

.guide-service p {
    margin-top: 7px;
    font-size: .9rem;
}

.guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.guide-actions .button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: .9rem;
}

.call-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px 30px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(18, 59, 93, .1);
}

.call-band h2 {
    margin: 7px 0 4px;
    color: var(--navy);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.1;
}

.call-band p {
    margin: 0;
    color: var(--muted);
}

.call-band .button {
    min-width: 180px;
}

.call-checklist {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.call-checklist li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.call-checklist b {
    color: var(--teal);
    font-size: .82rem;
    letter-spacing: .08em;
}

.call-checklist strong,
.call-checklist span {
    display: block;
}

.call-checklist strong {
    color: var(--navy);
}

.call-card h2 {
    overflow-wrap: anywhere;
}

.landing-breadcrumb {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.landing-breadcrumb .wrap {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 48px;
    overflow-x: auto;
    color: var(--muted);
    font-size: .82rem;
    white-space: nowrap;
}

.landing-breadcrumb a {
    color: var(--teal);
    font-weight: 800;
    text-decoration: none;
}

.landing-breadcrumb strong {
    color: var(--navy);
}

.neighborhood-hero {
    padding-block: clamp(56px, 8vw, 92px);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(30px, 6vw, 76px);
    align-items: center;
}

.landing-hero-grid > div > h1 {
    max-width: 920px;
}

.landing-call-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 20px 52px rgba(6, 36, 57, .2);
}

.landing-call-card > span {
    color: #ffd1b0;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.landing-call-card h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.08;
}

.landing-call-card p {
    color: #d8e7ee;
}

.landing-call-card ol {
    display: grid;
    gap: 10px;
    margin: 20px 0 22px;
    padding: 0;
    list-style: none;
}

.landing-call-card li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    color: #fff;
    font-weight: 750;
}

.landing-call-card li b {
    color: #ffb37d;
    font-size: .78rem;
}

.landing-call-card .button {
    width: 100%;
}

.intent-strip {
    border-block: 1px solid var(--line);
    background: #fff;
}

.intent-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intent-grid article {
    min-width: 0;
    padding: 22px 28px;
    border-right: 1px solid var(--line);
}

.intent-grid article:last-child {
    border-right: 0;
}

.intent-grid span,
.intent-grid strong {
    display: block;
}

.intent-grid span {
    margin-bottom: 5px;
    color: var(--teal);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.intent-grid strong {
    color: var(--navy);
    line-height: 1.35;
}

.section-lead {
    max-width: 780px;
    margin: -12px 0 26px;
    color: var(--muted);
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.neighborhood-grid a {
    display: flex;
    min-width: 0;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.neighborhood-grid a:hover,
.neighborhood-grid a:focus-visible {
    border-color: var(--teal);
    box-shadow: 0 10px 24px rgba(18, 59, 93, .08);
    transform: translateY(-2px);
}

.neighborhood-grid strong,
.neighborhood-grid span {
    overflow-wrap: anywhere;
}

.neighborhood-grid strong {
    color: var(--navy);
}

.neighborhood-grid span {
    margin-top: 4px;
    color: var(--teal);
    font-size: .82rem;
    font-weight: 800;
}

.neighborhood-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.landing-service-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.landing-service-grid article > span {
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.landing-service-grid h3 {
    margin: 8px 0;
    color: var(--navy);
    font-size: 1.25rem;
}

.landing-service-grid h3 a {
    text-decoration: none;
}

.landing-service-grid p {
    margin: 0 0 14px;
    color: var(--muted);
}

@media (max-width: 640px) {
    .form-progress > div:first-child {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .form-step-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .form-step-actions .button {
        width: 100%;
    }

    .service-advisor {
        grid-template-columns: 1fr;
    }

    .request-summary dl {
        grid-template-columns: 1fr;
    }

    .guide-intro,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .guide-actions .button {
        width: 100%;
    }

    .call-band {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .call-band .button {
        width: 100%;
    }

    .landing-hero-grid,
    .intent-grid,
    .landing-service-grid,
    .neighborhood-grid,
    .neighborhood-grid.compact {
        grid-template-columns: 1fr;
    }

    .intent-grid article {
        padding-inline: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .intent-grid article:last-child {
        border-bottom: 0;
    }
}

@media (min-width: 641px) and (max-width: 980px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .neighborhood-grid,
    .neighborhood-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
