.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
    max-width: 900px;
}

.hero__title {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
    margin-bottom: var(--space-6);
    color: var(--color-text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
    max-width: 65ch;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.section {
    padding: var(--space-16) 0;
}

.section--dark {
    background-color: var(--color-bg-secondary);
}

.section--accent {
    background-color: var(--color-bg-tertiary);
    border-top: 1px solid var(--color-mahogany-dark);
    border-bottom: 1px solid var(--color-mahogany-dark);
}

.section__header {
    margin-bottom: var(--space-10);
    max-width: 800px;
}

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

.section__title {
    margin-bottom: var(--space-4);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.category-card {
    display: block;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-bg-elevated);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    transition: all var(--duration-slow) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-mahogany), var(--color-mahogany-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-aluminum-dark);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.category-card__desc {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-mahogany-light);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-card__link::after {
    content: '→';
    transition: transform var(--duration-normal) var(--ease-out);
}

.category-card:hover .category-card__link::after {
    transform: translateX(4px);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.feature-block--reversed {
    direction: rtl;
}

.feature-block--reversed > * {
    direction: ltr;
}

.feature-block__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-block__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform var(--duration-slow) var(--ease-out);
}

.feature-block:hover .feature-block__media img {
    transform: scale(1.03);
}

.feature-block__content {
    padding: var(--space-6);
}

.feature-block__content .section__title {
    margin-bottom: var(--space-4);
}

.feature-block__content p {
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    padding: var(--space-6);
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-elevated);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    border-color: var(--color-mahogany-dark);
    box-shadow: var(--shadow-glow);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.service-card__text {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    margin-bottom: 0;
}

.showroom-cta__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.showroom-cta__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.showroom-cta__text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    color: var(--color-text-secondary);
}

.showroom-cta__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showroom-cta__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.btn--light {
    background-color: var(--color-aluminum-light);
    color: var(--color-bg-primary);
}

.btn--light:hover {
    background-color: var(--color-text-primary);
    box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
    .feature-block,
    .showroom-cta__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .feature-block--reversed {
        direction: ltr;
    }
    
    .hero__content {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
}

@media (max-width: 640px) {
    .categories__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}