/* =========================================
   CHRIS DEAN VOICES
   ========================================= */

:root {
    --background: #f3f1ec;
    --text: #171918;
    --muted: #686d6a;
    --accent: #607582;
    --light-accent: #dce2e3;
    --border: #d4d2cc;
}


/* =========================================
   RESET
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   NAVIGATION
   ========================================= */

.nav {
    width: 100%;
    padding: 28px 5vw;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 10;
}

.logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.nav nav {
    display: flex;
    gap: 32px;
}

.nav nav a {
    font-size: 12px;
    letter-spacing: 0.12em;
    transition: opacity 0.2s ease;
}

.nav nav a:hover {
    opacity: 0.5;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 100vh;

    padding: 100px 5vw 70px;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 7vw;

    align-items: center;
}

.hero-text {
    padding-left: 4vw;
}

.eyebrow {
    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;

    margin-bottom: 24px;
}

h1 {
    font-size: clamp(72px, 10vw, 150px);
    line-height: 0.82;
    letter-spacing: -0.06em;
    font-weight: 500;

    margin-bottom: 40px;
}

.tagline {
    font-size: 21px;
    line-height: 1.35;
    color: var(--muted);

    margin-bottom: 45px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 30px;

    border-bottom: 1px solid var(--text);

    padding-bottom: 9px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;

    transition: gap 0.25s ease;
}

.button:hover {
    gap: 42px;
}

.hero-image {
    height: 82vh;
    min-height: 600px;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center center;

    display: block;
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
    padding: 150px 9vw;

    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 8vw;

    border-top: 1px solid var(--border);
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.section-label span {
    color: var(--accent);
    margin-right: 15px;
}


/* =========================================
   ABOUT
   ========================================= */

.about-content {
    max-width: 900px;
}

.about-content h2 {
    font-size: clamp(48px, 6vw, 85px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.045em;

    margin-bottom: 70px;
}

.about-content h2 em,
.contact-content h2 em {
    color: var(--accent);
    font-family: Georgia, serif;
    font-weight: 400;
}

.about-text {
    max-width: 650px;

    font-size: 19px;
    line-height: 1.7;
    color: #454947;
}

.about-text p {
    margin-bottom: 25px;
}


/* =========================================
   VOICE
   ========================================= */

.voice-content {
    max-width: 1000px;
}

.voice-content h2 {
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.05em;

    margin-bottom: 20px;
}

.intro {
    color: var(--muted);
    margin-bottom: 70px;
}

.audio-category {
    border-top: 1px solid var(--border);
    padding: 30px 0;
}

.audio-category:last-child {
    border-bottom: 1px solid var(--border);
}

.audio-category h3 {
    text-transform: uppercase;

    font-size: 12px;
    letter-spacing: 0.15em;

    color: var(--accent);

    margin-bottom: 20px;
}

.audio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    margin-top: 50px;
}

.audio-category h3 {
    margin-bottom: 10px;
}

.audio-placeholder {
    .audio-track {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;

    padding: 22px 0;

    border-top: 1px solid var(--border);
}

.track-info strong {
    display: block;
    font-size: 17px;
    font-weight: 500;
}

.track-info span {
    display: block;
    margin-top: 4px;

    color: var(--muted);
    font-size: 12px;
}

.audio-track audio {
    width: 330px;
    height: 40px;
}
}

.play-placeholder {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);
    color: white;

    font-size: 13px;
}


/* =========================================
   CONTACT
   ========================================= */

.contact {
    min-height: 75vh;
    align-items: center;
}

.contact-content {
    max-width: 850px;
}

.contact-content h2 {
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: -0.05em;

    margin-bottom: 40px;
}

.contact-content p {
    max-width: 500px;

    color: var(--muted);

    font-size: 18px;

    margin-bottom: 35px;
}

.email {
    display: inline-block;

    font-size: clamp(22px, 3vw, 36px);

    border-bottom: 1px solid var(--text);

    padding-bottom: 7px;

    transition: color 0.2s ease;
}

.email:hover {
    color: var(--accent);
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    border-top: 1px solid var(--border);

    padding: 30px 5vw;

    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 11px;
    letter-spacing: 0.1em;
}

footer a {
    color: var(--text);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .nav {
        padding: 22px 6vw;
    }

    .nav nav {
        gap: 16px;
    }

    .nav nav a {
        font-size: 10px;
    }

    .hero {
        min-height: auto;

        padding: 110px 6vw 70px;

        display: flex;
        flex-direction: column;

        gap: 45px;
    }

    .hero-text {
        padding-left: 0;

        width: 100%;
    }

    h1 {
        font-size: clamp(70px, 22vw, 120px);
    }

    .hero-image {
        width: 100%;
        height: 120vw;
        min-height: 0;
        max-height: 700px;
    }

    .section {
        padding: 100px 6vw;

        display: block;
    }

    .section-label {
        margin-bottom: 60px;
    }

    .about-content h2 {
        margin-bottom: 50px;
    }

    .about-text {
        font-size: 17px;
    }

    .voice-content h2 {
        margin-bottom: 15px;
    }
   .audio-track {
    grid-template-columns: 1fr;
    gap: 15px;
}

.audio-track audio {
    width: 100%;
}

.audio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

    .intro {
        margin-bottom: 50px;
    }

    .contact {
        min-height: auto;
        padding-bottom: 120px;
    }

    footer {
        padding: 25px 6vw;
    }
}
