html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    padding-bottom: 0;
}

body.has-mobile-call {
    padding-bottom: 78px;
}

.site-shell {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.logo-text {
    font-family: var(--font-heading, Georgia, "Times New Roman", serif);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.desktop-nav,
.desktop-phone {
    display: none !important;
}

.mobile-toggle {
    display: inline-flex !important;
}

.mobile-menu {
    display: none;
}

.mobile-menu.is-open {
    display: block;
}

@media (min-width: 768px) {
    body.has-mobile-call {
        padding-bottom: 0;
    }

    .desktop-nav,
    .desktop-phone {
        display: flex !important;
    }

    .mobile-toggle,
    .mobile-menu,
    .mobile-sticky-call {
        display: none !important;
    }
}

.nav-link {
    font-size: 16px;
    color: #111827;
    text-decoration: none;
    transition: color .2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.phone-link {
    white-space: nowrap;
    color: #FFFFFF !important;
    background: var(--primary);
    border: 1px solid var(--primary);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    text-decoration: none;
    font-weight: 700;
}

.hero-phone,
.cta-button {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #091D37 !important;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, color .2s ease;
    animation: whitePulse 2s ease-in-out infinite;
}

.cta-button.dark {
    color: #FFFFFF !important;
    background: var(--primary);
    border-color: var(--primary);
}

.hero-phone:hover,
.cta-button:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: #091D37 !important;
}

@keyframes whitePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.42); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background-image: linear-gradient(180deg, rgba(9,29,55,.82), rgba(9,29,55,.70)), url('../images/hero-kitchen.png');
    background-position: center;
    background-size: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 5% 8% auto;
    width: min(420px, 70vw);
    height: 190px;
    border: 1px solid rgba(100,196,192,.65);
    z-index: -1;
}

.eyebrow {
    display: inline-flex;
    color: #091D37;
    background: #DDF7F5;
    border-left: 4px solid var(--accent);
    padding: 7px 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #FFFFFF;
    background: rgba(100,196,192,.18);
    border-left-color: var(--accent);
}

h1 {
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.045em;
}

h2 {
    font-size: 24px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.035em;
}

h3,
h4 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

p,
li,
blockquote {
    font-size: 16px;
    line-height: 1.72;
}

.heading-rule::after {
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    margin-top: 18px;
    background: var(--accent);
}

.heading-rule.center::after {
    margin-inline: auto;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(16px);
    animation: titleLine .7s ease forwards;
}

.hero-title span:nth-child(2) {
    animation-delay: .16s;
}

.hero-title span:nth-child(3) {
    animation-delay: .32s;
}

@keyframes titleLine {
    to { opacity: 1; transform: translateY(0); }
}

.star-row {
    color: var(--accent);
    font-size: 24px;
    letter-spacing: .08em;
}

.trust-icon {
    width: auto;
    height: 48px;
    max-width: 92px;
    object-fit: contain;
    background: rgba(255,255,255,.93);
    padding: 6px;
}

.split-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
}

.split-text,
.split-media {
    width: 100%;
}

@media (min-width: 900px) {
    .split-row {
        flex-direction: row;
        align-items: center;
        gap: 42px;
    }

    .split-text {
        flex: 0 0 70%;
    }

    .split-media {
        flex: 0 0 30%;
    }
}

.editorial-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #DFE8EC;
    padding: 28px;
    color: #374151;
}

.editorial-card::before {
    content: "";
    position: absolute;
    inset: -12px 12px 12px -12px;
    border: 1px solid rgba(100,196,192,.42);
    pointer-events: none;
    z-index: -1;
}

.section-pad {
    padding: 72px 0;
}

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

.service-card,
.benefit-card,
.faq-card {
    background: #FFFFFF;
    border: 1px solid #DFE8EC;
    padding: 24px;
    color: #374151;
    transition: transform .2s ease, border-color .2s ease;
}

.service-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.service-icon,
.benefit-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.review-shell {
    overflow: hidden;
}

.review-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

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

.review-card {
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1px solid #DFE8EC;
    padding: 26px;
    min-height: 300px;
    color: #374151;
}

@media (min-width: 900px) {
    .review-track {
        grid-auto-columns: calc((100% - 36px) / 3);
    }
}

.carousel-button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--primary);
    background: #FFFFFF;
    color: #091D37;
    font-size: 22px;
    line-height: 1;
}

.carousel-button:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.zip-pill {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid #C9D6DE;
    color: #111827;
    background: #FFFFFF;
    font-weight: 700;
}

.mobile-sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 70;
    transform: translateY(110%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    background: var(--primary);
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 2px solid var(--accent);
}

.mobile-sticky-call.is-visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-sticky-call a {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    background: #0F8F73;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
    font-size: 16px;
}

.footer-link {
    color: #FFFFFF !important;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent) !important;
}

@media (min-width: 768px) {
    body.has-mobile-call {
        padding-bottom: 0 !important;
    }

    .mobile-sticky-call,
    .mobile-sticky-call.is-visible {
        display: none !important;
        opacity: 0 !important;
        transform: translateY(110%) !important;
    }

    h1 {
        font-size: clamp(42px, 5vw, 72px);
    }

    h2 {
        font-size: clamp(34px, 3.3vw, 48px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
