/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --bg:          #0d0d0d;
    --bg-alt:      #131313;
    --text:        #f0ede8;
    --muted:       #6a6a6a;
    --accent:      #c9a96e;
    --border:      rgba(255, 255, 255, 0.07);
    --ff-serif:    'Cormorant Garamond', Georgia, serif;
    --ff-sans:     'Montserrat', sans-serif;
    --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--ff-sans);
    font-weight: 300;
    overflow-x: hidden;
    max-width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

#mainNav.scrolled {
    background: rgba(13, 13, 13, 0.96);
    border-bottom-color: var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
}

.artist-brand {
    font-family: var(--ff-sans);
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--text) !important;
    text-decoration: none;
}

.nav-link-custom {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-custom:hover { color: var(--accent); }

.brand-v {
    font-family: var(--ff-sans);
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--accent);
    opacity: 0.7;
    vertical-align: super;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/bg-hero26.jpeg') center center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 5, 4, 0.30) 0%,
        rgba(6, 5, 4, 0.45) 50%,
        rgba(6, 5, 4, 0.82) 100%
    );
}

.hero-content { z-index: 2; }

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

.hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    color: var(--accent);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

@keyframes neonBlink {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        color: #00aaff;
        text-shadow:
            0 0 5px #fff,
            0 0 10px #00aaff,
            0 0 20px #00aaff,
            0 0 40px #0077ff,
            0 0 80px #0077ff,
            0 0 110px #0077ff,
            0 0 160px #0077ff;
    }
    20%, 24%, 55% {
        color: rgba(0, 170, 255, 0.35);
        text-shadow: none;
    }
}

.hero-title {
    font-family: var(--ff-sans);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.08em;
    line-height: 1.05;
    margin-bottom: 1.6rem;
    color: #00aaff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #00aaff,
        0 0 20px #00aaff,
        0 0 40px #0077ff,
        0 0 80px #0077ff,
        0 0 110px #0077ff,
        0 0 160px #0077ff;
    opacity: 0;
    animation:
        fadeInUp 1s ease 0.65s forwards,
        neonBlink 4s ease-in-out 1.9s infinite;
}

.hero-divider {
    width: 42px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-tagline {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(240, 237, 232, 0.55);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

/* scroll cue */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: block;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; transform: scaleY(0.8); transform-origin: top; }
    50%       { opacity: 1;    transform: scaleY(1.0); transform-origin: top; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
    display: block;
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--ff-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0;
}

/* ============================================================
   WORKS
   ============================================================ */
.section-works {
    background-color: var(--bg);
    padding-bottom: 5rem;
}

.works-header {
    text-align: center;
    padding: 5rem 1rem 2.5rem;
}

.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.work-card {
    display: block;
    text-decoration: none;
    background: var(--bg-alt);
    overflow: hidden;
}

.work-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.88) saturate(0.9);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.work-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.7) saturate(1.1);
}

.work-info {
    padding: 0.5rem 0.6rem 0.7rem;
}

.work-name {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text);
    display: block;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.work-meta {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    display: block;
}

/* PhotoSwipe dark theme */
.pswp {
    --pswp-bg: #0d0d0d;
}



/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
    background-color: var(--bg-alt);
    padding: 6rem 0;
}

.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid rgba(201, 169, 110, 0.45);
    pointer-events: none;
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    filter: brightness(0.88) saturate(0.8);
}

.about-bio {
    font-size: 0.94rem;
    line-height: 1.9;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: 1.1rem;
}

.btn-contact {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.5);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-contact:hover {
    color: var(--text);
    border-color: var(--text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0;
}

.footer-name {
    font-family: var(--ff-sans);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin: 0;
}


/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 767px) {
    .about-img-wrap::before { display: none; }
    .hero-title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
}
