/* ============================================
   DIRTYROCK - Dark Theme Stylesheet
   ============================================ */

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

:root {
    --bg: #050505;
    --bg-elevated: #0a0a0a;
    --bg-card: #0f0f0f;
    --border: #1a1a1a;
    --border-hover: #2a2a2a;
    --text-primary: #f0f0f0;
    --text-secondary: #888;
    --text-muted: #555;
    --accent: #1DB954;
    --accent-dim: rgba(29, 185, 84, 0.15);
    --accent-glow: rgba(29, 185, 84, 0.08);
    --purple: #8b5cf6;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.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;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 32px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

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

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

/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 24px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo-img {
    width: clamp(340px, 55vw, 620px);
    height: auto;
}

.hero-h1 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--text-primary);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* --- Sections --- */
.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- Release Banner --- */
.release-section {
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.release-banner {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(15,15,15,1) 0%, rgba(30,20,50,0.6) 50%, rgba(15,15,15,1) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.release-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.release-artwork {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.release-artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.release-artwork:hover .release-artwork-img {
    transform: scale(1.03);
}

.release-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.release-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    width: fit-content;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(29, 185, 84, 0); }
}

.release-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--text-primary);
}

.release-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.release-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-presave {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.btn-presave:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.3);
}

.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.btn-listen:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.release-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .release-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 24px;
    }

    .release-artwork {
        width: 220px;
        height: 220px;
    }

    .release-info {
        align-items: center;
    }

    .release-ctas {
        justify-content: center;
    }

    .release-tag {
        margin: 0 auto;
    }
}

/* --- Media Section (Spotify + Instagram stacked) --- */
.media-section {
    border-top: 1px solid var(--border);
}

.media-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 540px;
    margin: 0 auto;
}

.music-player-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 4px;
    transition: border-color 0.3s ease;
}

.music-player-main:hover {
    border-color: var(--border-hover);
}

.music-player-main iframe {
    display: block;
}

.platform-pills {
    display: flex;
    gap: 8px;
}

.platform-pill {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.platform-pill:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* --- Platforms --- */
.platforms {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.platforms-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.platform-links {
    display: flex;
    gap: 16px;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.platform-link:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--accent-dim);
}

/* --- About Section --- */
.about-section {
    border-top: 1px solid var(--border);
}

.about-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.about-portrait {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s var(--ease-out);
}

.portrait-img:hover {
    filter: grayscale(0%);
}

.about-content {
    max-width: 800px;
}

.about-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.about-highlight {
    color: var(--text-primary);
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- Instagram Embed --- */
.section-follow {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.section-follow:hover {
    color: #E1306C;
}

.instagram-embed-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    flex: 1;
}

.instagram-embed-card iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/* --- Connect Section --- */
.connect-section {
    border-top: 1px solid var(--border);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

/* Brand colors for social icons */
.social-card--spotify .social-icon { color: #1DB954; }
.social-card--apple .social-icon { color: #FC3C44; }
.social-card--soundcloud .social-icon { color: #FF5500; }
.social-card--instagram .social-icon { color: #E1306C; }

.social-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.social-arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: auto;
    transition: all 0.3s var(--ease-out);
    position: relative;
    z-index: 1;
}

.social-card:hover .social-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* --- Contact --- */
.contact {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

#contact-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-contact:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.contact-form {
    display: grid;
    gap: 12px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s var(--ease-out), opacity 0.4s ease, margin-top 0.4s ease;
}

.contact-form.open {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 22px;
    width: auto;
    opacity: 0.4;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: 0.15s; }
[data-animate][data-delay="2"] { transition-delay: 0.3s; }
[data-animate][data-delay="3"] { transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .media-stack {
        max-width: 100%;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-portrait {
        max-width: 280px;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav.scrolled {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        margin-bottom: 36px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-stats {
        gap: 32px;
    }

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

    .social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .social-card {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   SUBPAGE STYLES (Music / About / Press)
   ============================================ */

.subpage {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.subpage-header {
    margin-bottom: 48px;
    max-width: 780px;
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.05;
}

.subpage-intro {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

.nav-link--active {
    color: var(--text-primary);
}

.nav-link--active::after {
    width: 100%;
}

.text-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.8;
}

.music-section-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    margin-top: 40px;
}

.music-section-heading:first-child {
    margin-top: 0;
}

.music-featured,
.music-player-section,
.discography,
.collaborators,
.listen-everywhere,
.press-section,
.related-pages,
.stats-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.related-pages:last-child,
.press-section:last-child {
    border-bottom: none;
}

/* Discography List */
.discography-list {
    display: grid;
    gap: 20px;
}

.discography-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.discography-item:hover {
    border-color: var(--border-hover);
}

.discography-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.disc-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.disc-type {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* About Page Grid */
.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.about-portrait--large {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.about-bio .about-text {
    margin-bottom: 16px;
}

.about-stats--full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Press Page */
.press-block {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.press-block .about-text:last-child {
    margin-bottom: 0;
}

.press-facts {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.press-facts li {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.press-facts li strong {
    color: var(--text-primary);
    margin-right: 6px;
}

.press-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    padding-left: 16px;
    border-left: 2px solid var(--accent);
    margin-bottom: 16px;
}

.press-quote:last-child {
    margin-bottom: 0;
}

.press-assets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.press-asset {
    margin: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.press-asset img {
    width: 100%;
    height: auto;
    display: block;
}

.press-asset figcaption {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

/* Related Pages Grid */
.related-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.related-link {
    display: block;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}

.related-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.related-link h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.related-link p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-portrait--large {
        max-width: 320px;
        position: static;
    }

    .about-stats--full {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .subpage {
        padding: 100px 0 40px;
    }

    .about-stats--full {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    border-top: 1px solid var(--border);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    padding: 18px 22px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--accent);
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item p {
    padding: 0 22px 20px 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}
