* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background: #ffffff;
}

body.menu-open {
    overflow: hidden;
}

:root {
    --font-heading: Georgia, "Times New Roman", serif;
    --font-body: Arial, Helvetica, sans-serif;
    --container: 1180px;
    --border: rgba(120, 3, 3, 0.16);
    --shadow: 0 26px 70px rgba(43, 17, 17, 0.15);
}

a {
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(39px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

h3,
h4 {
    font-size: 22px;
    line-height: 1.22;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
}

.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.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 82px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    white-space: nowrap;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.desktop-nav a,
.mobile-nav a {
    color: #2c1b1b;
    font-size: 16px;
    font-weight: 700;
}

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

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

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    background: #ffffff;
    color: #111827;
    cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    content: "";
}

.hamburger span::before {
    transform: translateY(-7px);
}

.hamburger span::after {
    transform: translateY(5px);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

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

.mobile-nav .container {
    display: grid;
    gap: 14px;
    padding: 18px 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px;
    border: 0;
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.58);
    animation: glowPulse 2.5s infinite;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    color: #ffffff;
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(184, 9, 9, 0.34);
}

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

.btn-light:hover {
    color: #ffffff;
    background: var(--primary-dark);
}

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

.hero {
    position: relative;
    min-height: 780px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #160707;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background: url("../images/kitchen-premium.jpg") center/cover no-repeat;
    transform: scale(1.04);
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(22, 7, 7, 0.93), rgba(120, 3, 3, 0.72), rgba(22, 7, 7, 0.72));
}

.hero-content {
    width: min(940px, 100%);
    margin: 0 auto;
    padding: 116px 0 90px;
    text-align: center;
    color: #ffffff;
}

.hero h1,
.hero p {
    color: #ffffff;
}

.hero .eyebrow {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.hero-lead {
    max-width: 810px;
    margin: 0 auto 26px;
    font-size: 19px;
}

.stars {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 24px;
    letter-spacing: 5px;
}

.hero-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 18px 0 26px;
}

.hero-icons img {
    width: auto;
    height: 48px;
    max-width: 160px;
    object-fit: contain;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-cta-text {
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 800;
}

.section {
    padding: 92px 0;
}

.section-dark {
    background: radial-gradient(circle at top left, rgba(184, 9, 9, 0.34), transparent 33%), #160707;
    color: #ffffff;
}

.section-dark .eyebrow,
.cta-band .eyebrow {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.section-alt {
    background: linear-gradient(180deg, #fff7f4, #ffffff);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border: 1px solid rgba(184, 9, 9, 0.22);
    background: rgba(184, 9, 9, 0.08);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.title-mark::after {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 16px;
    background: var(--primary);
    content: "";
}

.centered-title {
    max-width: 790px;
    margin: 0 auto 46px;
    text-align: center;
}

.centered-title .title-mark::after {
    margin-left: auto;
    margin-right: auto;
}

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

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

.split.reverse .split-media {
    order: -1;
}

.glass-card,
.service-card,
.review-card,
.process-step,
.faq-item {
    border: 1px solid var(--border);
    background: #ffffff;
    color: #374151;
    box-shadow: var(--shadow);
}

.glass-card {
    padding: 34px;
}

.section-dark .glass-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(16px);
}

.section-dark .glass-card h2,
.section-dark .glass-card h3,
.section-dark .glass-card p,
.section-dark .glass-card li {
    color: #ffffff;
}

.split-media {
    position: relative;
}

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

.image-frame {
    position: relative;
}

.image-frame::before {
    position: absolute;
    inset: -16px 16px 16px -16px;
    z-index: -1;
    border: 1px solid rgba(184, 9, 9, 0.42);
    content: "";
}

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

.service-card {
    padding: 24px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    border-color: rgba(184, 9, 9, 0.52);
    transform: translateY(-5px);
}

.service-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    object-fit: contain;
}

.service-card ul,
.check-list,
.area-list {
    margin: 0;
    padding-left: 19px;
}

.service-card li,
.check-list li,
.area-list li {
    margin: 7px 0;
}

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

.trust-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.trust-card img {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    object-fit: contain;
    background: #ffffff;
}

.trust-card h3,
.trust-card p {
    color: #ffffff;
}

.reviews-shell {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 420ms ease;
}

.review-slide {
    min-width: 33.333%;
    padding: 10px;
}

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

.review-card strong {
    display: block;
    margin-bottom: 12px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: 22px;
}

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

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

.control-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: #111827;
    font-size: 22px;
    cursor: pointer;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.area-box {
    padding: 24px;
    border-left: 5px solid var(--primary);
    background: #ffffff;
    color: #374151;
}

.process-grid {
    display: grid;
    gap: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px;
}

.step-number {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
}

.cta-band {
    padding: 54px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #ffffff;
    text-align: 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: 26px;
}

.site-footer {
    padding: 54px 0 30px;
    background: #100404;
    color: #ffffff;
    font-size: 14px;
}

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

.site-footer .logo,
.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li {
    color: #ffffff;
    font-size: 14px;
}

.site-footer .logo {
    font-size: 24px;
}

.footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.disclaimer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.84);
}

.mobile-sticky-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: none;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 240ms ease, opacity 240ms ease;
}

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

.mobile-sticky-call a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.24);
}

.animate-in {
    animation: fadeLift 700ms ease both;
}

@keyframes fadeLift {
    from {
        transform: translateY(18px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@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 (max-width: 1020px) {
    .services-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-slide {
        min-width: 50%;
    }

    .footer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

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

    h1 {
        font-size: clamp(28px, 10vw, 48px);
    }

    h2 {
        font-size: clamp(22px, 8vw, 34px);
    }

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

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

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 0;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: grid;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .header-actions .btn {
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        font-size: 15px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding: 86px 0 70px;
    }

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

    .section {
        padding: 64px 0;
    }

    .split,
    .split.reverse,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .split.reverse .split-media {
        order: 0;
    }

    .services-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .review-slide {
        min-width: 100%;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 34px 20px;
    }

    .mobile-sticky-call {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-sticky-call {
        display: none !important;
    }

    .hamburger,
    .mobile-nav {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1120px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 14px 20px;
        padding: 12px 0;
    }

    .desktop-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
    }
}

@media (min-width: 1021px) {
    .mobile-nav,
    .hamburger {
        display: none !important;
    }
}
