:root {
    --bg: #fff;
    --bg-alt: #f6f6f4;
    --text: #000;
    --text-secondary: #111;
    --text-dim: #555;
    --accent: #222;
    --accent-light: #999;
    --rule: #ddd;
    --heading: 'DM Sans', 'Helvetica Neue', sans-serif;
    --body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --mono: 'Space Mono', monospace;
    --measure: 42rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 21px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #111;
    color: #fff;
}

a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--accent-light);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
a:hover {
    text-decoration-color: var(--text);
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.3s;
}
nav.hidden { transform: translateY(-100%); }
nav a { text-decoration: none; }
.nav-brand { font-weight: 700; }
.nav-brand a { color: var(--text); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text-dim); }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
@media (max-width: 768px) {
    .nav-links { display: none; }
    nav { padding: 0 1.25rem; }
}

/* ---- HERO (index only) ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}
.hero-label {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
    font-family: var(--heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title span {
    color: var(--text-dim);
}
.hero-subtitle {
    font-family: var(--heading);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}
.hero-meta {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}
.hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

#waveform {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.08;
    pointer-events: none;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}
.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    margin: 0.5rem auto 0;
    animation: scrollPulse 2s infinite;
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
    padding: 7rem 2rem 2.5rem;
    max-width: var(--measure);
    margin: 0 auto;
    border-bottom: 1px solid var(--rule);
}

/* ---- SECTIONS ---- */
section {
    padding: 4rem 2rem;
    max-width: var(--measure);
    margin: 0 auto;
}
section.wide {
    max-width: 56rem;
}
.section-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.section-divider {
    width: 40px;
    height: 2px;
    background: var(--text);
    margin-bottom: 2.5rem;
}

/* ---- NAV CARDS (index page) ---- */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    max-width: 50rem;
    margin: 0 auto;
}
.nav-card {
    display: block;
    background: var(--bg);
    padding: 1.5rem;
    transition: background 0.15s;
    color: var(--text);
    text-decoration: none;
}
.nav-card:hover {
    background: var(--bg-alt);
}
.nav-card-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.25rem;
}
.nav-card-title {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ---- BIOGRAPHY ---- */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) {
    .bio-grid { grid-template-columns: 1fr; gap: 2rem; }
    section.wide { max-width: var(--measure); }
}
.bio-text p {
    margin-bottom: 1.4rem;
    color: var(--text-secondary);
}
.bio-text p:first-child {
    font-size: 1.25rem;
    color: var(--text);
}
.bio-text p:first-child::first-letter {
    font-family: var(--heading);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.5rem;
    padding-top: 0.15rem;
    color: var(--text);
    font-weight: 700;
}
.bio-sidebar {
    border-left: 1px solid var(--rule);
    padding-left: 2rem;
}
.bio-fact {
    margin-bottom: 1.5rem;
}
.bio-fact-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}
.bio-fact-value {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* ---- PULL QUOTE ---- */
.pull-quote {
    padding: 4rem 2rem;
    text-align: center;
    max-width: var(--measure);
    margin: 0 auto;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.pull-quote blockquote {
    font-family: var(--heading);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-style: italic;
    line-height: 1.45;
    color: var(--text);
}
.pull-quote blockquote::before {
    content: none;
}
.pull-quote cite {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 1.5rem;
    font-style: normal;
}
.pull-quote cite a {
    color: var(--text-dim);
}

/* ---- VERSATILE STORY ---- */
.story-text {
    max-width: var(--measure);
}
.story-text p {
    margin-bottom: 1.4rem;
    color: var(--text-secondary);
}
.story-highlight {
    border-left: 2px solid var(--text);
    padding: 1rem 0 1rem 1.5rem;
    margin: 2.5rem 0;
}
.story-highlight p {
    font-style: italic;
    color: var(--text);
    margin: 0;
    font-size: 1.15rem;
}
.story-highlight cite {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.75rem;
    font-style: normal;
}

/* ---- DISCOGRAPHY ---- */
.disco-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--rule);
}
.disco-tab {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.15s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.disco-tab:hover { color: var(--text); }
.disco-tab.active {
    color: var(--text);
    border-bottom-color: var(--text);
}

.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.disco-panel { display: none; }
.disco-panel.active { display: block; }

.album-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
}
.album-card::before { content: none; }
.album-card:hover { transform: none; }

.album-year {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}
.album-title {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.album-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.album-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.album-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ---- QUOTES SECTION ---- */
.quotes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.quote-card {
    padding: 2rem 0;
    border-bottom: 1px solid var(--rule);
}
.quote-card::before { content: none; }
.quote-card blockquote {
    font-family: var(--body);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--text);
}
.quote-card cite {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.75rem;
    font-style: normal;
}
.quote-card cite a { color: var(--text-dim); }

/* ---- STUDIO / EQUIPMENT ---- */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
@media (max-width: 768px) {
    .studio-grid { grid-template-columns: 1fr; }
}
.gear-list {
    list-style: none;
}
.gear-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.gear-name {
    font-family: var(--mono);
    font-size: 0.95rem;
    color: var(--text);
}
.gear-note {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-style: italic;
}
.philosophy-text p {
    margin-bottom: 1.4rem;
    color: var(--text-secondary);
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--rule);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.85rem;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--rule);
}
.timeline-year {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.timeline-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.timeline-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ---- INTERVIEWS ---- */
.interview-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.interview-item {
    display: block;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    transition: none;
}
.interview-item:hover {
    background: transparent;
    transform: none;
}
.interview-source {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.15rem;
}
.interview-title {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.interview-desc {
    font-size: 1rem;
    color: var(--text-dim);
}

/* ---- LISTEN / LINKS ---- */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    padding: 1rem 1.25rem;
    transition: background 0.15s;
    color: var(--text);
    text-decoration: none;
}
.link-card:hover {
    background: var(--bg-alt);
}
.link-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--bg);
    flex-shrink: 0;
}
.link-name {
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Embed container */
.embed-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.embed-card {
    border: 1px solid var(--rule);
    overflow: hidden;
}
.embed-card iframe {
    width: 100%;
    display: block;
}

/* ---- PAGE IMAGE ---- */
.page-img {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    display: block;
}
.page-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}
.page-img figcaption {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    padding: 0.5rem 2rem;
    text-align: right;
}

/* ---- FOOTER ---- */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--rule);
    margin-top: 2rem;
}
footer p {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}
footer .footer-title {
    font-family: var(--heading);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
    section { padding: 3rem 1.25rem; }
    .quotes-grid { grid-template-columns: 1fr; }
    .bio-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 2rem; }
    .links-grid { grid-template-columns: 1fr 1fr; }
    .page-header { padding: 6rem 1.25rem 2rem; }
    .nav-cards { max-width: 100%; }
}
