* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --radius: 14px;
    --container: 1200px;
    --shadow-soft: 0 18px 40px rgba(17, 24, 39, 0.12);
    --shadow-card: 0 16px 30px rgba(17, 24, 39, 0.16);
    --border: 1px solid rgba(17, 24, 39, 0.1);
    --font-heading: "Playfair Display", "Georgia", serif;
    --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

body {
    font-size: 18px;
    line-height: 1.6;
    background: var(--surface);
}

h1 {
    font-size: clamp(2.8rem, 4vw, 3.1rem);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 2.5rem);
}

h3,
h4 {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

a {
    text-decoration: none;
}

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

.container {
    width: min(100% - 2.5rem, var(--container));
    margin: 0 auto;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading, "Playfair Display", "Georgia", serif);
    font-size: 24px;
    color: var(--heading);
    font-weight: 700;
}

.logo svg {
    width: 34px;
    height: 34px;
    fill: var(--primary);
}

.nav {
    display: flex;
    gap: 1.4rem;
    font-size: 18px;
    align-items: center;
}

.nav a {
    color: var(--text);
    font-weight: 600;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 16px 26px rgba(137, 5, 5, 0.35);
}

.btn-secondary {
    background: rgba(30, 30, 114, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(30, 30, 114, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.5);
    color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-call {
    animation: callPulse 2.4s ease-in-out infinite;
}

.btn-call svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.2);
}

.phone-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.burger {
    display: none;
    background: none;
    border: 1px solid rgba(17, 24, 39, 0.2);
    padding: 0.55rem;
    border-radius: 10px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/hero-kitchen.jpg");
    background-size: cover;
    background-position: center;
    padding: 5.5rem 0 4.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.hero-kicker {
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 4vw, 3.1rem);
    color: #FFFFFF;
    margin: 0.8rem 0;
}

.hero-stars {
    color: var(--primary);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.hero-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.hero-gallery img {
    width: auto;
    height: 50px;
    object-fit: contain;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    color: #FFFFFF;
    font-size: 0.95rem;
    justify-content: center;
}

.hero-icon svg {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

.hero-subheadline {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    max-width: 720px;
}

.benefits-list {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    list-style: none;
    justify-items: center;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #FFFFFF;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.benefits-list svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

#cta .cta-row {
    margin-top: 1.8rem;
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.18);
}

.hero-image img {
    width: 100%;
    height: 450px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 0;
}

.section {
    padding: 3.8rem 0;
    background: var(--surface);
}

.section.alt {
    background: var(--secondary);
    color: #FFFFFF;
}

.section.alt h2,
.section.alt h3,
.section.alt p,
.section.alt li,
.section.alt a {
    color: #FFFFFF;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: var(--primary);
    margin-top: 0.5rem;
}

.section-intro {
    max-width: 720px;
    margin-bottom: 1.8rem;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.section-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(17, 24, 39, 0.18);
}

.section-image img {
    width: 100%;
    height: 450px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 0;
}

.icon-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.icon-list li {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-weight: 600;
}

.icon-list svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.section.alt .icon-list svg {
    fill: #FFFFFF;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(30, 30, 114, 0.1);
    border: 1px solid rgba(30, 30, 114, 0.2);
    font-weight: 600;
}

.section.alt .pill {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.card {
    background: #FFFFFF;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: var(--border);
    min-height: 100%;
}

.section.alt .card {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.card h3 {
    font-size: clamp(1.25rem, 2.6vw, 1.45rem);
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.card h3::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin-top: 0.4rem;
}

.steps {
    display: grid;
    gap: 1rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.section.alt .step-number {
    background: #FFFFFF;
    color: var(--secondary);
}

.reviews {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.4rem;
}

.review-card {
    min-width: calc(33.333% - 1rem);
    background: #FFFFFF;
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow-card);
    border: var(--border);
}

.review-stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.review-meta {
    font-weight: 700;
    color: var(--heading);
    margin-top: 0.8rem;
}

#reviews h2,
#reviews p,
#reviews .review-meta {
    color: #111827;
}

#reviews h2 {
    color: #FFFFFF;
}

.section.alt .section-title::after {
    background: rgba(255, 255, 255, 0.85);
}

.cta-section {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 3rem 0 5rem;
    font-size: 13px;
}

.footer a {
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer .logo svg {
    fill: #FFFFFF;
}

.footer small {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-cta {
    position: fixed;
    bottom: 0.8rem;
    left: 0.8rem;
    right: 0.8rem;
    z-index: 999;
    display: none;
}

.mobile-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 0;
    font-weight: 700;
    box-shadow: 0 18px 30px rgba(137, 5, 5, 0.4);
}

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1 1 100%;
        justify-content: center;
        font-size: 20px;
    }

    .nav {
        position: static;
        width: 100%;
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        background: transparent;
        border: none;
        padding: 0.4rem 0 0;
        box-shadow: none;
        display: flex;
        font-size: 14px;
    }

    .header-actions {
        width: 100%;
        order: 3;
        justify-content: center;
    }

    .header-actions .btn {
        font-size: 14px;
    }

    .burger {
        display: none;
    }

    .mobile-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2rem, 7vw, 2.2rem);
    }

    .hero h1 {
        font-size: 35px;
    }

    h2 {
        font-size: clamp(1.4rem, 5vw, 1.75rem);
    }

    h3,
    h4 {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .review-card {
        min-width: 80%;
    }

    .hero-image img,
    .section-image img {
        height: 450px;
        max-height: 450px;
    }
}
