:root {
    --font-heading: "Arial", "Helvetica", sans-serif;
    --font-body: "Arial", "Helvetica", sans-serif;
    --container: 1180px;
    --shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
}

* {
    box-sizing: border-box;
    border-radius: 0;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(16, 17, 20, 0.09);
    backdrop-filter: blur(14px);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: #101114;
    display: inline-grid;
    place-items: center;
    position: relative;
}

.logo-mark::before {
    content: "M";
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
}

.logo-mark::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 9px;
    right: 9px;
    height: 4px;
    background: var(--accent);
}

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

.nav a {
    font-size: 18px;
    color: #20242A;
    font-weight: 700;
}

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

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 2px solid #111827;
    background: #fff;
    color: #111827;
    padding: 10px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 2px solid transparent;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 14px 30px rgba(164, 3, 3, 0.25);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    opacity: 0;
    animation: pulseGlow 2.4s ease-out infinite;
    pointer-events: none;
}

.btn-dark-glow::after {
    border-color: rgba(164, 3, 3, 0.22);
}

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

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(9, 10, 12, 0.72), rgba(9, 10, 12, 0.74)), url("../images/kitchen-premium.jpg") center/cover no-repeat;
    color: #fff;
    padding: 76px 0 84px;
}

.hero-content {
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.hero-kicker, .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: var(--accent);
    padding: 7px 12px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 20px 0 12px;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.stars {
    color: var(--accent);
    font-size: 28px;
    letter-spacing: 5px;
    margin: 10px 0 12px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.gallery-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 18px;
    flex-wrap: wrap;
}

.gallery-icons img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 8px;
}

.hero .lead {
    color: #f4f4f2;
    font-size: 20px;
    max-width: 820px;
    margin: 0 auto 22px;
}

.hero-cta-line {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    margin: 20px 0 16px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 34px auto 0;
    max-width: 860px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 800;
}

.section {
    padding: 86px 0;
}

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

.section-dark {
    background: #101114;
    color: #f4f4f2;
}

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

.section-dark .section-badge {
    color: #fff;
}

.section-head {
    max-width: 850px;
    margin-bottom: 38px;
}

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

.section h2 {
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.1;
    margin: 16px 0 16px;
    letter-spacing: -0.035em;
}

.section h3, .section h4 {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.section h2::after, .section h3::after, .section h4::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    background: var(--accent);
    margin-top: 12px;
}

.center h2::after, .center h3::after, .center h4::after {
    margin-left: auto;
    margin-right: auto;
}

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

.split-block {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
    gap: 42px;
    align-items: center;
}

.split-block.reverse {
    grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
}

.split-block.reverse .split-image {
    order: -1;
}

.split-card {
    background: #fff;
    padding: 34px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--accent);
}

.split-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

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

.reason-card, .service-card, .review-card, .faq-item, .part-card, .payment-card, .icon-card {
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.1);
    box-shadow: 0 16px 40px rgba(16, 17, 20, 0.07);
}

.reason-card {
    padding: 22px;
}

.reason-card .check {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.service-icon, .type-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: var(--accent);
}

.service-icon svg, .type-icon svg, .mini-icon svg, .phone-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.icon-card {
    padding: 18px 12px;
    text-align: center;
    font-weight: 800;
    color: #20242A;
}

.icon-card .type-icon {
    margin: 0 auto 10px;
    width: 42px;
    height: 42px;
}

.parts-grid {
    columns: 3;
    column-gap: 22px;
    margin: 20px 0;
}

.parts-grid li {
    break-inside: avoid;
    margin: 0 0 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent);
    list-style: none;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.1);
    padding: 18px;
}

.step-num {
    background: #101114;
    color: #fff;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.reviews-shell {
    position: relative;
}

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

.review-card {
    padding: 26px;
    min-height: 260px;
}

.review-stars {
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-name {
    color: #111827;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 10px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.control-btn {
    width: 48px;
    height: 48px;
    background: #101114;
    color: #fff;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

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

.zip-list, .city-list, .payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
}

.zip-list li, .city-list li, .payment-list li {
    list-style: none;
    background: #fff;
    color: #20242A;
    border: 1px solid rgba(16, 17, 20, 0.1);
    padding: 10px 12px;
    font-weight: 800;
}

.payment-card {
    padding: 30px;
    text-align: center;
}

.payment-list {
    justify-content: center;
}

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

.faq-item {
    padding: 24px;
}

.cta-band {
    background: linear-gradient(135deg, #101114 0%, #24272e 56%, #A40303 100%);
    color: #fff;
    text-align: center;
    padding: 64px 28px;
}

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

.cta-band h2::after {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    background: #101114;
    color: #d7d7d2;
    padding: 54px 0 120px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 34px;
}

.site-footer .logo {
    color: #fff;
    margin-bottom: 16px;
}

.site-footer a {
    color: #fff;
    font-weight: 800;
}

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

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 34px;
    padding-top: 24px;
    color: #d7d7d2;
    font-size: 14px;
}

.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: 80;
}

.mobile-call .btn {
    width: 100%;
}

@keyframes pulseGlow {
    0% { transform: scale(0.96); opacity: 0.8; }
    75% { transform: scale(1.16); opacity: 0; }
    100% { transform: scale(1.16); opacity: 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: 1040px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 10px 16px;
        padding: 10px 0;
    }

    .logo {
        max-width: calc(100% - 66px);
        font-size: 24px;
    }

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

    .nav {
        display: none;
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-top: 1px solid rgba(16, 17, 20, 0.1);
    }

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

    .nav a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(16, 17, 20, 0.08);
    }

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

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

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

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

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 74px;
    }

    .logo {
        font-size: 24px;
        white-space: normal;
        line-height: 1.05;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

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

    .header-actions .btn {
        flex: 1;
        font-size: 16px;
    }

    .menu-toggle {
        flex: 0 0 46px;
    }

    .hero {
        min-height: calc(100vh - 130px);
        padding: 34px 0 52px;
    }

    .hero h1 {
        font-size: clamp(35px, 12vw, 50px);
    }

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

    .hero .lead {
        font-size: 17px;
    }

    .stars {
        font-size: 23px;
        letter-spacing: 3px;
    }

    .gallery-icons img {
        width: 48px;
        height: 48px;
    }

    .trust-strip, .split-block, .split-block.reverse, .service-area, .footer-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .split-block.reverse .split-image {
        order: 0;
    }

    .reasons-grid, .services-grid, .reviews-track {
        grid-template-columns: 1fr;
    }

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

    .parts-grid {
        columns: 1;
        padding-left: 0;
    }

    .section {
        padding: 58px 0;
    }

    .split-card {
        padding: 24px;
    }

    .split-image img {
        height: 260px;
    }

    .mobile-call {
        display: block;
    }
}
