/* ============================================
   JAY BRO — SYDNEY DJ
   Cinematic Premium Theme v2
   Fonts: Syne (display) + Space Mono (accents)
   ============================================ */

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

:root {
    --black: #050505;
    --dark: #0c0c0c;
    --dark-2: #141414;
    --dark-3: #1e1e1e;
    --white: #f5f0eb;
    --white-dim: rgba(245, 240, 235, 0.5);
    --accent: #c9a84c;
    --accent-hover: #dbb95d;
    --accent-glow: rgba(201, 168, 76, 0.15);
    --accent-dim: rgba(201, 168, 76, 0.4);
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

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

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

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

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

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

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

/* ---- REVEAL ANIMATION ---- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- SECTION COMMON ---- */
.section {
    padding: clamp(5rem, 12vw, 10rem) 0;
    position: relative;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.section__label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section__header {
    margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn__arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.4s var(--ease);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--accent);
    color: var(--black);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-hover);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
}

.btn--primary:hover::before {
    transform: translateX(0);
}

.btn--primary span,
.btn--primary svg {
    position: relative;
    z-index: 1;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245, 240, 235, 0.2);
}

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

.btn--full {
    width: 100%;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem clamp(1.5rem, 4vw, 3rem);
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav__logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav__logo span {
    color: var(--accent);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

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

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.6rem 1.5rem !important;
    border: 1px solid var(--accent-dim) !important;
    color: var(--accent) !important;
    transition: all 0.4s var(--ease) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--accent) !important;
    color: var(--black) !important;
    box-shadow: 0 0 30px var(--accent-glow);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav__burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.nav__burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav__burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--black);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.4s; }

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.45) 0%,
            rgba(5, 5, 5, 0.65) 40%,
            rgba(5, 5, 5, 0.9) 75%,
            var(--black) 100%
        );
    z-index: 1;
}

/* Animated orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 2;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    opacity: 0.12;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: #8b5e34;
    bottom: -100px;
    left: -50px;
    opacity: 0.08;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    opacity: 0.06;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 60px) scale(1.1); }
    66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -80px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-30%, -60%) scale(1.2); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}

.hero__pre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero__pre-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent-dim);
}

.hero__title {
    font-size: clamp(5rem, 16vw, 14rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero__title-line {
    display: block;
    opacity: 0;
    animation: heroReveal 1.2s var(--ease) 0.5s forwards;
    position: relative;
}

.hero__title-line--accent {
    color: var(--accent);
    animation-delay: 0.7s;
    text-shadow: 0 0 80px var(--accent-glow);
}

.hero__sub {
    font-size: clamp(0.875rem, 1.5vw, 1.1rem);
    color: var(--white-dim);
    max-width: 480px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1s forwards;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.2s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.8s forwards;
}

.hero__scroll span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-dim);
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    position: relative;
    overflow: hidden;
    background: rgba(245, 240, 235, 0.1);
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(60px) skewY(3deg); }
    to { opacity: 1; transform: translateY(0) skewY(0); }
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    50.01% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 1.25rem 0;
    overflow: hidden;
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    background: var(--dark);
}

.marquee__track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee--reverse .marquee__track {
    animation-direction: reverse;
    animation-duration: 30s;
}

.marquee__track span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    flex-shrink: 0;
}

.marquee__dot {
    width: 4px !important;
    height: 4px !important;
    background: var(--accent) !important;
    border-radius: 50%;
    display: inline-block;
    align-self: center;
    letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--dark);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--dark) 100%);
    pointer-events: none;
}

.about__image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-dim);
    z-index: 2;
    pointer-events: none;
    transition: all 0.6s var(--ease);
}

.about__image:hover .about__image-frame::before {
    inset: -8px;
}

.about__image-frame img {
    transition: transform 1s var(--ease);
    object-position: center 0%;
    filter: brightness(0.55) saturate(0.85);
}

.about__image:hover .about__image-frame img {
    transform: scale(1.05);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--accent-glow);
    z-index: -1;
    transition: all 0.6s var(--ease);
}

.about__image:hover .about__image-accent {
    bottom: -12px;
    right: -12px;
}

.about__text p {
    color: var(--white-dim);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about__stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--dark-3);
}

.stat {
    position: relative;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: inline;
}

.stat__plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    vertical-align: top;
}

.stat__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: 0.5rem;
}

/* ============================================
   GIGS
   ============================================ */
.gigs {
    background: var(--black);
}

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

.gig {
    display: grid;
    grid-template-columns: 80px auto 1fr auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark-3);
    transition: all 0.5s var(--ease);
    position: relative;
}

.gig::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent-glow) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.gig:first-child {
    border-top: 1px solid var(--dark-3);
}

.gig:hover {
    padding-left: 1.5rem;
}

.gig:hover::before {
    opacity: 1;
}

.gig:hover .gig__arrow svg {
    transform: translateX(6px);
    color: var(--accent);
}

.gig:hover .gig__venue {
    color: var(--accent);
}

.gig__date {
    text-align: center;
}

.gig__day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.gig__month {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-top: 0.25rem;
}

.gig__divider {
    width: 1px;
    height: 40px;
    background: var(--dark-3);
}

.gig__venue {
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s;
}

.gig__detail {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-top: 0.25rem;
}

.gig__city {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--white-dim);
}

.gig__arrow svg {
    width: 20px;
    height: 20px;
    color: var(--white-dim);
    transition: all 0.4s var(--ease);
}

/* ============================================
   MIXES
   ============================================ */
.mixes {
    background: var(--dark);
}

.mixes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.mix {
    cursor: pointer;
}

.mix__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.mix__cover::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    z-index: 3;
    transition: border-color 0.4s;
    pointer-events: none;
}

.mix:hover .mix__cover::before {
    border-color: var(--accent);
}

.mix__cover img {
    transition: transform 0.8s var(--ease);
}

.mix:hover .mix__cover img {
    transform: scale(1.1);
}

.mix__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.mix:hover .mix__overlay {
    opacity: 1;
}

.mix__bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
}

.mix__bars span {
    display: block;
    width: 4px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    animation: barPulse 0.8s ease-in-out infinite;
}

.mix__bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.mix__bars span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.mix__bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.mix__bars span:nth-child(4) { height: 90%; animation-delay: 0.1s; }
.mix__bars span:nth-child(5) { height: 60%; animation-delay: 0.25s; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.mix__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s var(--ease);
    z-index: 2;
}

.mix:hover .mix__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mix__play:hover {
    box-shadow: 0 0 40px var(--accent-glow);
}

.mix__play svg {
    width: 22px;
    height: 22px;
    color: var(--black);
    margin-left: 3px;
}

.mix__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}

.mix:hover .mix__title {
    color: var(--accent);
}

.mix__meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--white-dim);
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact__info p {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact__socials {
    display: flex;
    gap: 0.75rem;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--dark-3);
    transition: all 0.4s var(--ease);
}

.social span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.social svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* FORM */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__group {
    position: relative;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: var(--dark);
    border: 1px solid var(--dark-3);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    transition: all 0.4s var(--ease);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form__group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23f5f0eb' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: rgba(245, 240, 235, 0.25);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--dark-3);
}

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

.footer__logo {
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
}

.footer__logo span {
    color: var(--accent);
}

.footer__center {
    display: flex;
    gap: 2rem;
}

.footer__center a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: color 0.3s;
}

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

.footer__copy {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--white-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .cursor-glow {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-frame {
        aspect-ratio: 16 / 10;
    }

    .about__image-accent {
        display: none;
    }

    .gig {
        grid-template-columns: 70px auto 1fr auto;
        gap: 1rem;
    }

    .gig__city {
        display: none;
    }

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

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__socials {
        flex-wrap: wrap;
    }

    .social span {
        display: none;
    }

    .social {
        padding: 0.75rem;
    }

    .footer__center {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__title {
        font-size: clamp(3.5rem, 22vw, 7rem);
    }

    .about__stats {
        gap: 2rem;
    }

    .stat__number {
        font-size: 2rem;
    }

    .gig {
        grid-template-columns: 60px 1fr auto;
    }

    .gig__divider {
        display: none;
    }

    .mixes__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .marquee__track span {
        font-size: 0.6rem;
    }
}
