.lm-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.lm-heading--text {
    flex: 1;
}

.s-eyebrow {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.s-title {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}

.s-summary {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
    text-wrap: pretty;
    max-width: 680px;
}

/* ── Scroll hint ── */
.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
    flex-shrink: 0;
    padding-left: 40px;
}

.scroll-hint:hover {
    color: rgba(255, 255, 255, 0.7);
}

.scroll-hint--label {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    white-space: nowrap;
}

.scroll-hint--arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* ── Gallery ── */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-c {
    margin-top: 44px;
}

.cell {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #0f0f0f;
    cursor: pointer;
}

.cell-p {
    aspect-ratio: 3/4;
}

.cell-l {
    aspect-ratio: 16/10;
}

.cell:hover .img-inner {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 13px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cell:hover .overlay {
    opacity: 1;
}

.shoot-cta {
    padding-top: 48px;
}

.shoot-cta--inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.shoot-cta--left {
    flex: 1;
    max-width: 620px;
}

.shoot-cta--title {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.shoot-cta--body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
}


/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */

/* ── Tablet: ≤ 1024px ── */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Hide the third column entirely; show its cells inside the first two */
    .col-r {
        display: none;
    }

    .col-c {
        margin-top: 28px;
    }

    .scroll-hint {
        padding-left: 24px;
    }

    .shoot-cta--inner {
        gap: 32px;
    }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {

    /* Heading: stack vertically, hide scroll hint */
    .lm-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .scroll-hint {
        display: none; /* too cramped at this width */
    }

    .s-eyebrow {
        font-size: 16px;
    }

    .s-summary {
        font-size: 15px;
    }

    /* Gallery: single column, no stagger */
    .gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .col-c,
    .col-r {
        display: none; /* flatten to one column: show only col-l */
    }

    /* Re-show col-r cells by un-hiding col-r and stacking all cols */
    /* Better: show all cols as single column */
    .col-r {
        display: flex;
    }

    .col-c {
        display: flex;
        margin-top: 0;
    }

    /* Portrait cells take a more cinematic ratio on small screens */
    .cell-p {
        aspect-ratio: 4/5;
    }

    /* CTA: stack vertically */
    .shoot-cta {
        padding-top: 32px;
    }

    .shoot-cta--inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .shoot-cta--left {
        max-width: 100%;
    }

    .shoot-cta--body {
        font-size: 14px;
        max-width: 100%;
    }
}
