:root {
    color-scheme: dark;
    --bg: #0b0e0d;
    --panel: #111614;
    --panel-soft: #17201d;
    --text: #f4f0e8;
    --muted: #b8c3b8;
    --line: rgba(244, 240, 232, 0.16);
    --accent: #8cc7a1;
    --accent-strong: #9f2d29;
    --accent-deep: #651917;
    --danger: #ff9f8d;
    --success: #a9deb5;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(18px, 5vw, 72px);
    background: linear-gradient(180deg, rgba(4, 5, 5, 0.94), rgba(4, 5, 5, 0.72));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.brand img {
    width: clamp(172px, 17vw, 252px);
    height: 50px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0;
}

.brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 34px);
    color: var(--muted);
    font-size: 0.92rem;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(159, 45, 41, 0.64);
    border-radius: 999px;
    background: rgba(159, 45, 41, 0.18);
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    padding: 138px clamp(18px, 5vw, 72px) 88px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 36%, rgba(159, 45, 41, 0.32), rgba(159, 45, 41, 0) 28%),
        linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.91) 38%, rgba(5, 6, 6, 0.45) 74%, rgba(5, 6, 6, 0.14) 100%),
        linear-gradient(0deg, rgba(11, 14, 13, 0.96) 0%, rgba(11, 14, 13, 0) 44%),
        url('../images/investigation-hero.png') center right / cover no-repeat;
    transform: scale(1.02);
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 240, 232, 0.28), transparent);
}

.hero-content {
    position: relative;
    width: min(820px, 100%);
}

.hero-logo {
    display: block;
    width: min(500px, 82vw);
    height: auto;
    margin: 0 0 30px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.68));
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.05;
}

h1 {
    margin-bottom: 20px;
    max-width: 760px;
    font-size: clamp(3.25rem, 6.4vw, 6.7rem);
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 4vw, 4.1rem);
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.38rem;
}

.hero-copy {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span {
    padding: 8px 11px;
    border: 1px solid rgba(244, 240, 232, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #d4ddd1;
    font-size: 0.82rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button.primary {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent-deep));
    color: #fff8f1;
    box-shadow: 0 14px 36px rgba(159, 45, 41, 0.32);
}

.button.secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button:hover {
    transform: translateY(-1px);
}

.signal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal-strip div {
    display: grid;
    gap: 4px;
    padding: 24px clamp(18px, 5vw, 72px);
    background: #0f1412;
}

.signal-strip strong {
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
}

.signal-strip span {
    color: var(--muted);
    font-size: 0.94rem;
}

.band,
.section {
    padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.band {
    background: #101513;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.intro {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.intro p:last-child,
.contact-copy p,
.service-card p,
.case-row p {
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 260px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card-rule {
    display: block;
    width: 52px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--accent-strong), var(--accent));
}

.case-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.case-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--panel-soft);
    color: inherit;
    text-decoration: none;
}

a.case-row:hover {
    background: #1c2521;
}

.case-row > span {
    color: var(--accent-strong);
    font-weight: 800;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #090d0b;
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(140, 199, 161, 0.46);
    border-color: var(--accent);
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--danger);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(18px, 5vw, 72px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
}

.case-detail-page {
    padding-top: 74px;
}

.case-detail-hero {
    position: relative;
    padding: clamp(118px, 15vw, 190px) clamp(18px, 5vw, 72px) clamp(58px, 9vw, 100px);
    background:
        linear-gradient(90deg, rgba(6, 8, 7, 0.96) 0%, rgba(6, 8, 7, 0.78) 62%, rgba(6, 8, 7, 0.2) 100%),
        url('../images/investigation-hero.png') center right / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.case-detail-hero h1 {
    max-width: 860px;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.case-meta span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.9rem;
}

.case-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(28px, 5vw, 68px);
}

.evidence-copy {
    color: var(--muted);
    font-size: 1.08rem;
}

.evidence-panel {
    align-self: start;
    display: grid;
    gap: 18px;
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.media-block {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.media-block img,
.media-block audio {
    width: 100%;
}

.media-block img {
    border-radius: 6px;
    border: 1px solid var(--line);
}

.media-block a {
    color: var(--accent);
}

.muted-text {
    color: var(--muted);
}

.shoppe-page {
    padding-top: 74px;
}

.shoppe-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: clamp(30px, 6vw, 84px);
    align-items: center;
    min-height: 760px;
    padding: clamp(120px, 14vw, 180px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 118px);
    background:
        radial-gradient(circle at 78% 42%, rgba(159, 45, 41, 0.3), rgba(159, 45, 41, 0) 30%),
        linear-gradient(90deg, rgba(5, 6, 6, 0.98), rgba(12, 17, 15, 0.9)),
        url('../images/investigation-hero.png') center / cover no-repeat;
    border-bottom: 1px solid var(--line);
}

.shoppe-logo {
    display: block;
    width: min(420px, 82vw);
    height: auto;
    margin: 0 0 28px;
}

.shoppe-feature {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.shoppe-feature p {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.mock-shirt {
    position: relative;
    display: grid;
    place-items: center;
    width: min(430px, 84vw);
    aspect-ratio: 0.86;
    border: 1px solid rgba(244, 240, 232, 0.14);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 30%),
        linear-gradient(160deg, #191d1b, #050606 70%);
    box-shadow: var(--shadow);
}

.mock-shirt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28%;
    width: 44%;
    height: 18%;
    border-radius: 0 0 999px 999px;
    background: #080a09;
    border: 1px solid rgba(244, 240, 232, 0.1);
    border-top: 0;
}

.mock-shirt img {
    position: relative;
    width: 72%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.52));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-height: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-visual {
    display: grid;
    place-items: center;
    min-height: 210px;
    background:
        radial-gradient(circle at 50% 42%, rgba(159, 45, 41, 0.28), rgba(159, 45, 41, 0) 38%),
        linear-gradient(145deg, #1a201d, #070908);
    border-bottom: 1px solid var(--line);
}

.product-visual img {
    width: 72%;
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.54));
}

.product-copy {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 22px;
}

.product-copy span {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-copy p {
    color: var(--muted);
}

.product-copy strong {
    color: var(--text);
    font-size: 1.2rem;
}

.product-copy .button {
    width: 100%;
    margin-top: 4px;
}

.merch-request {
    background: #101513;
    border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
    .site-header {
        position: absolute;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        min-height: 800px;
        align-items: flex-end;
        padding-top: 150px;
    }

    .hero-media {
        background:
            linear-gradient(0deg, rgba(11, 14, 13, 0.98) 0%, rgba(11, 14, 13, 0.7) 68%, rgba(11, 14, 13, 0.28) 100%),
            url('../images/investigation-hero.png') center / cover no-repeat;
    }

    .hero-logo {
        width: min(390px, 88vw);
        margin-bottom: 26px;
    }

    .intro,
    .contact-section,
    .service-grid,
    .case-detail-grid,
    .signal-strip,
    .shoppe-hero,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        font-size: 0.84rem;
    }

    h1 {
        font-size: 3.2rem;
    }

    .case-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-form,
    .service-card,
    .case-row {
        padding: 22px;
    }

    .shoppe-page {
        padding-top: 0;
    }

    .shoppe-hero {
        min-height: 760px;
        padding-top: 170px;
    }
}
