/*
 * actually, i'm Black - Stylesheet
 * Editorial luxury: where every word matters
 */

/* === CSS Variables === */
:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --gold: #D4AF37;
    --gold-bright: #E6C547;
    --gold-dim: #8B7830;
    --text-primary: #E6E6E6;
    --text-secondary: #999999;
    --text-tertiary: #666666;
    --link-blue: #4169E1;
    --link-blue-hover: #6B8DD6;
    --border-subtle: #1a1a1a;
    --border-visible: #222222;

    /* Typography scale */
    --font-base: 18px;
    --font-body: 1.1rem;
    --font-small: 0.9rem;
    --font-tiny: 0.85rem;

    /* Spacing rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Layout */
    --content-width: 700px;
    --wide-width: 900px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* Atkinson Hyperlegible - optimized for low vision readers */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-soft) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.008) 2px,
            rgba(255, 255, 255, 0.008) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* === Skip Link (Accessibility) === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: var(--space-xs) var(--space-sm);
    z-index: 100;
    text-decoration: none;
    font-weight: 700;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    color: var(--gold);
    font-weight: 700;
    line-height: 1.2;
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    line-height: 1.1;
    margin-top: 0;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.15;
}

h3 { font-size: 1.65rem; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: var(--space-md);
}

/* First paragraph after heading gets special treatment */
h2 + p,
h3 + p {
    margin-top: var(--space-sm);
}

/* === Links === */
a {
    color: var(--link-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:hover {
    color: var(--link-blue-hover);
    text-decoration-color: transparent;
}

a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* === Header & Navigation === */
.site-header {
    background: var(--black-card);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 10;
}

/* Subtle gold accent line */
.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-dim) 50%,
        transparent 100%
    );
    opacity: 0.3;
}

.site-header nav {
    max-width: var(--wide-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.site-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-block;
}

.site-title:hover {
    color: var(--gold-bright);
    transform: translateX(2px);
}

.site-title:focus {
    outline-color: var(--gold-bright);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--font-small);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color var(--transition-base);
    position: relative;
}

/* Elegant underline on hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* === Main Content === */
main {
    flex: 1;
    max-width: var(--content-width);
    width: 100%;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    z-index: 2;
}

/* Intro section (homepage) */
.intro {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
}

.intro h1 {
    margin-bottom: var(--space-md);
}

.intro p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 32em;
}

/* Posts section */
.posts h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: var(--font-tiny);
}

/* === Article Previews === */
.post-preview {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
    transition: transform var(--transition-base);
}

.post-preview:last-child {
    border-bottom: none;
}

.post-preview:hover {
    transform: translateX(4px);
}

.post-preview h3 {
    margin: 0 0 var(--space-xs);
    font-size: 1.75rem;
}

.post-preview h3 a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

.post-preview h3 a:hover {
    color: var(--gold-bright);
}

.post-preview .post-meta {
    margin-bottom: var(--space-sm);
}

.post-preview p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* === Individual Post === */
article {
    margin-bottom: var(--space-xl);
}

.post-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-visible);
    position: relative;
}

/* Gold accent line */
.post-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.post-header h1 {
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 3rem;
    line-height: 1.1;
}

.post-meta {
    color: var(--text-secondary);
    font-size: var(--font-small);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.post-meta time {
    font-variant-numeric: tabular-nums;
}

.category {
    color: var(--gold-dim);
    text-transform: uppercase;
    font-size: var(--font-tiny);
    letter-spacing: 0.08em;
    font-weight: 700;
}

/* === Tags === */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.tag {
    background: var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    font-size: var(--font-tiny);
    letter-spacing: 0.02em;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.tag:hover {
    background: var(--border-visible);
    color: var(--text-primary);
}

/* === Post Content === */
.post-content {
    font-size: var(--font-body);
    position: relative;
}

.post-content > *:first-child {
    margin-top: 0;
}

.post-content h2:first-child,
.post-content h3:first-child {
    margin-top: 0;
}

/* Enhance readability for long-form content */
.post-content > p {
    max-width: 38em;
}

/* Drop cap for first paragraph */
.post-content > p:first-of-type::first-letter {
    font-size: 3.5em;
    line-height: 0.85;
    float: left;
    margin: 0.08em 0.12em 0 0;
    color: var(--gold);
    font-weight: 700;
}

.post-content blockquote {
    border-left: 3px solid var(--gold);
    margin: var(--space-xl) 0;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
}

.post-content blockquote::before {
    content: '"';
    position: absolute;
    left: -0.15em;
    top: -0.15em;
    font-size: 4em;
    color: var(--gold-dim);
    opacity: 0.2;
    font-style: normal;
    line-height: 1;
}

.post-content ul,
.post-content ol {
    margin: var(--space-lg) 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: var(--space-sm);
}

.post-content li::marker {
    color: var(--gold-dim);
}

.post-content code {
    background: var(--black-soft);
    color: var(--gold-bright);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.post-content pre {
    background: var(--black-soft);
    padding: var(--space-md);
    border-radius: 4px;
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border: 1px solid var(--border-subtle);
}

.post-content pre code {
    padding: 0;
    background: none;
    color: var(--text-primary);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    margin: var(--space-xl) 0;
}

.post-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--border-visible) 20%,
        var(--border-visible) 80%,
        transparent 100%
    );
    margin: var(--space-2xl) 0;
}

/* === Footer === */
footer {
    background: var(--black-card);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--text-tertiary);
    font-size: var(--font-small);
    position: relative;
    z-index: 10;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-dim) 50%,
        transparent 100%
    );
    opacity: 0.2;
}

footer p {
    margin-bottom: var(--space-sm);
}

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

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

footer a:hover {
    color: var(--gold);
}

/* === Forms === */
input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: var(--space-sm);
    margin: var(--space-xs) 0 var(--space-md);
    background: var(--black-soft);
    border: 1px solid var(--border-visible);
    border-radius: 3px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base), background var(--transition-base);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--black);
}

button,
.button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-base), transform var(--transition-fast);
}

button:hover,
.button:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

button:active,
.button:active {
    transform: translateY(0);
}

button:focus,
.button:focus {
    outline: 2px solid var(--text-primary);
    outline-offset: 3px;
}

/* === Utility Classes === */
.privacy {
    color: var(--text-tertiary);
    font-size: var(--font-small);
    margin-top: var(--space-md);
}

.text-center {
    text-align: center;
}

/* === About Page === */
main.about-page {
    max-width: 860px;
}

.about-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: var(--space-2xl);
    letter-spacing: 0.02em;
}

.about-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dim);
    margin-bottom: var(--space-lg);
    margin-top: 0;
}

.resume-entry {
    margin-bottom: var(--space-xl);
}

.resume-entry:last-child {
    margin-bottom: 0;
}

.resume-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.resume-title {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.resume-employer {
    display: block;
    color: var(--gold-dim);
    font-size: var(--font-small);
    margin-top: 0.2rem;
}

.resume-date {
    color: var(--text-tertiary);
    font-size: var(--font-small);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.resume-entry p {
    color: var(--text-secondary);
    font-size: var(--font-small);
    line-height: 1.7;
    margin-bottom: 0;
}

.about-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.about-links li {
    color: var(--text-secondary);
    font-size: var(--font-small);
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger fade-in on page load */
main {
    animation: fadeIn 0.6s ease-out;
}

article {
    animation: fadeIn 0.8s ease-out;
}

.post-preview {
    animation: fadeIn 0.6s ease-out;
}

.post-preview:nth-child(2) { animation-delay: 0.1s; }
.post-preview:nth-child(3) { animation-delay: 0.2s; }
.post-preview:nth-child(4) { animation-delay: 0.3s; }

/* === Responsive === */

/* Desktop - wider comfortable reading width */
@media (min-width: 1024px) {
    main {
        max-width: 850px;
        padding: var(--space-2xl) var(--space-xl);
    }

    .site-header nav {
        max-width: 1100px;
        padding: var(--space-md) var(--space-xl);
    }

    .post-header h1 {
        font-size: 3.5rem;
    }
}

/* Large desktop - maximum readable width */
@media (min-width: 1440px) {
    main {
        max-width: 1000px;
        padding: var(--space-2xl) var(--space-2xl);
    }

    .site-header nav {
        max-width: 1300px;
    }

    .post-content {
        font-size: 1.15rem;
    }

    .post-header h1 {
        font-size: 4rem;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.85rem; }
}

/* Extra large screens - spacious layout */
@media (min-width: 1920px) {
    main {
        max-width: 1200px;
        padding: var(--space-2xl) var(--space-2xl);
    }

    .site-header nav {
        max-width: 1500px;
    }

    .post-content {
        font-size: 1.2rem;
    }
}

/* Mobile and small screens */
@media (max-width: 700px) {
    :root {
        --font-base: 17px;
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 3rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.5rem; }

    .post-header h1 {
        font-size: 2.5rem;
    }

    .site-header nav {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .nav-links {
        gap: var(--space-md);
    }

    main {
        padding: var(--space-xl) var(--space-md);
    }

    /* Disable drop cap on mobile for better flow */
    .post-content > p:first-of-type::first-letter {
        font-size: inherit;
        line-height: inherit;
        float: none;
        margin: 0;
        color: inherit;
        font-weight: inherit;
    }
}

@media (max-width: 500px) {
    :root {
        --font-base: 16px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* === Print Styles === */
@media print {
    :root {
        --black: white;
        --gold: black;
        --text-primary: black;
        --text-secondary: #333;
    }

    body {
        background: white;
        color: black;
    }

    body::before {
        display: none;
    }

    .site-header,
    footer,
    .skip-link,
    .tags {
        display: none;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    .post-content > p:first-of-type::first-letter {
        font-size: inherit;
        float: none;
        margin: 0;
        color: black;
    }
}

/* === Oracle About Page === */
main.oracle-page {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: var(--space-2xl);
}

.oracle-identity {
    margin-bottom: var(--space-lg);
}

.oracle-identity h1 {
    margin-bottom: var(--space-xs);
}

.oracle-tagline {
    color: var(--text-tertiary);
    font-size: var(--font-small);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.oracle-intro {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
}

.oracle-intro p {
    margin: 0;
}

/* === Starter chips === */
.starter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.starter-chip {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-visible);
    border-radius: 2px;
    padding: 0.45rem 1rem;
    font-size: var(--font-tiny);
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.02em;
    font-weight: 400;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    transform: none;
}

.starter-chip:hover {
    color: var(--text-primary);
    border-color: var(--gold-dim);
    background: transparent;
    transform: none;
}

.starter-chip:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* === Chat container === */
.chat-container {
    width: 100%;
    background: var(--black-card);
    border: 1px solid var(--border-visible);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.chat-messages {
    min-height: 200px;
    max-height: 420px;
    overflow-y: auto;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.chat-messages:empty::before {
    content: '';
    display: block;
}

/* === Message bubbles === */
.chat-message {
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 3px;
    font-size: var(--font-small);
    line-height: 1.6;
    text-align: left;
    word-break: break-word;
}

.chat-message--user {
    background: var(--border-subtle);
    color: var(--text-primary);
    align-self: flex-end;
}

.chat-message--assistant {
    background: transparent;
    color: var(--text-secondary);
    align-self: flex-start;
    border-left: 2px solid var(--gold-dim);
    border-radius: 0 3px 3px 0;
    padding-left: var(--space-sm);
}

.chat-message--error {
    color: var(--text-tertiary);
    font-style: italic;
    border-left-color: var(--text-tertiary);
}

/* === Chat form === */
.chat-form {
    display: flex;
    border-top: 1px solid var(--border-subtle);
}

.chat-input {
    flex: 1;
    background: var(--black);
    border: none;
    border-radius: 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: var(--font-small);
    padding: var(--space-sm) var(--space-md);
    margin: 0;
    outline: none;
    transition: none;
}

.chat-input:focus {
    background: var(--black);
    border-color: transparent;
    box-shadow: inset 0 0 0 2px var(--gold-dim);
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input::placeholder {
    color: var(--text-tertiary);
}

.chat-send {
    background: transparent;
    border: none;
    border-left: 1px solid var(--border-subtle);
    border-radius: 0;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0 var(--space-md);
    transition: color var(--transition-fast), background var(--transition-fast);
    transform: none;
}

.chat-send:hover {
    background: var(--border-subtle);
    color: var(--gold-bright);
    transform: none;
}

.chat-send:focus {
    outline: 2px solid var(--gold);
    outline-offset: 0;
}

.chat-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === Depth links row === */
.oracle-depth-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    font-size: var(--font-tiny);
    color: var(--text-tertiary);
    letter-spacing: 0.04em;
}

.oracle-depth-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.oracle-depth-links a:hover {
    color: var(--gold);
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Oracle page responsive */
@media (max-width: 640px) {
    main.oracle-page {
        padding-top: var(--space-xl);
    }

    .chat-messages {
        max-height: 320px;
    }

    .oracle-depth-links {
        gap: var(--space-sm);
    }
}

/* === Music Page === */
.music-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-bottom: var(--space-2xl);
}

.music-section-label {
    color: var(--gold);
    font-size: var(--font-tiny);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.music-platform-links {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.music-platform-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-small);
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    transition: color var(--transition-fast);
}

.music-platform-links a::before {
    content: "→";
    color: var(--gold);
    text-decoration: none;
}

.music-platform-links a:hover {
    color: var(--text-primary);
}

.music-curation {
    margin-top: var(--space-2xl);
}

.music-curation p {
    color: var(--text-secondary);
    font-size: var(--font-small);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 560px;
}

@media (max-width: 640px) {
    .music-hero {
        grid-template-columns: 1fr;
    }
}
