/* =====================================================
   DJ STAR A — Afro Deep House Portfolio
   OLED Black · Amber Gold · Raw Weight
   ===================================================== */

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

:root {
    /* ── Backgrounds */
    --black:        #000000;
    --deep:         #080808;
    --dark:         #0f0f0f;
    --card:         #141414;
    --card-hover:   #1c1c1c;
    --border:       #222222;

    /* ── Primary: warm amber-gold */
    --gold:         #C8862A;
    --gold-light:   #E8A040;
    --gold-pale:    #F5C870;
    --gold-glow:    rgba(200, 134, 42, 0.35);
    --gold-dim:     rgba(200, 134, 42, 0.10);

    /* ── Secondary: muted violet (focus / a11y only) */
    --purple:       #7C5CBF;
    --purple-light: #9B7FD4;

    /* ── Social platforms */
    --spotify:      #1DB954;
    --instagram:    #E1306C;
    --facebook:     #1877F2;
    --youtube:      #FF0000;

    /* ── Text */
    --white:        #F0EBE0;
    --gray:         #888888;
    --muted:        #444444;

    /* ── Type */
    --font-head:    'Oswald', sans-serif;
    --font-body:    'Poppins', sans-serif;

    /* ── Tokens */
    --radius:       4px;
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --t:            0.28s;
    --shadow:       0 28px 80px rgba(0, 0, 0, 0.95);
    --glow-gold:    0 0 50px rgba(200, 134, 42, 0.22), 0 0 100px rgba(200, 134, 42, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.6rem 1.2rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

section[id] { scroll-margin-top: 80px; }


/* =====================================================
   SECTION DIVIDER
   ===================================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 134, 42, 0.14) 25%,
        rgba(200, 134, 42, 0.14) 75%,
        transparent 100%
    );
}


/* =====================================================
   NAVIGATION — glass morphism
   ===================================================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.3rem 0;
    transition: background var(--t) var(--ease),
                padding var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                border-bottom-color var(--t) var(--ease);
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom-color: rgba(200, 134, 42, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.brand-star { color: var(--gold); filter: drop-shadow(0 0 6px var(--gold-glow)); }
.brand-text { color: var(--white); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    position: relative;
    transition: color var(--t) var(--ease);
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-book {
    font-family: var(--font-head);
    font-size: 0.73rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background var(--t) var(--ease), color var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
    cursor: pointer;
}

.btn-book:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 24px var(--gold-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* =====================================================
   HERO — cinematic nightclub stage
   ===================================================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo {
    position: absolute;
    right: 0; top: 0;
    width: 58%; height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.65) saturate(0.85);
}

/* Purple-to-black directional overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,1)    0%,
        rgba(0,0,0,0.97)  22%,
        rgba(5,5,15,0.9)  38%,
        rgba(5,5,15,0.65) 58%,
        rgba(0,0,0,0.2)   100%
    );
}

/* Warm amber stage light from upper right */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 85% 10%, rgba(200, 134, 42, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 35% 40% at 90% 85%, rgba(200, 134, 42, 0.06) 0%, transparent 55%);
}

/* Film grain texture */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 250px 250px;
    opacity: 0.04;
    mix-blend-mode: screen;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    z-index: 2;
}

#hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.eyebrow-text {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    white-space: nowrap;
}

.eyebrow-line {
    display: block;
    height: 1px;
    width: 36px;
    background: var(--gold);
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin-bottom: 1.4rem;
    text-wrap: balance;
}

.title-dj {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: rgba(240, 235, 224, 0.3);
    font-weight: 300;
    letter-spacing: 0.55em;
    margin-bottom: 0.05em;
}

.title-star {
    display: block;
    font-size: clamp(6rem, 19vw, 15rem);
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 0.85;
    text-shadow: 0 0 80px rgba(200, 134, 42, 0.18);
}

.title-a {
    display: block;
    font-size: clamp(6rem, 19vw, 15rem);
    letter-spacing: -0.02em;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--gold);
    text-shadow:
        0 0 60px rgba(200, 134, 42, 0.45),
        0 0 120px rgba(200, 134, 42, 0.15);
}

.hero-tagline {
    font-size: 0.78rem;
    font-family: var(--font-body);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, 0.5);
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
}

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

/* ── Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
                filter var(--t) var(--ease);
    cursor: pointer;
    touch-action: manipulation;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--gold-glow), 0 0 0 1px rgba(212,168,67,0.3);
    filter: brightness(1.08);
}

.btn-primary.large {
    padding: 1.1rem 2.6rem;
    font-size: 0.85rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2rem;
    border: 1.5px solid rgba(200, 134, 42, 0.35);
    color: rgba(240, 235, 224, 0.7);
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease),
                color var(--t) var(--ease), gap var(--t) var(--ease);
    cursor: pointer;
    touch-action: manipulation;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(200, 134, 42, 0.08);
    gap: 1rem;
}

/* Hero badge */
.hero-badge {
    position: absolute;
    bottom: 4rem; right: 4rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-head);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, 0.35);
    border: 1px solid rgba(200, 134, 42, 0.2);
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.6);
}

.badge-dot { color: var(--gold); opacity: 0.5; font-size: 0.45rem; }

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    font-family: var(--font-body);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
}

.scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.3; }
}


/* =====================================================
   SECTIONS — shared
   ===================================================== */
section { padding: 7rem 0; }

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.section-heading em {
    font-family: var(--font-head);
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    max-width: 480px;
    margin: 0 auto;
}


/* =====================================================
   ABOUT
   ===================================================== */
#about {
    background: var(--deep);
    padding: 0;
    position: relative;
}

/* Subtle warm atmospheric glow */
#about::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(200,134,42,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 6rem;
    align-items: center;
}

.lead-text {
    font-size: 1.12rem;
    color: rgba(245, 240, 232, 0.82);
    margin-bottom: 1.4rem;
    line-height: 1.85;
}

.about-text p {
    color: rgba(245, 240, 232, 0.54);
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.about-text p strong { color: var(--gold); }

.about-manifesto {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.manifesto-quote {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(240, 235, 224, 0.62);
    line-height: 1.55;
    letter-spacing: 0.01em;
    max-width: 56ch;
}

.manifesto-mark {
    display: block;
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.65;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 0.4rem;
    font-style: normal;
}

/* Photo frame — gold corner accents */
.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: var(--shadow), var(--glow-gold);
}

.photo-frame img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s var(--ease);
    display: block;
}

.photo-frame:hover img { transform: scale(1.04); }

.frame-corner {
    position: absolute;
    width: 28px; height: 28px;
    z-index: 2;
}

.frame-corner.tl { top: 12px; left: 12px;
    border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); opacity: 0.6; }
.frame-corner.tr { top: 12px; right: 12px;
    border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); opacity: 0.6; }
.frame-corner.bl { bottom: 12px; left: 12px;
    border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); opacity: 0.6; }
.frame-corner.br { bottom: 12px; right: 12px;
    border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); opacity: 0.6; }


/* =====================================================
   MUSIC
   ===================================================== */
#music {
    background: var(--black);
    position: relative;
}

#music::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(200,134,42,0.03) 0%, transparent 65%);
}

.ep-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: start;
}

/* Vinyl + cover art */
.ep-artwork { position: relative; }

.vinyl-record {
    position: absolute;
    top: 50%; right: -55px;
    transform: translateY(-50%);
    width: 88%; padding-bottom: 88%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        #1c1c30 28%, #05050F 29%,
        #1c1c30 38%, #05050F 39%,
        #222238 54%, #111120 55%,
        #1c1c30 70%, #000008 100%
    );
    box-shadow: 0 8px 50px rgba(0,0,0,0.95), 0 0 30px rgba(139,92,246,0.08);
    animation: spinVinyl 9s linear infinite;
    will-change: transform;
    z-index: 0;
}

.vinyl-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 27%; height: 27%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #7A4F15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.38rem;
    letter-spacing: 0.1em;
    color: #000;
    text-align: center;
    box-shadow: 0 0 16px rgba(200,134,42,0.4);
}

@keyframes spinVinyl {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.ep-cover-img {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow), var(--glow-gold);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.ep-cover-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow),
        0 0 70px rgba(200,134,42,0.3), 0 0 120px rgba(200,134,42,0.1);
}

.ep-cover-img img { width: 100%; display: block; }

/* EP text */
.ep-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.ep-badge {
    font-family: var(--font-head);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    background: var(--gold);
    color: #000;
    padding: 0.28rem 0.85rem;
    border-radius: 100px;
    font-weight: 600;
}

.ep-year {
    font-size: 0.8rem;
    color: var(--gray);
    font-family: var(--font-body);
}

.ep-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 0.45rem;
}

.ep-sub {
    font-family: var(--font-head);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(240, 235, 224, 0.4);
    margin-bottom: 1.4rem;
}

.ep-desc {
    color: rgba(245, 240, 232, 0.52);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}


/* Spotify embed iframe */
.spotify-embed-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.6rem;
    box-shadow:
        0 0 0 1px rgba(200, 134, 42, 0.12),
        0 8px 40px rgba(0, 0, 0, 0.8);
    transition: box-shadow var(--t) var(--ease);
}

.spotify-embed-wrap:hover {
    box-shadow:
        0 0 0 1px rgba(200, 134, 42, 0.28),
        0 12px 50px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(200, 134, 42, 0.08);
}

.spotify-embed-wrap iframe {
    display: block;
    border-radius: 12px;
}

/* Spotify button */
.btn-spotify {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.8rem;
    background: var(--spotify);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 100px;
    transition: background var(--t) var(--ease), transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
    border: none;
    cursor: pointer;
    touch-action: manipulation;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(29, 185, 84, 0.5), 0 0 0 1px rgba(29,185,84,0.2);
}

.btn-spotify .fa-spotify { font-size: 1.15rem; }
.ext-icon { font-size: 0.6rem; opacity: 0.6; }


/* =====================================================
   GALLERY
   ===================================================== */
#gallery {
    background: var(--deep);
    padding: 0;
    position: relative;
}

.gallery-container {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 320px;
    gap: 10px;
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.g-item.g-tall  { grid-row: span 2; }
.g-item.g-wide  { grid-column: span 2; }

.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.65s var(--ease), filter 0.4s var(--ease);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,12,0.88) 0%,
        rgba(30,0,60,0.3)  40%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity var(--t) var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
}

.g-overlay span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-pale);
    opacity: 0.8;
}

.g-item:hover {
    border-color: rgba(200, 134, 42, 0.3);
    box-shadow: 0 0 30px rgba(200,134,42,0.08);
}

.g-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.85) saturate(1.1);
}

.g-item:hover .g-overlay { opacity: 1; }


/* =====================================================
   CONNECT
   ===================================================== */
#connect {
    background: var(--black);
    position: relative;
}

#connect::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(200,134,42,0.03) 0%, transparent 65%);
}

.social-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Solid social cards — no glass */
.social-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.6rem 1.8rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
                background var(--t) var(--ease), box-shadow var(--t) var(--ease);
    cursor: pointer;
    touch-action: manipulation;
}

.social-card:hover { transform: translateY(-3px); }

.s-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.social-card:hover .s-icon-wrap { transform: scale(1.12); }

.s-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.s-platform {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.s-action {
    font-size: 0.73rem;
    color: var(--gray);
    font-family: var(--font-body);
}

.s-arrow {
    font-size: 0.85rem;
    opacity: 0.3;
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.social-card:hover .s-arrow { opacity: 1; transform: translateX(5px); }

/* Per-platform — icon color is the differentiator, no border-left stripes */
.s-spotify:hover  { background: rgba(29,185,84,0.07); border-color: rgba(29,185,84,0.25); }
.s-spotify  .s-icon-wrap { background: rgba(29,185,84,0.1); color: var(--spotify); }
.s-spotify  .s-platform  { color: var(--spotify); }

.s-instagram:hover { background: rgba(225,48,108,0.07); border-color: rgba(225,48,108,0.25); }
.s-instagram .s-icon-wrap { background: rgba(225,48,108,0.1); color: var(--instagram); }
.s-instagram .s-platform  { color: var(--instagram); }

.s-facebook:hover { background: rgba(24,119,242,0.07); border-color: rgba(24,119,242,0.25); }
.s-facebook .s-icon-wrap  { background: rgba(24,119,242,0.1); color: var(--facebook); }
.s-facebook .s-platform   { color: var(--facebook); }

.s-youtube:hover  { background: rgba(255,0,0,0.07); border-color: rgba(255,0,0,0.25); }
.s-youtube  .s-icon-wrap  { background: rgba(255,0,0,0.1); color: var(--youtube); }
.s-youtube  .s-platform   { color: var(--youtube); }

/* Booking banner — solid with gold top border */
.booking-section {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 160px;
    background: radial-gradient(ellipse, rgba(200,134,42,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.booking-section h3 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.booking-section p {
    font-size: 0.78rem;
    font-family: var(--font-body);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2.2rem;
}


/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: var(--deep);
    padding: 0;
}

footer .container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 0.9rem;
}

.footer-brand p {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--gray);
    line-height: 1.9;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: rgba(245, 240, 232, 0.48);
    margin-bottom: 0.75rem;
    transition: color var(--t) var(--ease);
    cursor: pointer;
}

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

.footer-col i {
    width: 14px;
    text-align: center;
    color: var(--gold);
    opacity: 0.6;
    font-size: 0.8rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-family: var(--font-body);
    color: rgba(240, 235, 224, 0.22);
}

.footer-credit {
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-family: var(--font-body);
    color: rgba(240, 235, 224, 0.14);
}

.footer-credit-link {
    color: var(--gold);
    opacity: 0.45;
    transition: opacity var(--t) var(--ease);
}

.footer-credit-link:hover { opacity: 1; }


/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.js-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-reveal].revealed { opacity: 1; transform: none; }

/* Hero entrance */
.js-enabled .reveal-left  { opacity: 0; transform: translateX(-40px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.js-enabled .reveal-up    { opacity: 0; transform: translateY(40px);
    transition: opacity 0.85s 0.18s var(--ease), transform 0.85s 0.18s var(--ease); }
.js-enabled .reveal-right { opacity: 0; transform: translateX(40px);
    transition: opacity 0.85s 0.3s var(--ease), transform 0.85s 0.3s var(--ease); }
.js-enabled .reveal-fade  { opacity: 0;
    transition: opacity 0.85s 0.48s var(--ease); }

.hero-loaded .reveal-left,
.hero-loaded .reveal-up,
.hero-loaded .reveal-right,
.hero-loaded .reveal-fade { opacity: 1; transform: none; }


/* =====================================================
   FOCUS VISIBLE
   ===================================================== */
.nav-link:focus-visible,
.nav-brand:focus-visible,
.btn-book:focus-visible,
.hamburger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 2px;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-spotify:focus-visible,
.social-card:focus-visible,
.g-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

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


/* =====================================================
   PREFERS REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
    .scroll-dot  { animation: none; }
    .vinyl-record { animation: none; }

    .js-enabled [data-reveal],
    .js-enabled .reveal-left, .js-enabled .reveal-up,
    .js-enabled .reveal-right, .js-enabled .reveal-fade {
        opacity: 1; transform: none; transition: none;
    }
}


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .ep-showcase { grid-template-columns: 360px 1fr; gap: 3.5rem; }
    .about-grid  { grid-template-columns: 1fr 340px; gap: 4rem; }
}

@media (max-width: 900px) {
    .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-width: 400px; }
    .ep-showcase { grid-template-columns: 1fr; gap: 3rem; }
    .ep-artwork  { max-width: 380px; }
    .vinyl-record { right: -40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }

    .nav-links, .nav-cta { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(0, 0, 0, 0.97);
        border-top: 1px solid var(--border);
        padding: 1.5rem 2rem 2rem;
    }

    .nav-links.open li { border-bottom: 1px solid var(--border); }
    .nav-links.open .nav-link { display: block; padding: 1rem 0; font-size: 1rem; }

    .hamburger { display: flex; }

    .hero-photo { width: 100%; filter: brightness(0.3) saturate(0.8); }
    .hero-overlay { background: rgba(0, 0, 5, 0.55); }
    .hero-badge { display: none; }

    .hero-content { text-align: center; max-width: 100%; }
    .hero-eyebrow  { justify-content: center; }
    .hero-actions  { justify-content: center; }

    .title-dj   { font-size: clamp(1.8rem, 8vw, 3rem); }
    .title-star { font-size: clamp(3.5rem, 16vw, 7rem); }
    .title-a    { font-size: clamp(3.5rem, 16vw, 7rem); }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }

    .g-item.g-tall  { grid-row: span 1; grid-column: span 2; }
    .g-item.g-wide  { grid-column: span 2; }

    .social-grid    { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand   { grid-column: span 1; }
}

@media (max-width: 480px) {
    .hero-actions  { flex-direction: column; align-items: center; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

    .gallery-grid  { grid-template-columns: 1fr; grid-template-rows: unset; }
    .g-item, .g-item.g-tall, .g-item.g-wide {
        grid-column: span 1; grid-row: span 1; height: 280px;
    }

    .ep-showcase  { grid-template-columns: 1fr; }
    .ep-artwork   { max-width: 300px; margin: 0 auto; }
}
