/* ============================================================
   Anglo Aunty's Kitchen — East Meets West Section
   /assets/css/east-meets-west.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700;800&display=swap');

.emw-section {
    background: #0d0d0d;
    width: 100%;
    padding: 64px 24px 72px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.emw-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================
   HEADING BLOCK
   ============================================================ */
.emw-heading {
    margin-bottom: 48px;
}

.emw-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 12px;
}

/* Deliciously! script image */
.emw-script {
    display: block;
    height: clamp(56px, 8vw, 100px);
    width: auto;
    object-fit: contain;
    object-position: left center;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.emw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── Card ── */
.emw-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    cursor: pointer;
}

.emw-card-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #1a0000;
    position: relative;
}

.emw-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.emw-card:hover .emw-card-img {
    transform: scale(1.04);
}

/* Label */
.emw-card-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.2s;
}

.emw-card:hover .emw-card-label {
    color: #cc0000;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
    .emw-section {
        padding: 44px 16px 56px;
    }

    .emw-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .emw-script {
        height: clamp(44px, 10vw, 72px);
    }

    .emw-grid {
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .emw-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}