/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
    color: var(--color-white);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: var(--text-lg);
    max-width: 36rem;
    margin: 0 auto var(--space-xl);
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured pieces grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: var(--space-xl);
}

.featured-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.featured-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.featured-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.featured-card-body {
    padding: var(--space-lg);
}

.featured-card-body h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.featured-card-body p {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
}

/* Intro section */
.intro {
    text-align: center;
}

.intro p {
    max-width: 40rem;
    margin: 0 auto;
    font-size: var(--text-lg);
    color: var(--color-gray-700);
}

@media (max-width: 48rem) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }
}
