/* ==========================================================================
   NED (RO) — DESIGN SYSTEM
   Based on wireframe skeleton. Art direction: deep amber-on-black, editorial.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Archivo+Narrow:wght@400;500;600&family=Archivo:wght@300;400&display=swap');

:root {
    --bg:          #080705;
    --surface:     #0e0c0a;
    --surface-2:   #141210;
    --text:        #e6ddd0;
    --muted:       #5e574e;
    --muted-light: #9a9088;
    --accent:      #c4a272;
    --accent-dim:  #6b5437;
    --accent-glow: rgba(196,162,114,0.08);
    --border:      rgba(196,162,114,0.1);
    --border-hard: rgba(196,162,114,0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-narrow:  'Archivo Narrow', sans-serif;
    --font-body:    'Archivo', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-narrow);
    font-weight: 400;
    padding: 0 40px;
    letter-spacing: 0.02em;
    overflow-x: hidden;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* ==========================================================================
   LAYOUT UTILS
   ========================================================================== */

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

.view-all {
    color: var(--muted-light);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-narrow);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all:hover { color: var(--accent); }
.view-all::after { content: ' ›'; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(8,7,5,0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 28px;
    height: 28px;
    border: 1px solid var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(196,162,114,0.2);
}

.logo-n {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-narrow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text);
    text-transform: uppercase;
}

.logo-text em {
    color: var(--accent);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
}

.nav-links a {
    color: var(--muted-light);
    text-decoration: none;
    margin: 0 14px;
    font-size: 10px;
    letter-spacing: 2px;
    transition: color 0.3s;
    font-family: var(--font-narrow);
}

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

.nav-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-hard);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-light);
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
}

.social-icon:hover {
    color: var(--accent);
    border-color: var(--accent-dim);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    min-height: 580px;
    padding: 70px 0 60px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    position: relative;
}

/* subtle radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at 80% 40%, rgba(196,162,114,0.055) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    padding-right: 60px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.88;
    margin-bottom: 24px;
    color: var(--text);
}

.title-ro {
    display: block;
    color: var(--accent);
    font-style: italic;
    font-size: 0.9em;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--muted-light);
    line-height: 2;
    max-width: 400px;
    margin-bottom: 32px;
    font-family: var(--font-narrow);
    text-transform: uppercase;
}

.hero-cta-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 48px;
    font-family: var(--font-narrow);
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.hero-cta-link:hover { opacity: 0.7; }

.hero-buttons {
    display: flex;
    gap: 1px;
}

.btn {
    background: transparent;
    border: 1px solid var(--border-hard);
    color: var(--muted-light);
    padding: 13px 28px;
    font-size: 10px;
    letter-spacing: 2px;
    cursor: pointer;
    min-width: 130px;
    font-family: var(--font-narrow);
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* Latest Release Widget */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.latest-release-widget {
    width: 100%;
    max-width: 300px;
}

.widget-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--muted);
    display: block;
    margin-bottom: 12px;
    text-align: right;
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

.release-card {
    border: 1px solid var(--border-hard);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--surface);
}

.art-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
}

/* diagonal line texture */
.art-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 28px,
            rgba(196,162,114,0.04) 28px,
            rgba(196,162,114,0.04) 29px
        );
}

.art-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.art-label {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.art-year {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--accent);
}

.release-details h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.release-details p {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

.btn-sm {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-hard);
    color: var(--muted-light);
    padding: 9px;
    font-size: 9px;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: var(--font-narrow);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.btn-sm:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.content-section {
    padding: 48px 0;
}

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

.section-number {
    font-size: 10px;
    color: var(--accent-dim);
    font-family: var(--font-narrow);
    letter-spacing: 1px;
    align-self: flex-start;
    padding-top: 3px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-right: auto;
    color: var(--text);
}

/* Section 01: Music Grid */
.music-grid-container {
    display: grid;
    grid-template-columns: 3.5fr 1fr;
    gap: 32px;
}

.media-four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.grid-item:hover .item-thumb { border-color: var(--accent-dim); }
.grid-item:hover h4 { color: var(--accent); }

.item-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

/* default thumb: diagonal lines */
.item-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 20px,
        rgba(196,162,114,0.035) 20px, rgba(196,162,114,0.035) 21px
    );
}

/* variant backgrounds */
.thumb-alt { background: #0f0d0b; }
.thumb-b   { background: #0c0e0d; }
.thumb-c   { background: #0d0b0f; }

.thumb-alt::before { background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(196,162,114,0.04) 20px, rgba(196,162,114,0.04) 21px
); }

.thumb-b::before { background: repeating-linear-gradient(
    90deg, transparent, transparent 18px,
    rgba(196,162,114,0.03) 18px, rgba(196,162,114,0.03) 19px
); }

.thumb-c::before { background: radial-gradient(ellipse at 50% 50%, rgba(196,162,114,0.07) 0%, transparent 65%); }

.thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
}

.thumb-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}

.thumb-tag {
    font-family: var(--font-narrow);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--accent);
}

.grid-item h4 {
    font-family: var(--font-narrow);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.item-meta {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    font-family: var(--font-narrow);
}

.side-panel {
    border-left: 1px solid var(--border);
    padding-left: 24px;
}

.panel-title {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

.link-list {
    list-style: none;
}

.link-list li {
    border-bottom: 1px solid var(--border);
}

.link-list li a {
    padding: 14px 0;
    font-size: 11px;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--muted-light);
    text-transform: uppercase;
    transition: color 0.3s;
}

.link-list li a:hover { color: var(--accent); }

.link-list li a span {
    color: var(--accent-dim);
    font-size: 14px;
    transition: transform 0.3s;
}

.link-list li a:hover span { transform: translateX(3px); }

/* Section 02: Live */
.live-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.dates-panel {}

.dates-note {
    margin-top: 16px;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    line-height: 1.8;
}

.date-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    gap: 20px;
}

.date-meta {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.date-meta strong {
    font-size: 12px;
    letter-spacing: 2px;
    font-family: var(--font-narrow);
    color: var(--accent);
}

.date-meta span {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 3px;
}

.event-name {
    font-size: 11px;
    letter-spacing: 1px;
    flex-grow: 1;
    color: var(--muted-light);
}

.btn-ticket {
    background: transparent;
    border: 1px solid var(--border-hard);
    color: var(--muted-light);
    padding: 7px 14px;
    font-size: 9px;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: var(--font-narrow);
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-ticket:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.live-gallery {}

.gallery-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

.gallery-main-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-main-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 30px,
        rgba(196,162,114,0.025) 30px, rgba(196,162,114,0.025) 31px
    );
}

.gallery-main-video:hover .video-overlay { opacity: 1; }

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.play-icon {
    font-size: 24px;
    color: var(--accent);
    line-height: 1;
}

.video-label {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--muted-light);
    font-family: var(--font-narrow);
}

.gallery-side-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-thumb {
    flex: 1;
    border: 1px solid var(--border);
    background: var(--surface-2);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    min-height: 60px;
    transition: border-color 0.3s;
}

.side-thumb:hover { border-color: var(--accent-dim); }

.thumb-overlay {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--muted);
    font-family: var(--font-narrow);
}

/* Section 03: Visuals */
.media-six-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.video-thumb-item {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}

.video-thumb-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 12px,
        rgba(196,162,114,0.03) 12px, rgba(196,162,114,0.03) 13px
    );
}

.vt-bright { background: #0f0d0a; }
.vt-bright::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(196,162,114,0.06) 0%, transparent 70%);
}

.video-thumb-item:hover { border-color: var(--accent-dim); }

.vthumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 7px;
}

.vthumb-inner span {
    font-size: 7px;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-family: var(--font-narrow);
    text-transform: uppercase;
    line-height: 1.4;
}

.slider-track-indicator {
    width: 100%;
    height: 1px;
    background: var(--border);
    position: relative;
    margin-top: 8px;
}

.slider-bar {
    width: 16.6%;
    height: 1px;
    background: var(--accent);
    position: absolute;
    left: 0;
}

/* ==========================================================================
   SPLIT FOOTER SECTION
   ========================================================================== */

.split-footer-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 56px 0;
}

.split-column {
    display: flex;
    flex-direction: column;
}

.split-column .section-number {
    margin-bottom: 8px;
    display: block;
}

.split-column h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}

.about-text, .contact-text {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(230,221,208,0.65);
    margin: 20px 0;
    font-family: var(--font-body);
    font-weight: 300;
    max-width: 480px;
}

.about-text em {
    color: var(--accent);
    font-style: italic;
}

.about-portrait-wrapper {
    margin-top: 36px;
    display: flex;
    justify-content: flex-start;
}

.portrait-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid var(--border-hard);
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.portrait-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(196,162,114,0.07) 0%, transparent 70%);
}

.portrait-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: 0.05em;
}

.portrait-text em {
    display: block;
    font-style: italic;
    color: var(--accent);
    font-size: 0.85em;
}

.btn-large {
    background: transparent;
    border: 1px solid var(--border-hard);
    color: var(--muted-light);
    padding: 16px;
    font-size: 10px;
    letter-spacing: 2.5px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 16px;
    cursor: pointer;
    font-family: var(--font-narrow);
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
}

.btn-large:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.email-display {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    font-family: var(--font-narrow);
}

.contact-banner-placeholder {
    border: 1px solid var(--border);
    padding: 24px;
    margin-top: auto;
    background: var(--surface);
    max-width: 360px;
}

.contact-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-tag {
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--accent);
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

.banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-tags span {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--muted-light);
    border: 1px solid var(--border);
    padding: 6px 12px;
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.footer-brand h2 em {
    font-style: italic;
    color: var(--accent);
}

.footer-brand p {
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--muted);
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    margin-right: 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.footer-copyright {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
    font-family: var(--font-narrow);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
    body { padding: 0 20px; }
    .navbar { margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
    .hero, .music-grid-container, .live-grid-container, .split-footer-section {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; padding: 48px 0; }
    .hero-left { padding-right: 0; margin-bottom: 48px; }
    .hero-right { justify-content: flex-start; }
    .latest-release-widget { max-width: 100%; }
    .media-four-grid { grid-template-columns: repeat(2, 1fr); }
    .media-six-grid { grid-template-columns: repeat(3, 1fr); }
    .side-panel { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 24px; }
    .live-gallery { margin-top: 0; }
    .split-footer-section { gap: 40px; }
    .nav-links { display: none; }
    .footer { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }
}

@media (max-width: 600px) {
    .media-six-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 64px; }
    .hero-buttons { flex-direction: column; }
    .btn { min-width: unset; width: 100%; }
}

/* ==========================================================================
   DJ SETS SECTION — YouTube RSS Feed
   ========================================================================== */

.djsets-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 32px;
    align-items: start;
}

.djsets-featured {}

.featured-video-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.featured-video-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.featured-skeleton {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    position: relative;
}

.featured-skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 28px,
        rgba(196,162,114,0.03) 28px, rgba(196,162,114,0.03) 29px
    );
}

.skeleton-label {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--muted);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 12px;
    gap: 16px;
}

.fmeta-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.3;
    flex: 1;
}

.fmeta-date {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Sidebar list */
.djsets-sidebar {}

.sets-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.set-row {
    display: grid;
    grid-template-columns: 72px 1fr 16px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.set-row:hover .set-title { color: var(--accent); }
.set-row:hover .set-arrow { color: var(--accent); transform: translateX(2px); }

.set-thumb {
    width: 72px;
    aspect-ratio: 16/9;
    background: var(--surface-2) center/cover no-repeat;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.set-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
}

.set-title {
    font-family: var(--font-narrow);
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--text);
    line-height: 1.4;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.set-date {
    font-family: var(--font-narrow);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.set-arrow {
    font-size: 16px;
    color: var(--muted);
    transition: color 0.3s, transform 0.3s;
    text-align: right;
}

.skeleton-row {
    height: 58px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.8; }
}

@media (max-width: 960px) {
    .djsets-layout { grid-template-columns: 1fr; }
}

/* Thumbnail-first featured player */
.feat-thumb-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.feat-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.feat-thumb-wrap:hover img { opacity: 0.75; }

.feat-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    color: var(--accent);
    transition: background 0.3s;
}

.feat-play-btn:hover { background: rgba(0,0,0,0.5); }

.feat-play-btn svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

/* ==========================================================================
   MUSIC SECTION — Dynamic Two-Category Layout
   ========================================================================== */

.music-category {}

.music-cat-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.cat-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.05em;
}

.cat-source {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cat-source svg { color: var(--accent-dim); flex-shrink: 0; }

/* Release card grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

/* Skeleton loading cards */
.release-card-sk {
    aspect-ratio: 1/1;
    background: var(--surface);
    border: 1px solid var(--border);
    animation: pulse 1.6s ease-in-out infinite;
}

/* Populated release card */
.release-card-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.release-card-item:hover { opacity: 0.8; }
.release-card-item:hover .rci-title { color: var(--accent); }

.rci-art {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--surface) center/cover no-repeat;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
}

/* Fallback diagonal texture when no artwork */
.rci-art:not([style*="url"]) {
    background: var(--surface);
}

.rci-art:not([style*="url"])::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg, transparent, transparent 16px,
        rgba(196,162,114,0.04) 16px, rgba(196,162,114,0.04) 17px
    );
}

.rci-type {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: var(--font-narrow);
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(8,7,5,0.75);
    padding: 3px 7px;
}

.rci-title {
    font-family: var(--font-narrow);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 4px;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rci-year {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-family: var(--font-narrow);
}

/* SoundCloud card extras */
.sc-card { cursor: default; }
.sc-card:hover { opacity: 1; }

.sc-actions {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.sc-btn {
    font-family: var(--font-narrow);
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 6px 10px;
    border: 1px solid var(--border-hard);
    text-decoration: none;
    color: var(--muted-light);
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.sc-btn:hover { color: var(--bg); background: var(--accent); border-color: var(--accent); }

.sc-btn-dl {
    border-color: var(--accent-dim);
    color: var(--accent);
}

.sc-btn-dl:hover { background: var(--accent); color: var(--bg); }

/* Setup note shown when credentials not yet added */
.music-setup-note {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px dashed var(--border-hard);
    font-family: var(--font-narrow);
    font-size: 12px;
    color: var(--muted-light);
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.music-setup-note code {
    color: var(--accent);
    font-family: monospace;
    font-size: 11px;
    background: rgba(196,162,114,0.08);
    padding: 1px 5px;
}

.music-setup-note a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 8px;
}

.music-setup-note a:hover { text-decoration: underline; }

/* Links bar at bottom of music section */
.music-links-bar {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.links-inline {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.links-inline a {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--border);
    margin-right: -1px;
    margin-bottom: -1px;
    transition: color 0.3s, background 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
}

.links-inline a:hover { color: var(--bg); background: var(--accent); border-color: var(--accent); z-index: 1; position: relative; }

@media (max-width: 960px) {
    .releases-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .music-links-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* SoundCloud embedded player inside card */
.sc-embed-wrap {
    width: 100%;
    height: 48px;
    margin: 8px 0 4px;
    overflow: hidden;
}

.sc-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ==========================================================================
   HERO — full-bleed background photo
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.05) saturate(0.9);
    z-index: 0;
}

/* Dark overlay so text stays readable over the photo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.65) 55%, rgba(8,7,5,0.3) 100%),
        linear-gradient(to top, rgba(8,7,5,0.5) 0%, transparent 50%);
    z-index: 1;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   ABOUT — portrait photo + stats
   ========================================================================== */

.portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.about-pull {
    font-style: italic;
    color: rgba(230,221,208,0.8) !important;
    border-left: 2px solid var(--accent-dim);
    padding-left: 1.25rem;
    margin-top: -0.5rem;
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.about-stat {
    flex: 1;
    padding: 1.25rem 1rem;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat:last-child { border-right: none; }

.astat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.astat-label {
    font-family: var(--font-narrow);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text);
    text-transform: uppercase;
}

.astat-sub {
    font-family: var(--font-narrow);
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}

/* ==========================================================================
   PHOTOS grid — real images
   ========================================================================== */

.photo-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--surface);
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: saturate(0.85);
}

.photo-item:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    font-family: var(--font-narrow);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(8,7,5,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.photo-item:hover .photo-caption { opacity: 1; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 0;
    max-width: 400px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border-hard);
    color: var(--text);
    padding: 13px 16px;
    font-family: var(--font-narrow);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--muted);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--accent-dim);
}

.form-row textarea {
    resize: none;
    line-height: 1.7;
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.form-row select {
    cursor: pointer;
    color: var(--muted);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5437' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-row select option {
    background: var(--surface);
    color: var(--text);
}

@media (max-width: 960px) {
    .about-stats { flex-direction: column; }
    .about-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .about-stat:last-child { border-bottom: none; }
    .contact-form { max-width: 100%; }
    .photo-caption { opacity: 1; }
}

/* Contact email hint */
.contact-email-hint {
    color: var(--accent);
    font-family: var(--font-narrow);
    font-size: 11px;
    letter-spacing: 1px;
}
