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

html {
    scroll-behavior: smooth;
}

body {
    background: #070707;
    color: #eeeeee;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* HEADER */

.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1400px;
    margin: auto;
    padding: 0 40px;

    border-bottom: 1px solid #202020;
}

.logo {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 4px;
}

.main-nav {
    display: flex;
    gap: 34px;
}

.main-nav a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 15px;

    transition: color .2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}


/* HERO */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    max-width: 1400px;
    margin: auto;

    padding: 70px 60px;

    overflow: hidden;
}

.hero-watermark {
    position: absolute;

    right: -20px;
    top: 50%;

    transform: translateY(-50%);

    font-size: clamp(110px, 15vw, 230px);
    font-weight: 800;
    letter-spacing: -8px;
    line-height: .8;

    color: rgba(255, 255, 255, .035);

    white-space: nowrap;

    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.eyebrow {
    color: #b9964b;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;

    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(58px, 6vw, 92px);
    line-height: .92;
    letter-spacing: -3px;

    margin-bottom: 30px;
}

.hero-description {
    max-width: 630px;

    color: #a7a7a7;

    font-size: 18px;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}


/* BUTTONS */

.button {
    display: inline-block;

    padding: 14px 25px;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: .5px;

    transition: .2s ease;
}

.button.primary {
    background: #b9964b;
    color: #080808;
}

.button.primary:hover {
    background: #d0ad5e;
}

.button.secondary {
    border: 1px solid #4a4a4a;
    color: #eeeeee;
}

.button.secondary:hover {
    border-color: #888888;
}


/* GENERAL SECTIONS */

.intro,
.featured {
    max-width: 1400px;

    margin: auto;

    padding: 110px 60px;
}

.intro {
    border-top: 1px solid #202020;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading span {
    color: #b9964b;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.1;

    margin-top: 8px;
}


/* FEATURE CARDS */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.feature-card {
    display: block;

    background: #0d0d0d;

    border: 1px solid #202020;

    padding: 38px;

    min-height: 220px;

    color: inherit;
    text-decoration: none;
    cursor: pointer;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.feature-card:hover {
    border-color: #b9964b;
    transform: translateY(-3px);
}

.feature-card:link,
.feature-card:visited,
.feature-card:hover,
.feature-card:active {
    color: inherit;
    text-decoration: none;
}

.feature-card * {
    text-decoration: none;
}

.feature-card h3 {
    font-size: 23px;

    margin-bottom: 14px;
}

.feature-card p {
    color: #979797;
}


/* PROJECTS */

.project-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}

.project-card {
    display: block;

    background: #0d0d0d;

    border: 1px solid #202020;

    color: inherit;
    text-decoration: none;
    cursor: pointer;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.project-card:hover {
    border-color: #b9964b;
    transform: translateY(-3px);
}

.project-card:link,
.project-card:visited,
.project-card:hover,
.project-card:active {
    color: inherit;
    text-decoration: none;
}

.project-card * {
    text-decoration: none;
}


/* PROJECT IMAGES */

.project-image {
    width: 100%;
    height: 310px;

    overflow: hidden;
}

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

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

    display: block;
    padding: 20px;
}

.placeholder {
    display: flex;

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

    background:
        radial-gradient(circle at center, #242424, #0b0b0b 70%);

    color: #333333;

    font-size: 58px;
    font-weight: 800;
    letter-spacing: 6px;
}


/* PROJECT TEXT */

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 24px;

    margin-bottom: 12px;
}

.project-info p {
    color: #999999;

    margin-bottom: 20px;
}

.project-link {
    color: #b8b8b8;

    font-weight: bold;

    text-decoration: none;
}


/* PLACEHOLDER PAGES */

.placeholder-page {
    min-height: 70vh;

    display: flex;
    flex-direction: column;

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

    text-align: center;
}

.placeholder-page h1 {
    font-size: 64px;

    margin-bottom: 15px;
}

.placeholder-page p {
    font-size: 22px;

    color: #b8b8b8;
}


/* FOOTER */

footer {
    max-width: 1400px;

    margin: auto;

    padding: 35px 60px;

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

    border-top: 1px solid #202020;

    color: #666666;

    font-size: 13px;
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid #2b2b2b;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #eeeeee;
    transition: transform .2s ease, opacity .2s ease;
}

/* MOBILE */

@media (max-width: 850px) {

    .site-header {
        position: relative;
        height: 64px;
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 20;
        flex-direction: column;
        gap: 0;
        padding: 8px 20px 16px;
        background: #070707;
        border-bottom: 1px solid #202020;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid #181818;
        font-size: 15px;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 600px;

        padding: 70px 28px;
    }

    .hero-watermark {
        font-size: 100px;

        right: -120px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .intro,
    .featured {
        padding: 75px 28px;
    }

    .feature-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 260px;
    }

    footer {
        padding: 30px 28px;

        flex-direction: column;

        gap: 8px;
    }
}


/* MOBILE LINK CLEANUP */

a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .08);
}
/* AUDIO PROJECT INDEX */

.projects-page {
    max-width: 1400px;
    margin: auto;
    padding: 90px 60px 120px;
}

.page-heading {
    margin-bottom: 55px;
}

.page-heading span {
    color: #b9964b;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.page-heading h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 8px 0 15px;
}

.page-heading p {
    color: #999999;
    font-size: 18px;
    max-width: 700px;
}


.projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


.project-entry {
    display: block;

    background: #0d0d0d;
    border: 1px solid #202020;

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    transition:
        border-color .2s ease,
        transform .2s ease;
}

.project-entry:hover {
    border-color: #b9964b;
    transform: translateY(-3px);
}

.project-entry:visited,
.project-entry:active {
    color: inherit;
    text-decoration: none;
}

.project-entry img {
    width: 100%;
    height: 300px;

    object-fit: cover;

    display: block;
}


.project-entry-placeholder {
    height: 300px;

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

    background:
        radial-gradient(circle at center, #242424, #0b0b0b 70%);

    color: #333333;

    font-size: 42px;
    font-weight: 800;
    letter-spacing: 5px;
}


.project-entry-info {
    padding: 30px;
}

.project-entry-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-entry-info p {
    color: #999999;
    margin-bottom: 20px;
}

.project-entry-info span {
    color: #b8b8b8;
    font-weight: bold;
}


@media (max-width: 850px) {

    .projects-page {
        padding: 65px 28px 90px;
    }

    .page-heading h1 {
        font-size: 44px;
    }

    .projects-list {
        grid-template-columns: 1fr;
    }

    .project-entry img,
    .project-entry-placeholder {
        height: 250px;
    }
}
/* PROJECTS PAGE ADDITIONS */

.projects-page {
    max-width: 1400px;
    margin: auto;
    padding: 90px 60px 120px;
}

.page-heading {
    margin-bottom: 55px;
}

.page-heading span {
    color: #b9964b;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.page-heading h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 8px 0 15px;
}

.page-heading p {
    color: #999999;
    font-size: 18px;
    max-width: 700px;
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.project-entry {
    display: block;
    background: #0d0d0d;
    border: 1px solid #202020;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition:
        border-color .2s ease,
        transform .2s ease;
}

.project-entry:hover {
    border-color: #b9964b;
    transform: translateY(-3px);
}

.project-entry img {
    width: 100%;
    height: 300px;

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

    display: block;

    padding: 20px;

    background: #0d0d0d;
}
.project-entry-info {
    padding: 30px;
}

.project-entry-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-entry-info p {
    color: #999999;
    margin-bottom: 20px;
}

.project-entry-info span {
    color: #b8b8b8;
    font-weight: bold;
}

@media (max-width: 850px) {
    .projects-page {
        padding: 65px 28px 90px;
    }

    .page-heading h1 {
        font-size: 44px;
    }

    .projects-list {
        grid-template-columns: 1fr;
    }

    .project-entry img {
        height: 250px;
    }
}

/* PROJECT DETAIL PAGE */

.project-detail {
    max-width: 1200px;
    margin: auto;
    padding: 90px 60px 120px;
}

.project-detail-heading {
    margin-bottom: 45px;
}

.project-detail-heading span {
    color: #b9964b;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.project-detail-heading h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 8px 0 15px;
}

.project-detail-heading p {
    max-width: 750px;
    color: #999999;
    font-size: 18px;
}

.project-detail-hero {
    width: 100%;
    min-height: 420px;

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

    background: #0d0d0d;
    border: 1px solid #202020;

    padding: 35px;
    margin-bottom: 65px;
}

.project-detail-hero img {
    max-width: 100%;
    max-height: 500px;

    object-fit: contain;
    display: block;
}

.project-detail-section {
    max-width: 850px;
    margin-bottom: 55px;
}

.project-detail-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.project-detail-section p {
    color: #a0a0a0;
    font-size: 17px;
    margin-bottom: 18px;
}

.project-detail-section ul {
    margin-left: 22px;
    color: #a0a0a0;
    font-size: 17px;
}

.project-detail-section li {
    margin-bottom: 8px;
}

.project-back {
    margin-top: 70px;
    padding-top: 25px;

    border-top: 1px solid #202020;
}

.project-back a {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: bold;
}

.project-back a:hover {
    color: #b9964b;
}


@media (max-width: 850px) {

    .project-detail {
        padding: 65px 28px 90px;
    }

    .project-detail-heading h1 {
        font-size: 44px;
    }

    .project-detail-hero {
        min-height: 300px;
        padding: 20px;
    }

}
