:root {
    --rose: #b5233a;
    --rose-dark: #8f1930;
    --ink: #17212b;
    --muted: #607080;
    --line: #dfe6ea;
    --cream: #f8f4ef;
    --sky: #e8f3f7;
    --green: #24483d;
    --gold: #c98a2b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background: var(--white);
    padding-bottom: 0;
}

a {
    color: var(--rose);
    text-decoration: none;
}

a:hover {
    color: var(--rose-dark);
}

.container-xl {
    max-width: 1180px;
}

.top-strip {
    background: var(--ink);
    color: var(--white);
    font-size: 0.92rem;
}

.top-strip-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
    min-height: 42px;
}

.top-strip a {
    color: var(--white);
}

.main-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-mark {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 650;
    padding: 0.75rem 0.9rem;
}

.nav-cta {
    margin-left: 0.5rem;
}

.btn {
    border-radius: 6px;
    font-weight: 750;
}

.btn-primary {
    background: var(--rose);
    border-color: var(--rose);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
}

.btn-outline-primary {
    color: var(--rose);
    border-color: var(--rose);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--rose);
    border-color: var(--rose);
}

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(20, 31, 42, 0.92) 0%, rgba(20, 31, 42, 0.78) 48%, rgba(20, 31, 42, 0.36) 100%),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=72") center/cover no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    max-width: 820px;
}

.hero-lede {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 680px;
    margin: 1.25rem 0 1.75rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.quote-panel {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.quote-panel h2 {
    font-size: 1.75rem;
}

.panel-label {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--sky);
    color: var(--green);
    font-weight: 800;
    margin-bottom: 1rem;
}

.quote-panel dl {
    margin-bottom: 0;
}

.quote-panel dt {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    margin-top: 1rem;
}

.quote-panel dd {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0;
}

.coverage-strip {
    background: var(--green);
    color: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.coverage-grid a {
    color: var(--white);
    min-height: 132px;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coverage-grid span {
    font-size: 1.35rem;
    font-weight: 850;
    margin-bottom: 0.25rem;
}

.section {
    padding: 5.5rem 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2,
.split-section h2,
.muted-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.split-section p,
.muted-section p {
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card,
.process-grid article,
.service-card,
.contact-card,
.contact-form-card,
.quote-help,
.values-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 1.6rem;
}

.feature-card {
    min-height: 250px;
}

.feature-icon,
.process-grid span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--green);
    font-weight: 900;
    margin-bottom: 1rem;
}

.feature-card p,
.process-grid p,
.service-card p,
.contact-form-card p {
    color: var(--muted);
}

.split-section {
    padding: 5.5rem 0;
    background: var(--cream);
}

.image-tile {
    min-height: 480px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 50px rgba(23, 33, 43, 0.18);
}

.family-visual {
    background-image:
        linear-gradient(180deg, rgba(23, 33, 43, 0.04), rgba(23, 33, 43, 0.28)),
        url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=72");
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.check-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rose);
}

.text-link {
    font-weight: 850;
}

.cta-band {
    background: var(--rose);
    color: var(--white);
    padding: 4rem 0;
}

.cta-band .eyebrow,
.page-hero .eyebrow {
    color: #ffd690;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-inner p {
    margin-bottom: 0;
}

.page-hero {
    color: var(--white);
    padding: 6.5rem 0;
    background:
        linear-gradient(90deg, rgba(23, 33, 43, 0.9), rgba(23, 33, 43, 0.65)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=72") center/cover no-repeat;
}

.services-hero {
    background:
        linear-gradient(90deg, rgba(23, 33, 43, 0.9), rgba(23, 33, 43, 0.58)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=72") center/cover no-repeat;
}

.compact-hero {
    min-height: 360px;
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.88);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card span {
    color: var(--rose);
    font-weight: 850;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.service-card ul {
    margin-bottom: 0;
}

.muted-section {
    background: var(--sky);
}

.support-list {
    display: grid;
    gap: 0.75rem;
}

.support-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    border-radius: 8px;
    background: var(--white);
    padding: 1rem 1.25rem;
    color: var(--ink);
    font-weight: 850;
}

.support-list a::after {
    content: ">";
    color: var(--rose);
}

.process-grid article {
    min-height: 210px;
}

.contact-section {
    background: var(--cream);
}

.contact-card,
.contact-form-card,
.quote-help {
    height: 100%;
}

.contact-card address {
    font-style: normal;
    font-size: 1.1rem;
}

label {
    display: block;
    font-weight: 750;
    margin-bottom: 0.35rem;
}

input,
select,
textarea,
.form-control,
.form-select {
    max-width: 100%;
    border-radius: 6px;
    border-color: #ccd8dd;
    min-height: 48px;
}

textarea.form-control {
    min-height: 140px;
}

.field-validation-error,
.validation-summary {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.35rem;
}

.validation-summary ul {
    margin-bottom: 1rem;
}

.captcha-wrap {
    min-height: 78px;
    overflow: hidden;
}

.quote-help .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
}

.hours-box {
    display: grid;
    gap: 0.35rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 0 2rem;
}

.site-footer a {
    color: var(--white);
}

.footer-brand {
    display: inline-block;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-call {
    display: none;
}

@media (max-width: 991px) {
    .top-strip-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
        padding: 0.45rem 0;
    }

    .nav-cta {
        margin: 0.5rem 0 0;
    }

    .hero {
        min-height: auto;
        padding: 5rem 0;
    }

    .hero-grid,
    .feature-grid,
    .process-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 64px;
    }

    .top-strip span {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 4rem 0;
    }

    .quote-panel {
        padding: 1.25rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid a {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .section,
    .split-section {
        padding: 4rem 0;
    }

    .image-tile {
        min-height: 320px;
    }

    .page-hero {
        padding: 4.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .mobile-call {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        background: var(--rose);
        color: var(--white);
        text-align: center;
        font-weight: 900;
        padding: 1rem;
        box-shadow: 0 -10px 24px rgba(23, 33, 43, 0.18);
    }
}
