/* Home page — flavor picks + bento (load after css/style.css) */

.pick-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 3vw, 2rem) clamp(2rem, 6vw, 4rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.pick-card {
    margin: 0;
    border-radius: clamp(1.75rem, 3.5vw, 3rem);
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    display: block;
    min-height: clamp(240px, 34vw, 360px);
}

.pick-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pick-card--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.2);
}

.pick-card__img {
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 34vw, 360px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Peach: can left → text block right */
.pick-card--peach .pick-card__img {
    object-position: left center;
}

/* Multivitamin: can right → text block left */
.pick-card--multi .pick-card__img {
    object-position: right center;
}

.pick-card__overlay {
    position: absolute;
    inset: 0;
    width: min(44%, 28rem);
    padding: clamp(1rem, 3vw, 1.85rem) clamp(1.1rem, 2.8vw, 1.85rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(0.55rem, 1.6vw, 0.95rem);
    pointer-events: none;
}

.pick-card--peach .pick-card__overlay {
    left: auto;
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.18) 100%);
}

.pick-card--multi .pick-card__overlay {
    left: 0;
    right: auto;
    background: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.2) 100%);
}

.pick-card__title {
    margin: 0;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(1.15rem, 2.8vw, 1.65rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pick-card__desc {
    margin: 0;
    font-size: clamp(0.75rem, 1.4vw, 0.88rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    max-width: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pick-card__pills {
    display: flex;
    color: white;
    font-family: var(--mono);
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    flex-direction: column;
    gap: clamp(0.55rem, 1.5vw, 0.75rem);
    margin-top: 1.5rem;
}

.pick-card__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(2.35rem, 5.5vw, 3rem);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: transparent;
    padding: 0.45rem 0.85rem;
    box-sizing: border-box;
    font-size: clamp(0.65rem, 1.25vw, 0.78rem);
    line-height: 1.25;
}

.pick-card__pill--long {
    min-height: calc(clamp(2.35rem, 5.5vw, 3rem) + 5px);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-size: clamp(0.66rem, 1.28vw, 0.8rem);
}

.pick-card--multi .pick-card__pill {
    border-color: white;
    border-width: 2px;
}

.pick-card--multi .pick-card__title,
.pick-card--multi .pick-card__desc {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.pick-card--multi .pick-card__desc {
    color: rgba(255, 255, 255, 0.96);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .pick-grid {
        grid-template-columns: 1fr;
    }

    /* Same side layout as desktop: peach = text right, multi = text left */
    .pick-card--peach .pick-card__overlay,
    .pick-card--multi .pick-card__overlay {
        width: min(50%, 17rem);
        padding: 0.55rem 0.45rem 0.55rem 0.5rem;
        gap: 0.35rem;
        justify-content: center;
    }

    .pick-card--peach .pick-card__overlay {
        left: auto;
        right: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.18) 100%);
    }

    .pick-card--multi .pick-card__overlay {
        left: 0;
        right: auto;
        background: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.2) 100%);
    }

    .pick-card--peach .pick-card__img {
        object-position: left center;
    }

    .pick-card--multi .pick-card__img {
        object-position: right center;
    }

    .pick-card__title {
        font-size: clamp(0.78rem, 3.2vw, 1.05rem);
        line-height: 1.12;
    }

    .pick-card__desc {
        font-size: clamp(0.52rem, 2.1vw, 0.65rem);
        line-height: 1.3;
    }

    .pick-card__pills {
        margin-top: 0.45rem;
        gap: 0.35rem;
    }

    .pick-card__pill {
        min-height: clamp(1.45rem, 6vw, 1.85rem);
        padding: 0.25rem 0.35rem;
        font-size: clamp(0.48rem, 2.1vw, 0.58rem);
        border-width: 1.5px;
    }

    .pick-card__pill--long {
        min-height: calc(clamp(1.45rem, 6vw, 1.85rem) + 3px);
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        font-size: clamp(0.46rem, 2vw, 0.56rem);
    }
}

@media (max-width: 480px) {
    .pick-card {
        min-height: clamp(180px, 48vw, 240px);
    }

    .pick-card__img {
        min-height: clamp(180px, 48vw, 240px);
    }

    .pick-card--peach .pick-card__overlay,
    .pick-card--multi .pick-card__overlay {
        width: min(46%, 14.5rem);
        padding: 0.4rem 0.35rem 0.45rem 0.4rem;
        gap: 0.28rem;
    }

    .pick-card__title {
        font-size: clamp(0.68rem, 3.5vw, 0.88rem);
        line-height: 1.1;
    }

    .pick-card__desc {
        font-size: clamp(0.45rem, 2.5vw, 0.56rem);
        line-height: 1.28;
    }

    .pick-card__pills {
        margin-top: 0.35rem;
        gap: 0.28rem;
    }

    .pick-card__pill {
        min-height: clamp(1.2rem, 7.5vw, 1.55rem);
        padding: 0.18rem 0.28rem;
        font-size: clamp(0.4rem, 2.35vw, 0.5rem);
        border-width: 1.5px;
    }

    .pick-card__pill--long {
        min-height: calc(clamp(1.2rem, 7.5vw, 1.55rem) + 4px);
        padding-top: 0.22rem;
        padding-bottom: 0.22rem;
        font-size: clamp(0.38rem, 2.2vw, 0.48rem);
        line-height: 1.15;
    }
}

/* ——— Bento body grid ——— */

.bento-shell {
    background: #fff;
    padding: clamp(1.5rem, 4vw, 2.75rem) var(--page-pad) clamp(2rem, 5vw, 3.5rem);
}

/* 24-col grid: row1 ≈ 30% | 55% | 15%; row2 ≈ 29% | 17% | 21% | 33% */
.bento {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(24, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: clamp(0.9rem, 1.9vw, 1.15rem);
    align-items: stretch;
}

.bento__cell {
    position: relative;
    border-radius: var(--radius-bento);
    overflow: hidden;
    background: transparent;
    min-height: 0;
}

.bento__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.bento__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ~20% taller rows so images fill the frame better */
.bento__media--cover {
    flex: 1;
    min-height: clamp(270px, 28vw, 366px);
    max-height: clamp(366px, 37vw, 456px);
}

.bento__media--tall {
    min-height: clamp(270px, 28vw, 366px);
    max-height: clamp(366px, 37vw, 456px);
}

.bento__media--portrait {
    min-height: clamp(222px, 36vw, 336px);
    max-height: clamp(318px, 46vw, 408px);
}

.bento__cell--r1-left {
    grid-column: 1 / span 7;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.bento__cell--r1-left .bento__media {
    flex: 1;
    min-height: clamp(270px, 28vw, 366px);
    max-height: clamp(366px, 37vw, 456px);
}

.bento__cell--r1-mid {
    grid-column: 8 / span 13;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.bento__cell--r1-right {
    grid-column: 21 / span 4;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.bento__cell--r1-mid .bento__media--cover,
.bento__cell--r1-right .bento__media--tall {
    flex: 1;
}

.bento__mono {
    margin: 0;
    font-family: var(--mono);
    font-size: clamp(0.65rem, 1.1vw, 0.78rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.bento__mono--on-pink {
    position: absolute;
    text-align: center;
    top: clamp(0.85rem, 2vw, 1.35rem); /* 85px to 2vw to 135px */
    left: clamp(0.85rem, 2vw, 1.35rem); /* 85px to 2vw to 135px */
    right: clamp(0.85rem, 2vw, 1.35rem); /* 85px to 2vw to 135px */
    color: #fff;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.bento__mono--bottom {
    position: absolute;
    bottom: clamp(0.85rem, 2vw, 1.35rem);
    left: clamp(0.5rem, 1.2vw, 0.85rem);
    right: clamp(0.5rem, 1.2vw, 0.85rem);
    color: #fff;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bento__cell--r1-right .bento__mono {
    font-size: clamp(0.55rem, 0.95vw, 0.68rem);
}

.bento__cell--r1-right .bento__media--tall img {
    object-position: center 18%;
}

.bento__cell--r2-a {
    grid-column: 1 / span 7;
    grid-row: 2;
}

.bento__cell--r2-a .bento__media {
    min-height: clamp(198px, 23vw, 294px);
    max-height: clamp(282px, 32vw, 372px);
}

.bento__cell--r2-b {
    grid-column: 8 / span 4;
    grid-row: 2;
}

.bento__cell--quote {
    grid-column: 12 / span 5;
    grid-row: 2;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2.5vw, 1.75rem);
    min-height: clamp(264px, 34vw, 360px);
}

.bento__cell--r2-b .bento__media--portrait {
    min-height: clamp(210px, 34vw, 318px);
    max-height: clamp(298px, 41vw, 374px);
}

.bento__cell--r2-d {
    grid-column: 17 / span 8;
    grid-row: 2;
}

.bento__cell--r2-d .bento__media {
    min-height: clamp(198px, 23vw, 294px);
    max-height: clamp(282px, 32vw, 372px);
}

.bento__ice-label {
    position: absolute;
    left: clamp(0.75rem, 2vw, 1.25rem);
    bottom: clamp(0.75rem, 2vw, 1.25rem);
    margin: 0;
    font-family: var(--mono);
    font-size: clamp(0.65rem, 1.15vw, 0.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    max-width: 12rem;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.bento__pill {
    position: absolute;
    left: 50%;
    bottom: clamp(0.75rem, 2vw, 1.1rem);
    transform: translateX(-50%);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: clamp(0.62rem, 1vw, 0.72rem);
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

.bento__pill--splash {
    background: var(--yellow);
    color: var(--green-accent);
}

.bento__quote {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #c45c2a;
}

.bento__quote p {
    margin: 0 0 1rem;
    font-size: clamp(0.72rem, 1.35vw, 0.88rem);
    font-weight: 500;
    line-height: 1.55;
    color: inherit;
}

.bento__quote footer {
    font-size: clamp(0.62rem, 1.1vw, 0.72rem);
    font-weight: 500;
    opacity: 0.95;
    color: inherit;
}

.bento__cta {
    position: absolute;
    top: clamp(0.85rem, 2vw, 1.35rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    width: min(92%, 14rem);
    text-align: center;
    pointer-events: none;
}

.bento__cta a {
    pointer-events: auto;
}

.bento__cta-btn {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-family: var(--mono);
    font-size: clamp(0.58rem, 1vw, 0.68rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.25;
}

.bento__cta-btn:hover {
    filter: brightness(1.05);
}

.bento__cta-link {
    font-family: var(--mono);
    font-size: clamp(0.65rem, 1.1vw, 0.75rem);
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.bento__cta-link:hover {
    opacity: 0.92;
}

.site-footer {
    margin: 0;
}

@media (max-width: 1100px) {
    .bento__cell--r1-left {
        grid-column: 1 / span 6;
    }

    .bento__cell--r1-mid {
        grid-column: 7 / span 14;
    }

    .bento__cell--r1-right {
        grid-column: 21 / span 4;
    }

    .bento__cell--r2-a {
        grid-column: 1 / span 6;
    }

    .bento__cell--r2-b {
        grid-column: 7 / span 5;
    }

    .bento__cell--quote {
        grid-column: 12 / span 5;
    }

    .bento__cell--r2-d {
        grid-column: 17 / span 8;
    }
}

@media (max-width: 900px) {
    .bento__cell--r1-left {
        grid-column: 1 / span 12;
        grid-row: 1;
    }

    .bento__cell--r1-mid {
        grid-column: 13 / span 12;
        grid-row: 1;
    }

    .bento__cell--r1-right {
        grid-column: 1 / -1;
        grid-row: 2;
        min-height: 270px;
    }

    .bento__cell--r2-a {
        grid-column: 1 / span 14;
        grid-row: 3;
    }

    .bento__cell--r2-b {
        grid-column: 15 / span 10;
        grid-row: 3;
        align-self: stretch;
    }

    .bento__cell--quote {
        grid-column: 1 / span 12;
        grid-row: 4;
    }

    .bento__cell--r2-d {
        grid-column: 13 / span 12;
        grid-row: 4;
    }
}

@media (max-width: 640px) {
    .bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(0, auto);
    }

    .bento__cell--r1-left,
    .bento__cell--r1-mid,
    .bento__cell--r1-right,
    .bento__cell--r2-a,
    .bento__cell--r2-b,
    .bento__cell--quote {
        grid-column: auto;
        grid-row: auto;
    }

    /* Full-width strip: bodega CTA (drops after 3×2 pairs) */
    .bento__cell--r2-d {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .bento__cell--r1-left .bento__media,
    .bento__media--cover,
    .bento__media--tall {
        min-height: clamp(156px, 46vw, 228px);
        max-height: clamp(240px, 62vw, 312px);
    }

    .bento__cell--r2-a .bento__media,
    .bento__cell--r2-d .bento__media {
        min-height: clamp(144px, 43vw, 216px);
        max-height: clamp(222px, 58vw, 288px);
    }

    .bento__media--portrait {
        min-height: clamp(168px, 50vw, 240px);
        max-height: clamp(252px, 70vw, 312px);
    }

    .bento__cell--r2-b .bento__media--portrait {
        min-height: clamp(168px, 50vw, 240px);
        max-height: clamp(252px, 70vw, 312px);
    }

    .bento__cell--quote {
        min-height: clamp(192px, 58vw, 264px);
        padding: clamp(0.75rem, 3vw, 1.25rem);
    }

    .bento__mono--on-pink {
        font-size: clamp(0.5rem, 2.4vw, 0.62rem);
    }

    .bento__mono--bottom {
        font-size: clamp(0.5rem, 2.4vw, 0.6rem);
    }

    .bento__ice-label {
        font-size: clamp(0.55rem, 2.6vw, 0.68rem);
        max-width: 9rem;
    }

    .bento__pill {
        font-size: clamp(0.52rem, 2.4vw, 0.62rem);
        padding: 0.35rem 0.6rem;
    }
}
