:root {
    --black: #0a0a0a;
    --surface: #111111;
    --card: #161616;
    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.12);
    --white: #e8e8e8;
    --gray-1: rgba(255, 255, 255, 0.85);
    --gray-2: rgba(255, 255, 255, 0.50);
    --gray-3: rgba(255, 255, 255, 0.28);
    --gray-4: rgba(255, 255, 255, 0.12);
    --accent: #c8ff00;
    --accent-dim: rgba(200, 255, 0, 0.08);
    --sans: 'DM Sans', -apple-system, sans-serif;
    --heading: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
.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; }

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gray-4) var(--black); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-4); }

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    line-height: 1.6;
}

::selection { background: var(--accent); color: var(--black); }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 3.5rem); height: 60px;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
}
nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border-bottom-color: var(--line);
}
.nav-logo {
    font-family: var(--sans); font-weight: 200; font-size: 0.8rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gray-2);
    text-decoration: none; transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:visited { color: var(--gray-2); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--white); margin: 5px 0; }

/* MOBILE NAV */
.mobile-nav {
    position: fixed; inset: 0; z-index: 999; background: var(--black);
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 0 clamp(2rem, 6vw, 4rem);
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 8vw, 4rem); color: var(--gray-3);
    text-decoration: none; line-height: 1.4; transition: color 0.3s ease;
    font-weight: 200;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a:visited { color: var(--gray-3); }
.mobile-nav-close {
    position: absolute; top: 1.2rem; right: clamp(1.5rem, 4vw, 3.5rem);
    background: none; border: none; color: var(--gray-2);
    font-size: 1.5rem; cursor: pointer; font-weight: 200;
}

/* HERO */
#hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 0 clamp(1.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(3rem, 8vh, 6rem); position: relative; overflow: hidden;
}
.hero-video-wrap {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-video-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.2) 40%,
            rgba(10, 10, 10, 0.6) 70%,
            rgba(10, 10, 10, 1) 100%
        );
}
.hero-line { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line); }
.hero-line:nth-child(2) { left: 25%; }
.hero-line:nth-child(3) { left: 50%; }
.hero-line:nth-child(4) { left: 75%; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
    font-size: 0.68rem; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gray-3); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    animation: fadeIn 1s ease 0.2s both;
}
.hero-eyebrow::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.hero-name {
    font-family: var(--heading); font-weight: 200;
    font-size: clamp(4rem, 12vw, 10rem); line-height: 0.9;
    letter-spacing: -0.02em; color: var(--white); margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-name span { color: var(--accent); }
.hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid var(--line); padding-top: 1.5rem;
    animation: fadeIn 1s ease 0.7s both;
}
.hero-descriptor {
    font-size: 0.82rem; color: var(--gray-2); font-weight: 300;
    max-width: 360px; line-height: 1.7; text-wrap: balance;
}
.hero-scroll {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-3); display: flex; align-items: center; gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    transition: opacity 0.6s ease;
}
.hero-scroll.hidden { opacity: 0; pointer-events: none; }
.hero-scroll-line { width: 40px; height: 1px; background: var(--gray-3); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* SECTIONS SHARED */
section { padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3.5rem); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-bottom: 1px solid var(--line); padding-bottom: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vh, 4rem); flex-wrap: wrap; gap: 1rem;
}
.section-number {
    font-size: 0.62rem; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gray-3);
}
.section-heading {
    font-family: var(--heading); font-weight: 200;
    font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.1;
}
.section-heading .accent { color: var(--accent); }

/* ABOUT */
#about { background: var(--black); }
.about-layout { display: grid; grid-template-columns: 0.45fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.about-photo {
    aspect-ratio: 3/4; background: var(--surface); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    position: relative;
}
.about-photo-img { width: 100%; height: 100%; object-fit: cover; }
.photo-credit {
    position: absolute; bottom: 0.75rem; left: 0.75rem;
    font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35); font-weight: 400;
}
.about-lead {
    font-family: var(--heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem); line-height: 1.5;
    color: var(--gray-1); margin-bottom: 2rem; font-weight: 200;
    text-wrap: balance;
}
.about-text {
    column-count: 2; column-gap: 2.5rem;
    font-size: 0.88rem; line-height: 1.85; color: var(--gray-2); font-weight: 300;
}
.about-text p { margin-bottom: 1rem; }
.about-meta {
    display: flex; gap: 3rem; margin-top: 2.5rem;
    padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.meta-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 0.3rem; }
.meta-value { font-size: 0.9rem; color: var(--white); font-weight: 400; }

/* MUSIC */
#music { background: var(--surface); padding-bottom: clamp(2rem, 5vh, 4rem); }
.music-intro-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 3rem; gap: 2rem;
}
.music-intro {
    font-size: 0.88rem; color: var(--gray-2); font-weight: 300;
    line-height: 1.8; max-width: 520px;
    text-wrap: balance;
}
.spotify-follow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; white-space: nowrap;
    color: var(--accent); border: 1px solid rgba(200, 255, 0, 0.3);
    padding: 0.5rem 1rem; border-radius: 2rem;
    transition: all 0.3s ease;
}
.spotify-follow svg { width: 16px; height: 16px; fill: var(--accent); }
.spotify-follow:visited { color: var(--accent); }
.spotify-follow:hover { background: var(--accent); color: var(--black); }
.spotify-follow:hover svg { fill: var(--black); }
.sp-player { overflow: hidden; }
.sp-player iframe { display: block; width: 100%; border: none; }
.label-section {
    margin-top: 1.5rem; padding-top: 1.25rem;
    text-align: center;
}
.label-heading {
    display: inline-block;
    font-size: 0.58rem; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gray-3);
    margin-bottom: 1.25rem;
}
.label-logos {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 1.25rem 2rem; max-width: 680px; margin: 0 auto;
}
.label-logos img {
    height: 28px; width: auto; opacity: 0.25;
    filter: grayscale(100%) brightness(2);
}
.platforms {
    display: flex; gap: 0; margin-top: 1.5rem;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.platform-link {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    padding: 1rem 0; text-decoration: none; color: var(--accent);
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; border-right: 1px solid var(--line); transition: all 0.3s ease;
}
.platform-link:last-child { border-right: none; }
.platform-link:visited { color: var(--accent); }
.platform-link:hover { color: var(--black); background: var(--accent); }
.platform-link:hover svg { fill: var(--black); }
.platform-link svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--accent); transition: fill 0.3s ease; }

/* CONTACT */
#contact { background: var(--black); }

/* PRESS */
#press { background: var(--surface); }
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
}
.press-quote {
    background: var(--surface);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}
.press-quote p {
    font-family: var(--heading);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 200;
    line-height: 1.6;
    color: var(--gray-1);
    margin-bottom: 1.25rem;
}
.press-quote cite {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}
.press-quote cite span {
    color: var(--gray-3);
    text-transform: none;
    letter-spacing: 0.02em;
}
.press-quote cite a {
    color: var(--accent);
    text-decoration: none;
}
.press-quote cite a:visited { color: var(--accent); }
.press-quote cite a:hover {
    text-decoration: underline;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-left p {
    font-size: 0.88rem; color: var(--gray-2); font-weight: 300;
    line-height: 1.8; margin-bottom: 2.5rem; text-wrap: balance;
}
.contact-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.contact-row-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-3); }
.contact-row-value { font-size: 0.85rem; color: var(--gray-1); font-weight: 400; }
.contact-row-value a { color: var(--accent); text-decoration: none; }
.contact-row-value a:visited { color: var(--accent); }
.contact-row-value a:hover { color: var(--white); }
.contact-socials { display: inline-flex; gap: 0.1rem; align-items: center; }
.contact-social-icon {
    width: 30px; height: 30px; display: inline-flex; align-items: center;
    justify-content: center; color: var(--gray-1); text-decoration: none;
    transition: color 0.3s ease;
}
.contact-social-icon:visited { color: var(--gray-1); }
.contact-social-icon:hover { color: var(--accent); }
.contact-social-icon svg { width: 14px; height: 14px; }
.contact-form {
    padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--surface); border: 1px solid var(--line);
}
.form-title {
    font-family: var(--heading); font-size: 1.15rem;
    margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-weight: 200;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block; font-size: 0.6rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-3); margin-bottom: 0.45rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 0; border: none;
    border-bottom: 1px solid var(--line); background: transparent;
    color: var(--white); font-family: var(--sans); font-size: 0.88rem;
    font-weight: 300; outline: none; transition: border-color 0.3s ease;
    border-radius: 0; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-4); }
.form-group textarea {
    resize: vertical; min-height: 100px;
    border: 1px solid var(--line); padding: 0.75rem; margin-top: 0.25rem;
}
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 0; background: none; border: none; color: var(--accent);
    font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: opacity 0.3s ease; margin-top: 0.5rem;
}
.form-submit::after { content: '\2192'; font-size: 1.1rem; transition: transform 0.3s ease; }
.form-submit:hover::after { transform: translateX(4px); }
.form-submit:disabled { opacity: 0.3; cursor: not-allowed; }
.form-submit:disabled:hover::after { transform: none; }
.form-status { font-size: 0.78rem; margin-top: 1rem; display: none; }
.form-status.success { color: var(--accent); display: block; }
.form-status.error { color: #ff5c5c; display: block; }
.recaptcha-notice {
    font-size: 0.6rem; color: var(--gray-3); margin-top: 1rem; line-height: 1.6;
}
.recaptcha-notice a { color: var(--gray-3); text-decoration: underline; }
.recaptcha-notice a:visited { color: var(--gray-3); }
.grecaptcha-badge { visibility: hidden !important; }

/* FOOTER */
footer { padding: 2rem clamp(1.5rem, 4vw, 3.5rem); border-top: 1px solid var(--line); background: var(--black); }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
}
.footer-copy { font-size: 0.65rem; color: var(--gray-3); letter-spacing: 0.1em; }
.footer-socials { display: flex; gap: 0.25rem; }
.social-icon {
    width: 36px; height: 36px; display: flex; align-items: center;
    justify-content: center; color: var(--gray-3); text-decoration: none;
    transition: color 0.3s ease;
}
.social-icon:visited { color: var(--gray-3); }
.social-icon:hover { color: var(--accent); }
.social-icon svg { width: 16px; height: 16px; }
.footer-back { text-align: right; }
.footer-back a {
    font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-3); text-decoration: none; transition: color 0.3s ease;
}
.footer-back a:visited { color: var(--gray-3); }
.footer-back a:hover { color: var(--accent); }

/* REVEALS — one consistent subtle upward shift */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE — TABLET (900px) ========== */
/* Nav, footer, press, contact, platforms adapt. About stays two-column. */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    /* About — preserve two-column, just tighten */
    .about-layout { gap: clamp(1.5rem, 4vw, 3rem); }
    .about-text { column-count: 1; }

    /* Music */
    .music-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    /* Platforms — 4x2 grid (8 items) */
    .platforms { flex-wrap: wrap; }
    .platform-link {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid var(--line);
        padding: 0.9rem 0;
    }
    .platform-link:nth-child(even) { border-right: none; }
    .platform-link:nth-last-child(-n+2) { border-bottom: none; }

    /* Labels */
    .label-logos { gap: 1rem 1.5rem; }
    .label-logos img { height: 22px; }

    /* Press — single column */
    .press-grid { grid-template-columns: 1fr; }

    /* Contact — single column */
    .contact-layout { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    .footer-socials { justify-content: center; }
    .footer-back { text-align: center; }
}

/* ========== RESPONSIVE — PORTRAIT PHONE (600px) ========== */
/* About finally stacks here. Everything else tightens for one-hand use. */
@media (max-width: 600px) {

    /* Tap highlight cleanup */
    a, button { -webkit-tap-highlight-color: transparent; }

    /* Hero */
    #hero { padding-bottom: 2.5rem; }
    .hero-name {
        font-size: clamp(3.2rem, 16vw, 5rem);
        margin-bottom: 1.5rem;
    }
    .hero-eyebrow { font-size: 0.62rem; margin-bottom: 1rem; }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .hero-descriptor { font-size: 0.78rem; }
    .hero-scroll { display: none; }
    .hero-line { display: none; }

    /* Section shared */
    section { padding: clamp(3rem, 8vh, 5rem) 1.25rem; }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .section-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    /* About — now stacks, photo stays proportional to desktop feel */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-photo {
        max-width: 55%;
        aspect-ratio: 3/4;
        margin: 0;
    }
    .about-lead {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
        margin-bottom: 1.5rem;
    }
    .about-text { font-size: 0.84rem; line-height: 1.8; }
    .about-meta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Music */
    .music-intro { font-size: 0.84rem; }
    .spotify-follow { font-size: 0.72rem; padding: 0.5rem 1.1rem; }

    /* Labels */
    .label-section { margin-top: 1.25rem; padding-top: 1rem; }
    .label-logos {
        gap: 0.75rem 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    .label-logos img { height: 18px; }

    /* Press */
    .press-quote { padding: 1.5rem 1.25rem; min-height: unset; }
    .press-quote p { font-size: 0.95rem; margin-bottom: 1rem; }
    .press-quote cite { font-size: 0.62rem; }

    /* Contact */
    .contact-layout { gap: 2.5rem; }
    .contact-left p { font-size: 0.84rem; margin-bottom: 2rem; }
    .contact-row { padding: 0.85rem 0; }
    .contact-row-label { font-size: 0.58rem; }
    .contact-row-value { font-size: 0.82rem; text-align: right; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem 1.25rem; }
    .form-title { font-size: 1.05rem; margin-bottom: 1.5rem; }
    .form-group input,
    .form-group textarea,
    .form-group select { font-size: 1rem; }
    .form-submit {
        width: 100%;
        justify-content: center;
        padding: 1rem 0;
        margin-top: 0.75rem;
    }
    .recaptcha-notice { text-align: center; }

    /* Footer */
    footer { padding: 2rem 1.25rem; }
    .footer-inner { gap: 0.75rem; }
    .footer-socials { gap: 0; }
    .social-icon { width: 44px; height: 44px; }
    .footer-copy { font-size: 0.6rem; }
    .footer-back a { display: inline-block; padding: 0.5rem 0; }

    /* Mobile nav */
    .mobile-nav { padding: 0 1.5rem; }
    .mobile-nav a {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.5;
    }
}

/* ========== LANDSCAPE PHONE ========== */
/* When rotated, restore desktop-like two-column about layout */
@media (max-width: 900px) and (orientation: landscape) {
    .about-layout {
        grid-template-columns: 0.4fr 1fr;
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    .about-photo {
        max-width: none;
        margin: 0;
    }
    .hero-scroll { display: none; }
    .hero-line { display: none; }
}