:root {
    --font-heading: Georgia, "Times New Roman", serif;
    --font-body: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a,
button,
.service-card,
.review-card,
.image-zoom img {
    transition: all 220ms ease;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(13, 93, 52, 0.18);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--accent);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1;
    color: #111827;
    letter-spacing: -0.02em;
}

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

.hamburger-button {
    display: inline-flex !important;
}

@media (min-width: 768px) {
    .desktop-nav,
    .desktop-header-phone {
        display: flex !important;
    }

    .hamburger-button,
    .mobile-panel,
    .mobile-sticky-call {
        display: none !important;
    }
}

.desktop-nav a {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

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

.phone-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    background: var(--primary);
    color: #fff !important;
    border: 2px solid var(--accent);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.45);
    animation: glowPulse 2s infinite;
}

.phone-button:hover,
.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-panel {
    display: none;
    position: fixed;
    z-index: 60;
    inset: 73px 0 auto 0;
    background: #fff;
    border-bottom: 2px solid var(--primary);
    padding: 18px 20px 24px;
    box-shadow: 0 24px 60px rgba(6,36,22,0.18);
}

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

.mobile-panel a:not(.phone-button) {
    display: block;
    padding: 13px 0;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(13,93,52,0.14);
}

.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background-image: linear-gradient(115deg, rgba(2, 22, 13, 0.84), rgba(13, 93, 52, 0.76)), url("../images/hero-kitchen.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-section h1 {
    color: #fff;
    font-size: 39px;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 56px;
    }
}

.hero-lead {
    color: #F6FFF8;
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto;
}

.hero-stars {
    color: var(--accent);
    font-size: 28px;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.42);
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.trust-icons img {
    width: auto;
    height: 48px;
    max-width: 120px;
    object-fit: contain;
    background: #fff;
    padding: 5px 9px;
    border: 1px solid rgba(121,199,159,0.8);
}

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

@media (min-width: 768px) {
    .section-pad {
        padding: 96px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(121,199,159,0.22);
    color: #073C22;
    border-left: 5px solid var(--accent);
    padding: 8px 13px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
}

.section-title {
    position: relative;
    font-size: 31px;
    line-height: 1.14;
    letter-spacing: -0.035em;
    margin-top: 14px;
    padding-bottom: 18px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 44px;
    }
}

.section-title::after,
.card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 5px;
    background: var(--accent);
}

.text-center .section-title::after,
.section-title.center-line::after {
    left: 50%;
    transform: translateX(-50%);
}

h3,
h4 {
    font-size: 22px;
    line-height: 1.25;
    color: #111827;
}

.dark-section {
    background: var(--surface-dark);
    color: #F8FFF9;
}

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

.dark-section p,
.dark-section li {
    color: #E9FFF0;
}

.double-card {
    background: #fff;
    color: #263229;
    border: 2px solid var(--primary);
    outline: 2px solid rgba(121,199,159,0.75);
    outline-offset: 5px;
    box-shadow: 0 18px 45px rgba(6,36,22,0.10);
}

.double-card h3,
.double-card h4,
.double-card p,
.double-card li {
    color: #111827;
}

.service-card {
    min-height: 100%;
}

.service-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(6,36,22,0.14);
}

.icon-box {
    width: 58px;
    height: 58px;
    background: #E7F7EC;
    border: 2px solid var(--accent);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.info-split {
    display: grid;
    gap: 28px;
}

@media (min-width: 768px) {
    .info-split {
        grid-template-columns: 7fr 3fr;
        align-items: center;
    }
}

.image-zoom {
    overflow: hidden;
    border: 2px solid var(--primary);
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}

.image-zoom:hover img {
    transform: scale(1.045);
}

.image-zoom img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.process-step {
    position: relative;
    padding-left: 72px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #062416;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
}

.review-track {
    display: flex;
    transition: transform 420ms ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    padding: 12px;
}

@media (min-width: 768px) {
    .review-card {
        flex-basis: 33.3333%;
    }
}

.review-inner {
    min-height: 350px;
    background: #fff;
    color: #111827;
    border: 2px solid var(--primary);
    outline: 2px solid rgba(121,199,159,0.7);
    outline-offset: 4px;
    padding: 28px;
}

.review-inner p,
.review-inner strong {
    color: #111827;
}

.review-stars {
    color: #0D5D34;
    letter-spacing: 0.08em;
    font-weight: 900;
}

.carousel-button {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 24px;
    font-weight: 900;
}

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

.cta-band {
    background: linear-gradient(135deg, #062416, #0D5D34);
    color: #fff;
    border-top: 6px solid var(--accent);
    border-bottom: 6px solid var(--accent);
}

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

.area-list li,
.payment-list li {
    background: #fff;
    border-left: 5px solid var(--accent);
    padding: 12px 16px;
    color: #111827;
    font-weight: 800;
}

.footer {
    background: #03170E;
    color: #DDF5E4;
    font-size: 14px;
}

.footer a,
.footer p,
.footer li {
    color: #DDF5E4;
}

.footer h3,
.footer h4 {
    color: #fff;
}

.mobile-sticky-call {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    transform: translateY(110%);
    opacity: 0;
    background: var(--primary-dark);
    border-top: 3px solid var(--accent);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    transition: opacity 240ms ease, transform 240ms ease;
}

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

.mobile-sticky-call a {
    width: 100%;
    min-height: 52px;
    color: #fff !important;
    font-size: 16px;
    white-space: nowrap;
}

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

@keyframes glowPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.42); }
    70% { box-shadow: 0 0 0 13px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

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

@media (max-width: 767px) {
    .hero-section {
        min-height: 700px;
        padding-top: 38px;
        padding-bottom: 64px;
    }

    .trust-icons {
        gap: 8px;
    }

    .trust-icons img {
        height: 38px;
        max-width: 86px;
        padding: 4px 6px;
    }
}
