:root {
    --paper: #f2eddf;
    --paper-deep: #dfd7c5;
    --ink: #11110f;
    --muted: #5e5b54;
    --orange: #ff4f22;
    --blue: #2f55ff;
    --line: rgba(17, 17, 15, 0.2);
    --font-display: "Syne", "Arial Black", sans-serif;
    --font-body: "Manrope", "Helvetica Neue", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.tracking-pixel {
    display: none;
}

.skip-link {
    position: fixed;
    top: 0;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: #fff;
    transform: translateY(-110%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1.25rem, 3vw, 3rem);
    border-bottom: 1px solid var(--ink);
}

.wordmark {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.wordmark span {
    color: var(--orange);
}

.site-header nav {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.site-header nav a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
    min-height: calc(100vh - 70px);
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4.5vw, 5rem);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy::after {
    position: absolute;
    top: 7%;
    right: -1.5rem;
    width: clamp(5rem, 9vw, 9rem);
    aspect-ratio: 1;
    z-index: -1;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.eyebrow {
    margin: 0 0 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4.7rem, 11vw, 11rem);
    font-weight: 800;
    letter-spacing: -0.095em;
    line-height: 0.73;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child {
    margin-top: 0.12em;
    color: transparent;
    font-size: 0.55em;
    letter-spacing: -0.06em;
    line-height: 1;
    -webkit-text-stroke: 2px var(--ink);
}

.hero-intro {
    max-width: 33rem;
    margin: 2.25rem 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button {
    display: inline-flex;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

button.button {
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.button-primary {
    background: var(--orange);
}

.button-secondary {
    background: transparent;
}

.hero-art {
    position: relative;
    margin: 0;
}

.art-frame {
    position: relative;
    aspect-ratio: 0.88;
    border: 2px solid var(--ink);
    background: var(--blue);
    box-shadow: clamp(0.8rem, 1.8vw, 1.6rem) clamp(0.8rem, 1.8vw, 1.6rem) 0 var(--blue);
    overflow: hidden;
    transform: rotate(1.5deg);
}

.art-frame::after {
    position: absolute;
    right: 0;
    bottom: 8%;
    padding: 0.35rem 0.75rem;
    background: var(--paper);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    content: "ATHENS → EVERYWHERE";
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.art-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.06);
}

.hero-art figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-right: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticker {
    padding: 1.1rem 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--orange);
    overflow: hidden;
}

.ticker > div {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    align-items: center;
    padding-inline: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.editorial {
    display: grid;
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 4.5vw, 5rem);
}

.section-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-label span:last-child {
    color: var(--muted);
}

.editorial-copy h2,
.listening-heading h2,
.closing-note h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 7.5vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.88;
    text-transform: uppercase;
}

.editorial-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 6rem);
    margin-top: clamp(3rem, 5vw, 5rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--ink);
}

.editorial-columns p {
    margin: 0;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.75;
}

.editorial-columns p:first-child::first-letter {
    float: left;
    margin: 0.08em 0.14em 0 0;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 4.5em;
    font-weight: 800;
    line-height: 0.72;
}

.listening-room {
    padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 4.5vw, 5rem);
    background: var(--ink);
    color: var(--paper);
}

.listening-heading {
    display: flex;
    max-width: 1440px;
    margin: 0 auto clamp(3rem, 6vw, 6rem);
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.eyebrow-light {
    color: #a9a59d;
}

.player-switcher {
    display: inline-flex;
    padding: 0.3rem;
    border: 1px solid #77746d;
    border-radius: 999px;
}

.player-switcher button {
    min-width: 7.2rem;
    padding: 0.75rem 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-switcher button[aria-selected="true"] {
    background: var(--paper);
    color: var(--ink);
}

.player-switcher button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.player-stage {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(500px, 1.2fr);
    gap: clamp(2rem, 5vw, 6rem);
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
}

.media-column {
    position: sticky;
    top: 2rem;
}

.player-panel[hidden] {
    display: none;
}

.youtube-placeholder,
.spotify-placeholder {
    position: relative;
    min-height: 420px;
    border: 1px solid #4a4844;
    background: #1c1c1a;
    overflow: hidden;
}

.youtube-placeholder {
    aspect-ratio: 16 / 10;
}

.youtube-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    filter: saturate(0.55);
}

.youtube-placeholder::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 10%, rgba(17, 17, 15, 0.85) 100%);
    content: "";
}

.placeholder-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: end;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.platform-label {
    grid-column: 1 / -1;
    color: #b7b2a8;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.placeholder-copy p {
    max-width: 18rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.8vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.round-play {
    display: grid;
    width: 4.7rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    color: var(--ink);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.round-play:hover,
.round-play:focus-visible {
    transform: rotate(-8deg) scale(1.06);
}

.youtube-placeholder iframe,
.spotify-placeholder iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.spotify-placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: clamp(2rem, 4vw, 3.5rem);
    background: var(--blue);
}

.spotify-placeholder::before {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 15rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    content: "";
}

.spotify-placeholder h3 {
    position: relative;
    margin: 1rem 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-transform: uppercase;
}

.spotify-placeholder p {
    position: relative;
    max-width: 32rem;
    margin: 0 0 1.5rem;
    line-height: 1.65;
}

.spotify-placeholder > a {
    position: relative;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-underline-offset: 4px;
}

.button-on-dark {
    position: relative;
    border-color: var(--paper);
    background: var(--paper);
    color: var(--ink);
}

.now-playing {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
    padding: 0.9rem 0;
    border-top: 1px solid #4a4844;
    border-bottom: 1px solid #4a4844;
    font-size: 0.72rem;
}

.now-playing span {
    color: #8d8981;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.now-playing strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    background: #4a4844;
    list-style: none;
}

.track-card {
    position: relative;
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
    min-height: 17.5rem;
    padding: 1.5rem;
    background: var(--ink);
    transition: background 180ms ease, color 180ms ease;
}

.track-card.is-playing {
    background: var(--paper);
    color: var(--ink);
}

.track-card::after {
    position: absolute;
    right: 1rem;
    bottom: 0.8rem;
    width: 0;
    height: 3px;
    background: var(--orange);
    content: "";
    transition: width 200ms ease;
}

.track-card:hover::after,
.track-card.is-playing::after {
    width: calc(100% - 2rem);
}

.track-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #77746d;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
}

.track-card > img {
    width: 4.5rem;
    aspect-ratio: 1;
    border: 1px solid #55524d;
    object-fit: cover;
}

.track-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.track-album {
    min-height: 2.2em;
    margin: 0 2rem 1rem 0;
    color: #97938a;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.is-playing .track-album {
    color: var(--muted);
}

.track-copy h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.track-copy > p:not(.track-album) {
    margin: 0.9rem 0 1.3rem;
    color: #aaa69d;
    font-size: 0.78rem;
    line-height: 1.55;
}

.is-playing .track-copy > p:not(.track-album) {
    color: var(--muted);
}

.track-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: auto;
}

.track-play,
.track-actions a {
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.track-play {
    padding: 0;
}

.track-actions a {
    padding-left: 0.75rem;
    border-left: 1px solid #4a4844;
    text-decoration: none;
}

.track-play:hover,
.track-play:focus-visible,
.track-actions a:hover,
.track-actions a:focus-visible {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.noscript-note {
    max-width: 1440px;
    margin: 2rem auto 0;
    padding: 1rem;
    border: 1px solid var(--orange);
}

.closing-note {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 4.5vw, 5rem);
    background: var(--orange);
    overflow: hidden;
}

.closing-note::after {
    position: absolute;
    top: 10%;
    right: -5vw;
    width: clamp(9rem, 22vw, 21rem);
    aspect-ratio: 1;
    border: 2px solid var(--ink);
    border-radius: 50%;
    content: "";
}

.closing-note > p,
.closing-note h2,
.closing-links {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.closing-note > p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.closing-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(3rem, 6vw, 6rem);
    border-top: 1px solid var(--ink);
}

.closing-links a {
    display: flex;
    min-height: 7rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    border-right: 1px solid var(--ink);
    text-decoration: none;
}

.closing-links a:first-child {
    border-left: 1px solid var(--ink);
}

.closing-links a:hover,
.closing-links a:focus-visible {
    background: var(--paper);
}

.closing-links span:first-child {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.closing-links span:last-child {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem clamp(1.25rem, 3vw, 3rem);
    background: var(--paper);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
}

.wordmark-footer {
    font-size: 1rem;
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr 0.72fr;
        gap: 3rem;
    }

    .player-stage {
        grid-template-columns: 1fr;
    }

    .media-column {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        max-width: 780px;
        width: 100%;
        margin: 0 auto 2rem;
    }

    .track-list {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .site-header nav a:first-child {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy::after {
        right: 0;
    }

    .hero h1 {
        font-size: clamp(4rem, 22vw, 7rem);
    }

    .hero-art {
        max-width: 31rem;
        margin: 0 auto;
    }

    .editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-label {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--ink);
    }

    .editorial-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .listening-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .player-switcher {
        align-self: stretch;
    }

    .player-switcher button {
        flex: 1;
    }

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

    .track-card {
        min-height: 15.5rem;
    }

    .closing-links {
        grid-template-columns: 1fr;
    }

    .closing-links a,
    .closing-links a:first-child {
        min-height: 5.5rem;
        border-right: 1px solid var(--ink);
        border-bottom: 1px solid var(--ink);
        border-left: 1px solid var(--ink);
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .site-footer p:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-header nav {
        gap: 0.85rem;
    }

    .site-header nav a {
        font-size: 0.65rem;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-art figcaption {
        flex-direction: column;
    }

    .youtube-placeholder,
    .spotify-placeholder,
    .youtube-placeholder iframe,
    .spotify-placeholder iframe {
        min-height: 330px;
    }

    .placeholder-copy {
        grid-template-columns: 1fr;
    }

    .round-play {
        width: 4rem;
    }

    .track-card {
        grid-template-columns: 3.5rem 1fr;
        gap: 0.85rem;
        min-height: 16.5rem;
        padding: 1.15rem;
    }

    .track-card > img {
        width: 3.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
