* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 86px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: var(--heading);
    color: var(--accent);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: var(--heading);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.nav a:hover {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: var(--accent-strong);
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(17, 24, 39, 0.15);
    background: #ffffff;
    border-radius: var(--radius);
    width: 46px;
    height: 46px;
    color: var(--heading);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    background: var(--accent);
    color: #111827;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.13);
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.btn-dark {
    background: #111827;
    color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
    background: var(--accent);
    color: #111827;
    border-color: #111827;
}

.phone-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.hero {
    background: linear-gradient(135deg, #E7E8E2 0%, #F7F8EF 58%, #D8DAD3 100%);
    padding: 64px 0 44px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: rgba(247, 250, 122, 0.55);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    gap: 38px;
    align-items: stretch;
}

.hero-copy,
.hero-media {
    min-height: 500px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    padding: 8px 13px;
    color: #111827;
    font-weight: 800;
    font-size: 16px;
}

h1 {
    margin: 22px 0 12px;
    font-size: clamp(35px, 5.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h3,
h4 {
    font-size: 20px;
    line-height: 1.22;
    margin: 0 0 10px;
}

p {
    margin: 0 0 18px;
    font-size: 16px;
}

.hero-lead {
    max-width: 640px;
    font-size: 19px;
    color: #2F343A;
}

.stars {
    color: #ADB30A;
    font-size: 23px;
    letter-spacing: 3px;
    font-weight: 900;
    margin: 8px 0 14px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 22px;
}

.gallery-badge {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.cta-line {
    margin: 2px 0 14px;
    font-size: 18px;
    color: #111827;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: var(--radius);
    padding: 16px;
    font-weight: 800;
    color: #111827;
}

.trust-item svg {
    width: 28px;
    height: 28px;
    color: #111827;
    margin-bottom: 8px;
}

.hero-media {
    position: relative;
    display: grid;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    left: -18px;
    bottom: 24px;
    width: min(260px, calc(100% - 30px));
    background: #111827;
    color: #ffffff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.floating-card span {
    color: #F7FA7A;
    font-weight: 800;
}

.section {
    padding: 82px 0;
}

.section-alt {
    background: var(--surface-alt);
}

.section-dark {
    background: #111827;
    color: #E5E7EB;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #ffffff;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.underlined::after {
    content: "";
    display: block;
    width: 74px;
    height: 6px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--accent);
    transform-origin: left center;
    animation: line-grow linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 42%;
}

.center .underlined::after {
    margin-left: auto;
    margin-right: auto;
    transform-origin: center;
}

@keyframes line-grow {
    from { width: 74px; }
    to { width: min(100%, 380px); }
}

.intro-card {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 48px);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.intro-card img {
    border-radius: var(--radius);
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.two-col {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
    margin-bottom: 28px;
}

.two-col:nth-child(even) {
    background: #FDFEF0;
}

.two-col.media-left {
    grid-template-columns: 35% 65%;
}

.two-col.media-left .service-content {
    order: 2;
}

.service-media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius);
}

.issue-list,
.zip-list,
.area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 14px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.issue-list li,
.zip-list li,
.area-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #29313A;
}

.issue-list li::before,
.zip-list li::before,
.area-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(247, 250, 122, 0.55);
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.choice-card,
.icon-card,
.faq-item {
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.09);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.choice-card {
    padding: 22px;
}

.choice-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    border-radius: 14px;
    background: #111827;
    color: #F7FA7A;
    font-weight: 900;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.icon-card {
    padding: 16px;
    text-align: center;
    font-weight: 800;
    color: #111827;
}

.icon-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 10px;
    border-radius: 16px;
}

.reviews-shell {
    position: relative;
}

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

.review-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.review-stars {
    color: #ADB30A;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 20px;
}

.review-name {
    font-weight: 900;
    color: #111827;
    margin-top: 16px;
}

.carousel-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.carousel-controls button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.local-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.model-strip {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
    color: #111827;
    border-left: 8px solid var(--accent);
}

.cta-band {
    background: linear-gradient(135deg, #111827, #2F343A);
    color: #ffffff;
    border-radius: calc(var(--radius) + 10px);
    padding: clamp(28px, 5vw, 58px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

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

.faq-item {
    padding: 24px;
}

.site-footer {
    background: #0B0F14;
    color: #C9D1DB;
    padding: 58px 0 36px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
    margin-bottom: 32px;
}

.site-footer .logo {
    color: #ffffff;
    margin-bottom: 18px;
}

.site-footer a {
    color: #ffffff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    color: #AEB7C2;
    font-size: 14px;
    line-height: 1.55;
}

.mobile-call {
    display: none;
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .nav {
        position: fixed;
        inset: 86px 0 auto 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(17, 24, 39, 0.12);
        padding: 10px 20px 18px;
        box-shadow: 0 24px 60px rgba(17, 24, 39, 0.13);
    }

    .nav.is-open {
        display: grid;
    }

    .nav a {
        padding: 13px 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .choice-grid,
    .service-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 104px;
        flex-wrap: wrap;
        gap: 8px 10px;
        padding: 10px 0;
    }

    .logo {
        max-width: calc(100% - 58px);
        white-space: normal;
        font-size: 24px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-actions .btn {
        min-height: 44px;
        padding: 11px 12px;
        font-size: 16px;
    }

    .nav {
        inset: 104px 0 auto 0;
    }

    .hero {
        padding-top: 36px;
    }

    .hero-grid,
    .intro-card,
    .local-grid,
    .cta-band,
    .footer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-media {
        min-height: auto;
    }

    h1 {
        font-size: clamp(35px, 11vw, 43px);
    }

    h2 {
        font-size: clamp(28px, 9vw, 31px);
    }

    .trust-row,
    .choice-grid,
    .service-icons {
        grid-template-columns: 1fr;
    }

    .two-col,
    .two-col.media-left {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .two-col.media-left .service-content {
        order: 0;
    }

    .issue-list,
    .zip-list,
    .area-list {
        grid-template-columns: 1fr;
    }

    .reviews-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .reviews-track::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 88%;
        scroll-snap-align: center;
    }

    .carousel-controls {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .mobile-call {
        display: block;
    }

    body {
        padding-bottom: 84px;
    }
}

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

    .hero-media {
        min-height: 420px;
    }

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

    .review-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}
