* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.main-img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* =========================
   HERO COPY
   ========================= */

.hero-copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    right: 5%;
    width: min(35vw, 500px);
    
}

.eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
    -webkit-text-stroke: .2px black;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(52px, 4.8vw, 80px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin: 26px 0 0;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.75;
}

.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}
/* =========================
   THE INVESTIGATION
   ========================= */

.investigation {
    background: #0b0b0b;
    color: #f2f0eb;
    padding: 120px 7% 130px;
}

.investigation-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.investigation h2 {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.investigation-copy {
    max-width: 650px;
    margin-top: 58px;
    margin-left: auto;
}

.investigation-copy p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.investigation-copy .lead {
    font-size: 21px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
}

.investigation-copy .one-shot {
    margin-top: 38px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* =========================
   CASE FILES
   ========================= */

.case-files {
    background: #f1efe9;
    color: #111;
    padding: 110px 7% 130px;
}

.case-files-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.case-files .section-label {
    color: rgba(0,0,0,0.45);
}

.case-files-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.case-files-header h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.case-files-header p {
    margin: 0;
    font-size: 15px;
    color: rgba(0,0,0,0.55);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 22px;
}

.case-card {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.case-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d8d6d0;
}

.case-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.case-card:hover .case-thumb img {
    transform: scale(1.025);
}

.case-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.case-meta span:last-child {
    color: rgba(0,0,0,0.4);
}
.release-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dedbd4;
}

.release-info {
    text-align: center;
}

.release-info span {
    display: block;
    margin-bottom: 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(0,0,0,0.4);
}

.release-info strong {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(0,0,0,0.7);
}

.case-card.unreleased {
    cursor: default;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 820px) {

    .hero {
        min-height: auto;
    }

    .main-img {
        width: 100%;
        height: auto;
        min-height: 100vh;
        object-fit: cover;
        object-position: 35% center;
    }

    .hero-copy {
        top: auto;
        right: 24px;
        bottom: 48px;
        left: 24px;
        width: auto;
        transform: none;

    }

    .hero-copy h1 {
        font-size: clamp(46px, 13vw, 68px);

    }

    .hero-copy p {
        font-size: 16px;
    }
}
@media (max-width: 820px) {

    .investigation {
        padding: 80px 24px 90px;
    }

    .investigation h2 {
        font-size: clamp(36px, 10vw, 50px);
    }

    .investigation-copy {
        margin-top: 45px;
        margin-left: 0;
    }

    .investigation-copy .lead {
        font-size: 19px;
    }
}
@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .case-files {
        padding: 80px 24px 90px;
    }

    .case-files-header {
        display: block;
    }

    .case-files-header p {
        margin-top: 15px;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }
}

