﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap");

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: black;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-bg-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.01) 100%);
    z-index: 1;
}

.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s ease both;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

    .hero-eyebrow::before {
        content: '';
        width: 32px;
        height: 2px;
        background: #EC2028;
    }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.1s ease both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}

    .hero h1 em {
        font-style: italic;
        color: #EC2028;
        filter: drop-shadow(0 0 8px rgba(196,28,28,0.4));
    }

.hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    max-width: 460px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-ghost {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s, color 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat {
    text-align: left;
}

    .hero-stat strong {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        color: #fff;
        font-weight: 700;
        text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }

    .hero-stat span {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.7);
        font-weight: 500;
    }

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

.carousel-label {
    position: absolute;
    top: 5rem;
    right: 5rem;
    z-index: 3;
    background: rgba(13,13,13,0.55);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 14px;
    /*display: flex;*/
    /*align-items: center;*/
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}
    /*
.carousel-label-dot {
    width: 8px;
    height: 8px;
    background: #EC2028;
    border-radius: 50%;
    flex-shrink: 0;
}
*/
    .carousel-label h6 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 700;
        color: rgba(255,255,255,0.88);
        letter-spacing: 0.02em;
    }

    .carousel-label div {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 500;
        color: rgba(255,255,255,0.88);
        letter-spacing: 0.02em;
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.15s;
}

    .carousel-arrow:hover {
        background: rgba(196,28,28,0.75);
    }

    .carousel-arrow.prev {
        right: 5.5rem;
        top: auto;
        bottom: 2.75rem;
        transform: none;
    }

    .carousel-arrow.next {
        right: 2.5rem;
        top: auto;
        bottom: 2.75rem;
        transform: none;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

.hero-controls {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    border: none;
    transition: background 0.2s, width 0.2s;
    padding: 0;
}

    .carousel-dot.active {
        background: #fff;
        width: 20px;
        border-radius: 4px;
    }

.features-band {
    background: #FAF8F6;
    padding: 3rem 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1rem;
    border-left: 2px solid lightgray;
}

    .feature-item:first-child {
        border-left: none;
    }

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(196,28,28,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(196,28,28,0.2);
}

    .feature-icon svg {
        width: 18px;
        height: 18px;
        color: #EC2028;
    }

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 12px;
    color: gray;
    line-height: 1.5;
}

.design-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.design-img {
    background: url('/images/2020-kitchen-design.png') center/cover no-repeat;
    position: relative;
}

    .design-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.05));
    }

.design-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: cream;
}

    .design-content .section-eyebrow {
        margin-bottom: 0.75rem;
    }

    .design-content .section-title {
        margin-bottom: 1.25rem;
    }

.design-desc {
    font-size: 15px;
    line-height: 1.8;
    color: gray;
    font-weight: 300;
    margin-bottom: 2rem;
}

.design-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .design-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: dimgray;
    }

        .design-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #EC2028;
            border-radius: 50%;
            flex-shrink: 0;
        }

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: #EC2028;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-eyebrow::before {
        content: '';
        width: 24px;
        height: 2px;
        background: #EC2028;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: black;
    line-height: 1.15;
}

.showroom-section {
    padding: 2.4rem 5rem;
    background: white;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.view-all {
    color: #EC2028;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap 0.15s;
    flex-shrink: 0;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.showroom-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    background: lightgray;
    cursor: pointer;
}

.showroom-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.showroom-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.65) 0%, transparent 55%);
}

.showroom-location-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: rgba(13,13,13,0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.showroom-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.1rem 1.25rem;
    color: #fff;
}

    .showroom-card-body h3 {
        font-family: 'Playfair Display', serif;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .showroom-card-body span {
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.65);
        font-weight: 500;
    }

.showroom-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.portfolio-section {
    padding: 2.4rem 5rem;
    background: #FAF8F6;
}

.portfolio-desc {
    font-size: 14px;
    color: gray;
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    background: #36454F;
    aspect-ratio: 16 / 9;
}

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
        filter: brightness(0.88);
    }

.portfolio-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13,13,13,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .portfolio-item-label svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

.portfolio-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.categories {
    padding: 2.5rem 5rem;
    background: white;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cat-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.cat-img {
    position: absolute;
    inset: 0;
    background: lightgrey center/cover no-repeat;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.04);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.1) 50%, transparent 100%);
}

.cat-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #EC2028;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: #fff;
}

    .cat-label h3 {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .cat-label span {
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        font-weight: 500;
    }

.promotions {
    padding: 3rem 5rem;
    background: white;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.promo-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid lightgray;
    text-decoration: none;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #EC2028;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.promo-img {
    height: 200px;
    background: center/cover no-repeat;
    position: relative;
}

.promo-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

    .promo-body h3 {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 600;
        color: black;
        margin-bottom: 6px;
    }

    .promo-body p {
        font-size: 13px;
        color: gray;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.promo-link {
    font-size: 13px;
    font-weight: 600;
    color: #EC2028;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s;
}

.testimonial-section {
    background: #EC2028;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

    .testimonial-section::before {
        content: '"';
        position: absolute;
        top: -2rem;
        left: 4rem;
        font-family: 'Playfair Display', serif;
        font-size: 280px;
        color: rgba(255,255,255,0.05);
        line-height: 1;
        pointer-events: none;
        font-weight: 700;
    }

.testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.star {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.9);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #fff;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.15s, width 0.2s;
}

    .dot.active {
        background: #fff;
        width: 20px;
        border-radius: 4px;
    }

.locations {
    padding: 5rem 5rem;
    background: #FAF8F6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid lightgray;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.location-type {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: #EC2028;
    margin-bottom: 0.75rem;
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.location-addr {
    font-size: 13px;
    color: gray;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-link {
    font-size: 12px;
    font-weight: 600;
    color: #EC2028;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.15s;
}

.faq-section {
    padding: 5rem 5rem;
    background: white;
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid lightgray;
}

.faq-item {
    border-bottom: 1px solid lightgray;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.15s;
}

    .faq-question:hover {
        color: #EC2028;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-icon {
    background: #EC2028;
    border-color: #EC2028;
}

    .faq-item.open .faq-icon svg {
        transform: rotate(45deg);
        stroke: #fff;
    }

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-question {
    color: #EC2028;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid lightgray;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s, transform 0.2s;
}

    .faq-icon svg {
        width: 10px;
        height: 10px;
        transition: transform 0.2s;
    }

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: gray;
    padding-bottom: 1.25rem;
    font-weight: 300;
}

.cta-banner {
    background: black;
    padding: 4rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-text span {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Desktop/Tablet (≤1280px) ── */
@media (max-width: 1280px) {
    .categories, .promotions, .locations, .faq-section,
    .cta-banner, footer, .portfolio-section, .ba-section,
    .showroom-section, .testimonial-section, .features-band {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .design-content {
        padding: 4rem 3rem;
    }

    .hero-left {
        padding: 5rem 3.5rem;
    }

    .hero h1 {
        font-size: clamp(36px, 4vw, 58px);
    }

    .carousel-label {
        right: 3.5rem;
    }

    .cat-card {
        aspect-ratio: 16/9;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-left {
        padding: 3.5rem 2.5rem;
        max-width: 100%;
    }

    .carousel-label {
        right: 2.5rem;
    }

        .carousel-label h6 {
            font-size: 22px;
        }

        .carousel-label div {
            font-size: 15px;
        }

    .carousel-arrow.prev {
        right: 8rem;
    }

    .carousel-arrow.next {
        right: 2.5rem;
    }

    .hero-controls {
        right: 2.5rem;
    }

    .categories, .promotions, .locations, .faq-section,
    .cta-banner, footer {
        padding: 3rem 2.5rem;
    }

    .portfolio-section, .showroom-section {
        padding: 2.5rem 2.5rem;
    }

    .testimonial-section {
        padding: 3.5rem 2.5rem;
    }

    .features-band {
        padding: 2.5rem;
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .cat-grid, .portfolio-grid, .showroom-grid, .ba-grid, .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-card {
        aspect-ratio: 16/10;
    }

    .design-section {
        grid-template-columns: 1fr;
    }

    .design-img {
        height: 300px;
    }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .hero-bg-carousel {
        position: relative;
        inset: auto;
        height: 52vw;
        min-height: 220px;
        max-height: 320px;
        flex-shrink: 0;
        z-index: 0;
    }

    .hero-bg-track {
        width: 100%;
    }

    .hero-bg-overlay {
        background: linear-gradient(to bottom, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.55) 100%);
    }

        .hero-bg-overlay::before {
            display: none;
        }

    .hero-left {
        position: relative;
        z-index: 2;
        background: #FAF8F6;
        padding: 2rem 1.5rem 2.5rem;
        max-width: 100%;
    }

    .hero-eyebrow {
        color: #EC2028;
        text-shadow: none;
        margin-bottom: 0.75rem;
        font-size: 10px;
    }

    .hero h1 {
        color: black;
        text-shadow: none;
        font-size: clamp(28px, 7vw, 38px);
        margin-bottom: 0.875rem;
    }

        .hero h1 em {
            color: #EC2028;
            filter: none;
        }

    .hero-desc {
        color: gray;
        text-shadow: none;
        font-size: 14px;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-badge {
        border-top-color: lightgray;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        gap: 0.75rem;
    }

    .hero-stat strong {
        color: #EC2028;
        text-shadow: none;
        font-size: 22px;
    }

    .hero-stat span {
        color: gray;
    }

    .stat-divider {
        background: lightgray;
    }

    .btn-ghost {
        color: black;
        border-bottom-color: rgba(0,0,0,0.25);
    }

        .btn-ghost:hover {
            color: #EC2028;
            border-bottom-color: #EC2028;
        }

    .hero-actions {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .btn-primary {
        padding: 11px 22px;
        font-size: 13px;
    }

    .carousel-label {
        right: 1rem;
        top: 0.75rem;
        padding: 5px 10px;
    }

        .carousel-label h6 {
            font-size: 18px;
        }

        .carousel-label div {
            font-size: 12px;
        }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

        .carousel-arrow.prev {
            right: auto;
            left: 1rem;
            top: 50%;
            bottom: auto;
            transform: translateY(-50%);
        }

        .carousel-arrow.next {
            right: 1rem;
            top: 50%;
            bottom: auto;
            transform: translateY(-50%);
        }

    .hero-controls {
        bottom: 0.75rem;
        right: 50%;
        transform: translateX(50%);
        display: flex;
    }

    .categories, .promotions, .locations, .faq-section,
    .cta-banner, .footer, footer {
        padding: 2.5rem 1.5rem;
    }

    .portfolio-section, .showroom-section {
        padding: 2rem 1.5rem;
    }

    .testimonial-section {
        padding: 3rem 1.5rem;
    }

    .features-band {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .cat-grid, .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-card {
        aspect-ratio: 1/1;
    }

    .showroom-grid, .ba-grid, .promo-grid, .locations-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .section-header .view-all {
            margin-top: 0.25rem;
        }
}
