/* ============================================
   DONNA HEKE — PROFESSIONAL ARTIST WEBSITE
   Inspired by premium music artist branding
   ============================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --black: #0a0a0a;
    --black-rich: #111111;
    --black-warm: #1a1816;
    --dark: #1c1c1c;
    --dark-2: #262626;
    --dark-3: #333333;
    --gray: #6b6b6b;
    --gray-light: #999999;
    --gray-lighter: #bbbbbb;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --white-warm: #e8e4e0;
    --gold: #c9a84c;
    --gold-dark: #a88932;
    --gold-light: #d4b867;
    --gold-pale: #e8d9a0;
    --burgundy: #8b2252;
    --burgundy-dark: #5c1033;
    --teal: #0d7377;
    --teal-dark: #095255;
    --sunset: #e8753a;
    --sunset-dark: #c45a24;
    --deep-blue: #1a3a5c;
    --warm-cream: #f0e6d8;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-display-alt: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);

    --container-width: 1200px;
    --header-height: 80px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-soft);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Subtle warm gradient overlay on body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 15% 10%, rgba(232,117,58,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 90%, rgba(13,115,119,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1.5px solid;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--full {
    width: 100%;
    text-align: center;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-header__divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ============ HEADER / NAVIGATION ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition);
}

.header--scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: var(--header-height);
    max-width: 1400px;
    margin: 0 auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-img {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    object-fit: cover;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-lighter);
    transition: color var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--cta {
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 0.5rem 1.5rem !important;
    transition: all var(--transition);
}

.nav__link--cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav__link--cta::after {
    display: none;
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

.nav__toggle--open .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--open .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle--open .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.65) 35%,
        rgba(10,10,10,0.3) 60%,
        rgba(10,10,10,0.35) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.hero__text {
    max-width: 520px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero__title .hero__title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-lighter);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero__scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============ BIO SECTION ============ */
.bio {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--black-rich) 0%, var(--deep-blue) 50%, var(--black-rich) 100%);
    position: relative;
}

.bio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bio__content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.bio__text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--gray-lighter);
    margin-bottom: 1.5rem;
}

.bio__text:last-child {
    margin-bottom: 0;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--black) 0%, #1a1210 40%, var(--black) 70%, #10181a 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(232,117,58,0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(201,168,76,0.2);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--white-soft);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.testimonial-card__quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: -3px;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-card__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.15rem;
}

.testimonial-card__location {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* ============ GALLERY SECTION ============ */
.gallery {
    padding: 7rem 0;
    background: var(--black);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.gallery__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%) saturate(35%);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: scale(1.02);
}

.gallery__item:hover .gallery__image {
    filter: grayscale(0%) saturate(100%);
    transform: scale(1.06);
}

/* ============ MUSIC SECTION ============ */
.music {
    padding: 7rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 25% 15%, rgba(201,168,76,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 85%, rgba(139,34,82,0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(180,140,60,0.03) 0%, transparent 40%);
    pointer-events: none;
    animation: musicBgPulse 8s ease-in-out infinite;
}

@keyframes musicBgPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Frequency Visualizer */
.frequency-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 0 2rem;
    opacity: 0.08;
}

.frequency-bar {
    width: 4px;
    background: linear-gradient(to top, var(--gold), var(--burgundy), var(--gold));
    border-radius: 2px 2px 0 0;
    animation: freqDance 1.2s ease-in-out infinite alternate;
}

@keyframes freqDance {
    0% { height: 8px; opacity: 0.4; }
    100% { height: var(--bar-height, 80px); opacity: 0.9; }
}

/* Featured Album */
.music__featured {
    position: relative;
    margin-bottom: 5rem;
    z-index: 1;
}

.music__featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
    50% { box-shadow: 0 6px 35px rgba(201,168,76,0.7); }
}

.music__album--featured {
    border: 1px solid rgba(201,168,76,0.2) !important;
    background: rgba(201,168,76,0.04) !important;
    box-shadow: 0 0 60px rgba(201,168,76,0.05);
}

.music__album-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 50%);
    animation: albumGlowRotate 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes albumGlowRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.music__label--featured {
    background: rgba(201,168,76,0.15) !important;
    border-color: rgba(201,168,76,0.4) !important;
}

.music__cd-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.music__cd-feature {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50px;
    transition: all var(--transition);
}

.music__cd-feature:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
}

.btn--lg {
    padding: 1.1rem 3rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
}

/* Small Section Header */
.section-header--sm {
    margin-bottom: 2.5rem;
}

.section-header__title-sm {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Singles Grid */
.singles {
    position: relative;
    z-index: 1;
}

.singles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.single-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.single-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.single-card__artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dark);
}

.single-card__artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.single-card:hover .single-card__artwork img {
    transform: scale(1.08);
}

.single-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.single-card:hover .single-card__overlay {
    opacity: 1;
}

.single-card__play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: transform var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.single-card__play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.single-card__play-btn:hover {
    transform: scale(1.1);
    background: var(--white);
}

.single-card__info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.single-card__genre {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.single-card__links {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.single-card__link {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--gray-lighter);
    transition: all var(--transition);
}

.single-card__link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.single-card__link--spotify {
    border-color: rgba(30,215,96,0.3);
    color: #1ed760;
}

.single-card__link--spotify:hover {
    border-color: #1ed760;
    background: rgba(30,215,96,0.1);
    color: #1ed760;
}

/* Album Section */
.music__album {
    display: flex;
    align-items: center;
    gap: 5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.music__album::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.music__album-image {
    flex-shrink: 0;
    width: 280px;
    position: relative;
    z-index: 1;
}

.music__cover {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
    transition: transform var(--transition);
}

.music__cover:hover {
    transform: scale(1.03);
}

.music__album-details {
    flex: 1;
    position: relative;
    z-index: 1;
}

.music__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
}

.music__album-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.music__album-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.music__platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.music__platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-soft);
    transition: all var(--transition);
}

.music__platform svg {
    width: 18px;
    height: 18px;
}

.music__platform:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 7rem 0;
    background: var(--black);
}

.contact__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.contact__input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition);
    outline: none;
}

.contact__input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.contact__input::placeholder {
    color: var(--gray);
}

.contact__input--textarea {
    resize: vertical;
    min-height: 130px;
}

.contact__input select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.8rem;
}

.contact__input select,
.contact__input--select {
    background: var(--dark-2) !important;
    color: var(--white) !important;
}

.contact__input select option,
.contact__input--select option {
    background: var(--dark-2);
    color: var(--white);
}

/* Custom Checkbox */
.contact__field--checkbox {
    margin-top: -0.25rem;
}

.contact__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
}

.contact__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.contact__checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
}

.contact__checkbox:checked + .contact__checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.contact__checkbox:checked + .contact__checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -1px;
}

.contact__checkbox-label:hover .contact__checkbox-custom {
    border-color: var(--gold);
}

.contact__checkbox:focus-visible + .contact__checkbox-custom {
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.contact__checkbox-text {
    font-size: 0.8rem;
    color: var(--gray-lighter);
    transition: color var(--transition);
}

.contact__checkbox:checked ~ .contact__checkbox-text {
    color: var(--white);
}

.contact__checkbox-label:hover .contact__checkbox-text {
    color: var(--white);
}

/* ============ FOOTER ============ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--black-rich);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__tagline {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.footer__social {
    display: flex;
    gap: 1.25rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray-light);
    transition: all var(--transition);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__link {
    font-size: 0.75rem;
    color: var(--gray);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer__credit {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer__credit-link {
    color: var(--gold);
    font-weight: 700;
    transition: color var(--transition);
}

.footer__credit-link:hover {
    color: var(--gold-light);
}

/* ============ FADE-IN REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .music__album {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .music__album-image {
        width: 220px;
    }

    .music__platforms {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1.5rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right var(--transition);
        border-left: 1px solid rgba(255,255,255,0.06);
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .nav__link {
        font-size: 0.85rem;
    }

    .hero__content {
        padding: 0 1.5rem;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__image {
        height: 300px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .footer__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
    }

    .bio__text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .bio,
    .testimonials,
    .gallery,
    .music,
    .contact {
        padding: 5rem 0;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
    }

    .music__album {
        padding: 1.5rem;
    }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--gold);
    color: var(--black);
}