/* ------------------------------ CONFIG ------------------------------ */

:root {
    /* SPACING */

    --unit: 12px;
    --unit-2: calc(var(--unit) * 2);
    --unit-3: calc(var(--unit) * 3);
    --unit-4: calc(var(--unit) * 4);

    --content-top-offset: calc(var(--unit) * 8);
    --content-height-offset: calc(var(--unit) * 16);
    --content-subnav-offset: calc(var(--content-top-offset) + var(--unit-3));
    --header-top-offset: var(--unit-2);

    --mobile-content-top-offset: 64px;
    --mobile-nav-button-top-padding: 20px;

    /* APPEARANCE */

    --border-radius: 6px;

    /* COLORS */

    --color-copy: #FFFFFF;
    --color-overlay-rgb: 0, 0, 0;
    --color-mask: #222222;
    --color-error: #E41E1E;

    /* TRANSPARENCY */

    --overlay-opacity-hover: 0.8;

    /* TYPE */

    --font-family: 'Josefin Sans', sans-serif;

    --font-size-sml:     14px;
    --line-height-sml:   20px;

    --font-size-med:     18px;
    --line-height-med:   30px;

    --font-size-lrg:     22px;
    --line-height-lrg:   36px;

    --font-size-exlrg:   28px;
    --line-height-exlrg: 42px;

    --font-size-huge:    36px;
    --line-height-huge:  54px;

    --font-size-hero:    66px;
    --line-height-hero:  66px;

    --font-size-hero-mobile:   46px;
    --line-height-hero-mobile: 46px;

    --font-size-logo:    22px;
    --font-size-subnav:  12px;

    /* TIMINGS */

    --time-unit: 200ms;
    --time-hover: 400ms;
    --time-play-button-hover: 600ms;
    --loader-speed: 2s;

    /*
    FROM SETTINGS
    --background-image
    --color-highlight
    --color-highlight-hover
    --overlay-opacity
    */
}

/* ------------------------------ STYLES ------------------------------ */

/* TOOLS */

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.accent {
    color: var(--color-highlight);
}

[aria-hidden] {
    display: none;
}

/* LINKS */

a {
    transition: color var(--time-hover);
    color: var(--color-copy);
}

a:hover {
    color: var(--color-highlight);
}

/* TYPOGRAPHY */

h1 {
    letter-spacing: 2px;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 10px rgba(var(--color-overlay-rgb), 0.4);
}

h1 a {
    text-decoration: none;
}

h2 {
    font-size: var(--font-size-med);
    line-height: var(--line-height-med);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

h3 {
    font-size: var(--font-size-med);
    font-weight: normal;
    line-height: var(--line-height-med);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

p {
    margin: 0 0 var(--unit) 0;
}

p:last-child {
    margin-bottom: 0;
}

.text-small {
    font-size: var(--font-size-sml);
    line-height: var(--line-height-sml);
}

.quote {
    margin: var(--unit) var(--unit-4) var(--unit-2) var(--unit);
    padding-left: var(--unit);
    border-left: 3px solid var(--color-highlight);
}

/* TYPOGRAPHY SPACING */

h1 + p,
h1 + h2,
h2 + p,
p + form {
    margin-top: var(--unit-2);
}

/* BUTTONS */

button,
.button {
    display: inline-block;
    box-sizing: border-box;
    border: 2px solid var(--color-highlight);
    border-radius: var(--unit-2);
    background: rgba(var(--color-overlay-rgb), var(--overlay-opacity));
    cursor: pointer;
    padding: var(--unit) var(--unit-4);
    color: var(--color-copy);
    font-size: var(--font-size-med);
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: sans-serif;
    transition: background var(--time-hover), border-color var(--time-hover);
    line-height: 21px;
}

button:hover,
.button:hover {
    color: var(--color-copy);
    background: var(--color-highlight-hover);
}

.btn {
    padding-bottom: var(--unit);
    cursor: pointer;
    display: block;
}

.btn > div {
    border-radius: var(--border-radius);
    transition: color var(--time-hover), background var(--time-hover), border-color var(--time-hover);
    padding: var(--unit-2);
}

.btn h2 {
    transition: color var(--time-hover);
}

/* BUTTON DARK */

.btn.btn-dark > div {
    background: rgba(var(--color-overlay-rgb), var(--overlay-opacity));
}

.btn.btn-dark:hover > div {
    background: rgba(var(--color-overlay-rgb), var(--overlay-opacity-hover));
}

.btn h2 {
    color: var(--color-highlight);
}

.btn.btn-dark:hover h2 {
    color: var(--color-copy);
}

/* BUTTON LIST */

.btn-list .btn {
    text-decoration: none;
}

.btn-list .btn > div {
    padding: 14px var(--unit-2) 8px var(--unit-2);
    position: relative;
}

/* SCROLLBARS */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 8px;
    background: var(--color-highlight);
    border-radius: 4px;
}

/* FORMS */

input,
textarea {
    color: var(--color-copy);
    font-family: var(--font-family);
    font-weight: 400;
    width: 100%;
    padding: calc(var(--unit) + 2px) var(--unit) calc(var(--unit) - 2px) var(--unit);
    margin-bottom: var(--unit);
    background: rgba(var(--color-overlay-rgb), var(--overlay-opacity));
    border: 1px solid var(--color-highlight);
    border-radius: var(--border-radius);
    font-size: var(--font-size-med);
    line-height: var(--font-size-med);
    display: block;
    box-sizing: border-box;
    transition: border-color var(--time-hover);
}

input.error,
input.error:hover,
textarea.error,
textarea.error:hover {
    border: 1px solid var(--color-error);
}

button:focus,
input:focus,
input:hover,
textarea:focus,
textarea:hover {
    outline: none;
    border: 1px solid var(--color-highlight);
}

textarea {
    resize: vertical;
    min-height: calc(var(--unit) * 14);
}

::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* SOCIAL ICONS */

.social {
    margin-bottom: var(--unit-2);
}

.social a {
    text-decoration: none;
    transition: color var(--time-unit);
}

.social a > div {
    display: flex;
    align-items: center;
    margin: var(--unit) var(--unit-3) var(--unit) var(--unit);
    font-size: var(--font-size-med);
    /* line-height: var(--font-size-med); */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social .icon {
    display: block;
    margin-right: var(--unit-2);
    height: var(--unit-4);
    width: var(--unit-4);
    fill: var(--color-copy);
    border: 2px solid var(--color-copy);
    border-radius: var(--unit-3);
    transition: background-color var(--time-unit), transform var(--time-unit) ease-out;
}

.social a:hover .icon {
    transform: scale(1.2);
    border-color: var(--color-highlight);
}

.social svg {
    display: block;
    height: 100%;
    width: 100%;
}

/* LAYOUT */

body {
    font-family: var(--font-family);
    font-size: var(--font-size-med);
    line-height: var(--line-height-med);
    color: #FFFFFF;
    margin: 0;
    background-color: #000000;
    overflow: hidden;
}

.background {
    width: 100%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background-position: 30% center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--background-image);
    box-shadow: 0 0 calc(var(--unit) * 12) rgb(var(--color-overlay-rgb)) inset;
}

/* CONTENT */

.content {
    position: absolute;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.content-inner > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-box {
    border-radius: var(--border-radius);
    padding: var(--unit-2);
    background: rgba(var(--color-overlay-rgb), var(--overlay-opacity));
}

.content h2 a {
    padding: var(--unit) 0;
    display: block;
}

/* HEADER */

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

/* NAV & LOGO */

.nav a {
    display: block;
    text-decoration: none;
    font-size: var(--font-size-sml);
    line-height: var(--font-size-sml);
}

.nav h1:hover,
.nav .active,
.nav a:hover {
    color: var(--color-highlight);
}

.navbar .logo {
    padding-top: 20px;
    display: flex;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
}

.subnav .nav a {
    font-size: var(--font-size-subnav);
    padding: calc(var(--unit) / 2) var(--unit) var(--unit) var(--unit);
}

/* NEXT / PREV NAV */

.next-prev-nav a,
.next-prev-nav span {
    text-transform: uppercase;
    font-size: var(--font-size-sml);
    line-height: var(--font-size-sml);
}

.next-prev-nav a {
    margin-left: var(--unit-2);
    text-decoration: none;
}

/* FOOTER NAV */

.footer-nav {
    margin-top: var(--unit-2);
}

.footer-nav div > span {
    padding-right: var(--unit);
    display: inline-block;
}

/* PLAYER */

.player-container {
    height: calc(var(--unit) * 8);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.player {
    position: absolute;
    left: 0;
}

.player-info {
    padding: 0 var(--unit-2);
    flex: 1;
}

.player-info h2 {
    margin: 4px 0 6px 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.play-button,
.loading-indicator {
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid var(--color-highlight);
    fill: var(--color-highlight);
    transition: border-color var(--time-play-button-hover), fill var(--time-play-button-hover);
    width: var(--unit-2);
    height: var(--unit-2);
    position: relative;
    top: -2px;
}

.loading-indicator {
    animation: loading-spin var(--loader-speed) linear infinite;
    border-color: rgba(255, 255, 255, 0.3);
    border-left-color: var(--color-copy);
}

@keyframes loading-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.player .play-button,
.player .loading-indicator {
    width: var(--unit-4);
    height: var(--unit-4);
    top: 2px;
    margin: auto;
}

.player .play-button:hover {
    border-color: var(--color-copy);
    fill: var(--color-copy);
    cursor: pointer;
}

.play-button .play-icon,
.play-button .pause-icon {
    width: 100%;
    height: 100%;
    text-align: center;
}

.play-bar {
    height: 4px;
    width: 100%;
    position: relative;
    background-color: #3e3e3e;
}

.play-bar-progress,
.play-bar-buffered {
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 0;
    background-color: var(--color-highlight);
}

.play-bar-buffered {
    background-color: var(--color-copy);
}

.play-bar-touch {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.initial-play-button-text {
    position: absolute;
    font-size: var(--font-size-lrg);
    line-height: var(--font-size-lrg);
    cursor: pointer;
    color: var(--color-highlight);
    transition: color var(--time-play-button-hover);
    width: 140px;
}

.next-icon,
.prev-icon {
    width: 50px;
    height: 20px;
    fill: var(--color-highlight);
    transition: fill var(--time-unit) ease-out;
}

.prev-icon {
    transform: rotate(180deg)
}

.player .next-prev-nav span {
    padding-top: 5px;
    color: var(--color-highlight);
    transition: color var(--time-unit) ease-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.player-nav-button:hover span,
.player-nav-button:hover .next-icon,
.player-nav-button:hover .prev-icon {
    color: var(--color-copy);
    fill: var(--color-copy);
    cursor: pointer;
}

.player-clock {
    width: calc(var(--unit) * 10);
    text-align: right;
}

/* CATEGORY LIST */

.category-list.btn-list .btn h2{
    color: var(--color-copy);
}

.category-list.btn-list .btn:hover h2 {
    color: var(--color-highlight);
}

/* TRACK LIST */

.track-list h2 {
    margin-bottom: var(--unit-2);
}

.speaker-icon {
    width: 30px;
    height: 35px;
    position: absolute;
    right: var(--unit);
    top: 7px;
}

.speaker-icon polygon {
    stroke: var(--color-copy);
    stroke-linejoin: round;
    fill: var(--color-copy);
}

.speaker-icon path {
    fill: none;
    stroke: var(--color-copy);
    stroke-width: 4;
    stroke-linecap: round;
}

/* TRACKS */

.track.btn > div {
    padding-bottom: calc(var(--unit-2) - 4px);
}

.track-title {
    display: flex;
    position: relative;
    align-items: start;
    margin-top: var(--unit);
    margin-bottom: var(--unit);
}

.track-title h2 {
    margin: 1px 0 0 var(--unit);
    color: var(--color-highlight);
    flex: 1;
}

.track-title .play-button {
    margin-top: 4px;
}

.track.active .track-title .play-button,
.btn.btn-dark:hover .track-title .play-button {
    fill: var(--color-copy);
    border-color: var(--color-copy);
}

.btn.btn-dark.active .track-title h2 {
    color: var(--color-copy);
}

/* ------------------------------ PAGES ------------------------------ */

/* HOME */

.home {
    position: absolute;
    top: 44%;
    right: 50%;
    transform: translate(50%, -50%);
    text-align: center;
}

.home .logo {
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    margin: auto;
}

.home .nav {
    margin-top: var(--unit-2);
}

.home .nav a {
    border-bottom: 2px solid transparent;
    transition: border-color calc(var(--time-unit) * 4) ease-out;
    padding: var(--unit) var(--unit-2);
    letter-spacing: 1px;
}

.home .nav a:hover {
    color: var(--color-copy);
    border-bottom: 2px solid var(--color-copy);
}

.home .social {
    position: absolute;
    bottom: -150px;
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home .social a > div {
    margin: 0;
}

.home .social .icon {
    margin: var(--unit-2);
}

/* VIDEOS */

.video-list h1 {
    margin-bottom: var(--unit);
}

.btn-video,
.btn-video:hover {
    color: var(--color-copy);
    text-decoration: none;
}

.video-list .btn-video {
    flex-grow: 1;
}

.video-list .btn-video > div {
    box-sizing: border-box;
    height: 100%;
}

.btn-video .player-title {
    margin-top: var(--unit-2);
}

.video {
    padding-top: var(--unit-3);
    position: relative;
}

.video-thumb {
    padding-bottom: 50%;
    border-radius: var(--border-radius);
    margin-bottom: var(--unit-2);
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

.video-description {
    margin-bottom: var(--unit);
}

/* VIDEO EMBEDS */

.video-container {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    background-color: rgb(var(--color-overlay-rgb));
    cursor: pointer;
}

.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--color-copy);
    fill: var(--color-copy);
    box-shadow: 0 0 calc(var(--unit) * 6) rgb(var(--color-overlay-rgb)) inset;
    background-color: rgba(var(--color-overlay-rgb), 0.2);
    transition: background-color var(--time-hover);
}

.video-container:hover .play-button {
    background-color: var(--color-highlight-hover);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* VIDEO TOP NAV */

.video-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.video-nav a {
    margin-left: var(--unit-2);
}

/* CREDITS */

.credits h2 {
    font-size: var(--font-size-huge);
    line-height: var(--line-height-huge);
    margin-bottom: var(--unit-2);
}

.credits p + h2 {
    margin-top: var(--unit-3);
}

.credits-grid > div {
    position: relative;
    margin-bottom: var(--unit);
}

.credits-grid > div > div {
    padding-bottom: 34.375%;
    border-radius: var(--border-radius);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.credit-list {
    margin-top: var(--unit-2);
}

.credit-list p {
    display: flex;
}

.credit-list-bullet {
    border-radius: 50%;
    border: 2px solid var(--color-copy);
    width: calc(var(--unit) / 2);
    height: calc(var(--unit) / 2);
    margin-top: calc(var(--unit) / 2);
    display: inline-block;
}

.credit-list-bullet + span {
    margin-left: 10px;
    display: inline-block;
    flex: 1;
}

/* ALBUMS */

.album-list .btn {
    text-decoration: none;
}

.album-thumb {
    background-size: cover;
    height: calc(var(--unit) * 12);
    width: calc(var(--unit) * 12);
    border-radius: var(--border-radius);
}

.album-info h2 {
    margin: 0 0 var(--unit) 0;
    color: var(--color-highlight);
}

.album-list:hover .btn {
    color: var(--color-copy);
}

/* CONTACT & SUBSCRIBE */

.contact-feedback,
.subscribe-feedback.error {
    margin-top: var(--unit-2);
}

.contact-feedback h2 {
    margin-bottom: var(--unit);
}

.contact-feedback.error,
.subscribe-feedback.error {
    color: var(--color-error);
}

/* SUBSCRIBE */

.subscribe-form {
    margin-top: var(--unit);
    margin-bottom: var(--unit-4);
}

/* NOT FOUND */

.not-found.content {
    padding-bottom: var(--unit-4);
}

.not-found .logo {
    width: 200px;
    margin-bottom: var(--unit-4);
}

.not-found h1 {
    margin-bottom: var(--unit);
}

.not-found h2 {
    text-transform: none;
    margin-top: 0;
    margin-bottom: calc(var(--unit) / 2);
    font-size: var(--font-size-lrg);
    line-height: var(--line-height-lrg);
    font-style: italic;
}

.not-found h3 {
    font-size: var(--font-size-sml);
    line-height: var(--line-height-sml);
    text-transform: none;
    margin-bottom: var(--unit-3);
}

/* ------------------------------ MEDIA QUERIES ------------------------------ */

/* MOBILE */

@media screen and (max-width: 1024px) {

    /* TOOLS */

    .hide-mobile {
        display: none;
    }

    /* TYPOGRAPHY */

    h1 {
        font-size: var(--font-size-exlrg);
        line-height: var(--line-height-exlrg);
    }

    /* BUTTONS */

    button,
    .button {
        width: 100%;
        font-weight: 300;
    }

    /* SOCIAL ICONS */
    .social a > div {
        margin-top: 0;
        margin-left: 0;
        margin-bottom: var(--unit-2);
    }

    /* LAYOUT */

    .content {
        padding: var(--unit-2) var(--unit-2) 0 var(--unit-2);
        width: calc(100% - var(--unit-4));
        top: var(--mobile-content-top-offset);
        height: calc(100vh - (var(--mobile-content-top-offset) + 24px));
    }

    .background {
        background-position: right center;
    }

    /* CONTENT */

    .content-inner {
        padding-bottom: var(--unit-2);
    }

    .content h1 {
        margin-bottom: calc(var(--unit) + 2px);
    }

    /* HEADER */

    header {
        background-color: rgba(var(--color-overlay-rgb), 0.4);
    }

    /* NAV & LOGO */

    .navbar .logo {
        width: 200px;
        flex-direction: column;
        align-items: center;
    }

    .navbar .logo svg {
        height: 10px;
    }

    .navbar .logo svg + svg {
        margin-top: calc(var(--unit) / 2);
    }

    .nav {
        margin-top: var(--unit-4);
    }

    .mobile-nav-button {
        padding: var(--mobile-nav-button-top-padding) var(--unit-2) var(--mobile-nav-button-top-padding) var(--unit);
    }

    .mobile-nav-button span {
        width: var(--unit-2);
        height: 2px;
        display: block;
        margin: 4px 0;
        background-color: var(--color-copy);
    }

    .mobile-nav-player-button {
        padding: var(--mobile-nav-button-top-padding) var(--unit) var(--mobile-nav-button-top-padding) var(--unit);
    }

    .mobile-nav-player-button .play-button {
        fill: var(--color-copy);
        border-color: var(--color-copy);
    }

    .nav-pane {
        z-index: 20;
        position: absolute;
        top: 0;
        left: 0;
        height: calc(100vh);
        width: 100%;
        background-color: var(--color-mask);
        transform: translate(-100%, 0);
        transition: transform var(--time-unit);
    }

    .nav-pane[data-state='in'] {
        transform: translate(0, 0);
    }

    .nav a {
        padding: calc(var(--unit) * 1.5) 0 calc(var(--unit) * 1.5) var(--unit-3);
        font-size: var(--font-size-lrg);
        line-height: var(--font-size-med);
        font-weight: 300;
        letter-spacing: 1.5px;
    }

    /* MOBILE CLOSE */

    .mobile-close {
        position: absolute;
        top: 0;
        right: 0;
        padding: var(--unit);
    }

    .close-icon {
        fill: var(--color-copy);
        width: var(--unit-3);
        height: var(--unit-3);
    }

    /* PLAYER */

    .player {
        top: calc(var(--unit) * 6);
        width: 100%;
    }

    .initial-play-button-text {
        top: calc(var(--unit) * 6.5);
        padding: var(--unit);
        left: 50%;
        text-align: center;
        transform: translate(-50%, 0);
        color: var(--color-copy);
    }

    .player .play-button,
    .player .loading-indicator {
        width: calc(var(--unit) * 6);
        height: calc(var(--unit) * 6);
    }

    .player .play-button {
        border-color: var(--color-copy);
    }

    .player .play-button .play-icon,
    .player .play-button .pause-icon {
        fill: var(--color-copy);
    }

    .player-info {
        text-align: center;
        margin-top: var(--unit-4);
    }

    .player-info .player-clock {
        margin: var(--unit) auto var(--unit-2) auto;
        text-align: center;
    }

    .player-nav-button {
        position: absolute;
        top: var(--unit);
        left: 50%;
    }

    .next-icon,
    .prev-icon {
        width: calc(var(--unit) * 7);
        height: calc(var(--unit) * 4.5);
        fill: var(--color-copy);
    }

    .player-nav-button-prev {
        transform: translate(calc(-50% - 96px), 0);
    }

    .player-nav-button-next {
        transform: translate(calc(-50% + 96px), 0);
    }

    /* TRACK LIST */

    .track-list h1 {
        margin-bottom: 0;
    }

    /* PAGES */

    /* HOME */

    .home {
        right: 50%;
        top: 50%;
        width: 100%;
        padding: var(--unit-2) 0;
        background: rgba(var(--color-overlay-rgb), 0.75);
    }

    .home .logo {
        padding: var(--unit-2);
    }

    .home-page header {
        background: none;
    }

    .home-page header .navbar {
        justify-content: flex-end
    }

    .home .nav,
    .home-page .navbar .logo {
        display: none;
    }

    .home .social {
        position: static;
    }

    /* VIDEOS */

    .video h2 {
        padding: var(--unit-2) 0 var(--unit) 0;
    }

    /* VIDEOS & ALBUMS */

    .video-list .btn > div {
        padding-bottom: calc(var(--unit) * 5);
    }

    .video-container {
        padding-bottom: calc(56.25% + 27px);
    }

    .video-container .play-button {
        width: calc(var(--unit) * 8);
        height: calc(var(--unit) * 8);
    }

    /* ALBUMS */

    .album-list .btn > div {
        padding-bottom: calc(var(--unit) * 5);
        border: 0;
    }

    .album-thumb {
        width: 100%;
        padding-bottom: 50%;
        margin-bottom: var(--unit-2);
    }

    /* NOT FOUND */

    .not-found.content {
        top: 0;
    }

}

@media screen and (min-width: 460px) {

    /* VIDEOS */

    .video-container .play-button {
        width: calc(var(--unit) * 12);
        height: calc(var(--unit) * 12);
    }

    /* CREDITS */

    .credits-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .credits-grid > div {
        width: calc(33% - (var(--unit) / 2));
    }

}

/* DESKTOP */

@media screen and (min-width: 1025px) {

    /* TOOLS */

    .hide-desktop {
        display: none;
    }

    .grid-desktop {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* TYPOGRAPHY */

    h1 {
        font-size: var(--font-size-huge);
        line-height: var(--font-size-huge);
    }

    /* SOCIAL ICONS */

    .social {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* LAYOUT */

    .content {
        width: calc(50% + var(--unit-2)); /* offset left btn padding */
        right: 0;
        padding-right: var(--unit-4);
        top: var(--content-top-offset);
        height: calc(100vh - var(--content-height-offset));
    }

    /*  CONTENT */

    .content h1 {
        margin-bottom: var(--unit-2);
    }

    .content.content-subnav-offset {
        top: var(--content-subnav-offset);
        height: calc(100vh - (var(--content-height-offset) + var(--unit-3)));
    }

    .content > h1,
    .content > h2 {
        margin-left: var(--unit-2);
    }

    /* HEADER */

    header {
        text-align: right;
    }

    .home-page header {
        display: none;
    }

    /* NAV & LOGO */

    .nav {
        display: flex;
    }

    .nav a {
        padding: var(--header-top-offset) var(--unit) var(--unit) var(--unit);
        text-transform: uppercase;
    }

    /* NAVBAR */

    .navbar .nav {
        justify-content: flex-end;
        margin: 0 var(--unit-2) 0 0;
    }

    .navbar .logo {
        padding-left: var(--unit-2);
    }

    .navbar .logo svg + svg {
        padding-left: var(--unit);
    }

    /* PLAYER */

    .player {
        display: flex;
        height: var(--unit-4);
        bottom: 0;
        padding: var(--unit-2);
        width: calc(100% - var(--unit-4));
        transition: transform calc(var(--time-unit) * 4) ease-out;
        transition-delay: 2s;
        transform: translate3d(0, calc(var(--unit) * 8), 0);
    }

    .player[data-show='true'],
    .player-container:hover .player {
        transform: translate3d(0, 0, 0);
        transition: transform var(--time-unit) ease-out;
    }

    .player .next-prev-nav {
        margin-top: 8px;
        opacity: 0;
        transition: opacity calc(var(--time-hover) * 2);
    }

    .player-nav-button {
        height: 25px;
        padding: 0 var(--unit);
    }

    .player-container:hover .next-prev-nav {
        transition: opacity var(--time-hover);
        opacity: 1;
    }

    .initial-play-button-text {
        top: 2px;
        left: var(--unit-4);
        padding: var(--unit) 0 var(--unit) var(--unit);
    }

    .play-button:hover .initial-play-button-text {
        color: var(--color-copy);
    }

    /* TRACK LIST */

    .track-list h1 {
        margin-bottom: 0;
    }

    /* VIDEOS */

    .video h2 {
        margin: var(--unit-3) 0 var(--unit-2) 0;
        font-size: var(--font-size-exlrg);
        line-height: var(--font-size-exlrg);
    }

    /* VIDEO EMBEDS */

    .video-container {
        border: 2px solid var(--color-copy);
    }

    .video-container .play-button {
        width: calc(var(--unit) * 16);
        height: calc(var(--unit) * 16);
    }

    /* PAGES */

    /* HOME */

    .home::before {
        content: '';
        position: absolute;
        z-index: -1;
        left: -200px;
        top: -200px;
        width: 100%;
        height: 100%;
        padding: 200px;
        background: radial-gradient(rgba(0, 0, 0, 0.15) 50%, transparent 70%);
    }

    /* CREDITS */

    .credit-list-bullet {
        margin-left: var(--unit);
    }

    /* ALBUMS */

    .album-info {
        width: calc(100% - (var(--unit) * 14));
        margin-left: var(--unit-2);
    }

}

/* LARGE DESKTOPS */

@media screen and (min-width: 1280px) {

    .home {
        right: 38%;
    }

    /* VIDEOS */

    .video-list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .video-list li {
        width: calc(50% - (var(--unit) / 2));
        display: flex;
    }

}
