/* home.css — Phase 12 (homepage). Built on the same tokens as shop.css/app.css. */

.home-hero {
    background: var(--grad);
    padding: 80px 24px;
    text-align: center;
}

.home-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.home-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}

.home-hero-accent {
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.5);
    text-underline-offset: 6px;
}

.home-hero p {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
    margin: 0 0 28px;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home-hero-btn {
    max-width: 220px;
    text-decoration: none;
    display: inline-block;
}

.home-hero-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.home-hero-link:hover {
    text-decoration: underline;
}

.home-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-section {
    padding: 64px 0;
}

.home-section-alt {
    background: var(--off);
}

.home-section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin: 0 0 36px;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.home-category-card {
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    overflow: hidden;
    text-align: center;
    padding-bottom: 18px;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1), border-color 0.25s cubic-bezier(.4,0,.2,1);
}

.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-color: var(--blue);
}

.home-category-image {
    aspect-ratio: 16 / 10;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.05rem;
    color: var(--dark);
    margin: 14px 0 0;
}

.home-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.home-step {
    text-align: center;
}

.home-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.home-step h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.02rem;
    color: var(--dark);
    margin: 0 0 8px;
}

.home-step p {
    font-size: 0.88rem;
    color: var(--mid);
    margin: 0;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.home-feature {
    text-align: center;
}

.home-feature i {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.home-feature h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin: 0 0 6px;
}

.home-feature p {
    font-size: 0.86rem;
    color: var(--mid);
    margin: 0;
}

@media (max-width: 600px) {
    .home-hero h1 {
        font-size: 1.9rem;
    }
}
