.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: url(../images/Hero-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(58, 46, 36, .18) 0%, rgba(58, 46, 36, .52) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--warm-white);
}

.hero-text h1 {
    font-family: 'Nunito', sans-serif;
    user-select: none;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

.hero-text p {
    margin-top: 0px;
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .9;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 38px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.section {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 40px;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
    margin-top: 30px;
    border-bottom: 1px solid var(--light-sand);
    padding-bottom: 14px;
}

.section-header h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
}

.see-all {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--taupe);
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: color .2s;
}

.see-all:hover {
    color: var(--brown);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.col-card {
    cursor: pointer;
}

.col-card-box {
    background: linear-gradient(135deg, #b8a898 0%, #987868 100%);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.col-card:hover .col-card-box {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(100, 70, 40, .14);
}

.col-card-box svg {
    width: 56px;
    height: 56px;
}

.col-card p {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text);
    text-align: center;
    font-weight: 600;
}

.home-banner {
    background: var(--cream);
    border-top: 1px solid var(--light-sand);
    border-bottom: 1px solid var(--light-sand);
    padding: 52px 40px;
    text-align: center;
}

.home-banner h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: .04em;
}

.home-banner p {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 500px;
    margin-inline: auto;
    font-size: 14px;
    color: var(--taupe);
}

/* ════════════════════════════
   TABLET  (769 – 1024 px)
════════════════════════════ */
@media (max-width: 1024px) {
    .section {
        padding: 0 28px;
    }

    .hero {
        height: 420px;
    }

    .collections-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .home-banner {
        padding: 44px 28px;
    }
}

/* ════════════════════════════
   MOBILE  (≤ 768 px)
════════════════════════════ */
@media (max-width: 768px) {
    .hero {
        height: 340px;
    }

    .hero-text h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .section {
        padding: 0 18px;
        margin-bottom: 48px;
    }

    .section-header {
        margin-top: 24px;
        margin-bottom: 18px;
    }

    .section-header h3 {
        font-size: 20px;
    }

    .story-strip {
        grid-template-columns: 1fr;
    }

    .story-text {
        padding: 24px 0 0;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .col-card-box svg {
        width: 40px;
        height: 40px;
    }

    .home-banner {
        padding: 36px 18px;
    }

    .home-banner h2 {
        font-size: 26px;
    }
}