:root {
    --bg-dark: #0a0a0f;
    --text-main: #ffffff;
    --text-dim: #c8c8d0;
    --accent-gold: #d4af37;
    --accent-rose: #e8b4bc;
    --glass-bg: rgba(0, 0, 0, 0.35);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* ========== SCREENSAVER ========== */
.screensaver {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: none;
}

.screensaver.active {
    opacity: 1;
    visibility: visible;
}

.screensaver video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.screensaver-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: hintFadeIn 1s ease 2s forwards;
}

@keyframes hintFadeIn {
    to { opacity: 1; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.custom-cursor-active * { cursor: none !important; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0d1a2d;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* ========== PARALLAX BACKGROUND IMAGE ========== */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.parallax-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    will-change: transform;
}

/* ========== VIDEO BACKGROUND ========== */
.video-bg {
    position: fixed;
    transform: translate(-50%, -50%);
    width: 20%;
    max-width: 300px;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    border-radius: 8px;
    transition: none;
}

.video-bg video {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: block;
    transform: scaleX(-1);
}

.video-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        circle 650px at var(--video-mouse-x, 50%) var(--video-mouse-y, 50%),
        transparent 0%,
        transparent 0%,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 1.0) 100%
    );
}

/* Decorative vine overlay (like in the image) */
.vine-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        linear-gradient(90deg, rgba(0,0,0,0.15) 0%, transparent 5%, transparent 95%, rgba(0,0,0,0.15) 100%);
}

/* Fireflies scattered */
.fireflies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.firefly-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 248, 127, 0.9) 0%, rgba(255, 220, 80, 0.5) 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 8px 3px rgba(255, 240, 100, 0.4);
    animation: fireflyFloat 8s ease-in-out infinite;
}

.firefly-dot:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; animation-duration: 7s; }
.firefly-dot:nth-child(2) { top: 35%; left: 8%; animation-delay: 1s; animation-duration: 9s; }
.firefly-dot:nth-child(3) { top: 50%; left: 3%; animation-delay: 2s; animation-duration: 6s; }
.firefly-dot:nth-child(4) { top: 65%; left: 6%; animation-delay: 3s; animation-duration: 8s; }
.firefly-dot:nth-child(5) { top: 25%; right: 5%; animation-delay: 0.5s; animation-duration: 7.5s; }
.firefly-dot:nth-child(6) { top: 40%; right: 7%; animation-delay: 1.5s; animation-duration: 8.5s; }
.firefly-dot:nth-child(7) { top: 55%; right: 4%; animation-delay: 2.5s; animation-duration: 6.5s; }
.firefly-dot:nth-child(8) { top: 70%; right: 6%; animation-delay: 3.5s; animation-duration: 9.5s; }

@keyframes fireflyFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(10px, -15px) scale(1.2); opacity: 1; }
    50% { transform: translate(-5px, -25px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(15px, -10px) scale(1.1); opacity: 1; }
}

/* Firefly Cursor */
.firefly-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.firefly-body { display: flex; align-items: center; }
.firefly-head {
    width: 6px; height: 5px;
    background: #2a2520;
    border-radius: 50% 50% 40% 40%;
    position: relative; z-index: 3;
}
.firefly-head::before, .firefly-head::after {
    content: ''; position: absolute;
    width: 1px; height: 6px;
    background: #3a3530; top: -5px;
}
.firefly-head::before { left: 1px; transform: rotate(-20deg); }
.firefly-head::after { right: 1px; transform: rotate(20deg); }

.firefly-thorax {
    width: 8px; height: 7px;
    background: linear-gradient(to bottom, #3a3530, #2a2520);
    border-radius: 40%; margin-left: -2px;
    position: relative; z-index: 2;
}

.firefly-wings { position: absolute; top: -3px; left: 4px; z-index: 1; }
.firefly-wing {
    position: absolute; width: 12px; height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50% 50% 30% 30%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: wingFlutter 0.08s ease-in-out infinite alternate;
}
.firefly-wing.left { transform: rotate(-25deg) translateY(-2px); transform-origin: bottom right; }
.firefly-wing.right { transform: rotate(25deg) translateY(8px); transform-origin: bottom left; animation-name: wingFlutterRight; }
@keyframes wingFlutter { 0% { transform: rotate(-25deg) translateY(-2px) scaleY(1); } 100% { transform: rotate(-30deg) translateY(-3px) scaleY(0.9); } }
@keyframes wingFlutterRight { 0% { transform: rotate(25deg) translateY(8px) scaleY(1); } 100% { transform: rotate(30deg) translateY(9px) scaleY(0.9); } }

.firefly-abdomen {
    width: 10px; height: 9px;
    background: radial-gradient(ellipse at 60% 50%, #fff87f 0%, #f0e050 30%, #d4b830 50%, #8a7520 70%, #4a3a10 100%);
    border-radius: 30% 60% 60% 30%;
    margin-left: -2px; position: relative; z-index: 2;
    box-shadow: 0 0 8px 3px rgba(255, 248, 127, 0.6), 0 0 16px 6px rgba(255, 230, 100, 0.4), 0 0 24px 10px rgba(255, 220, 80, 0.2);
    animation: glowPulse 1.5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 40px 15px rgba(255, 248, 127, 0.6), 0 0 16px 6px rgba(255, 230, 100, 0.4), 0 0 24px 10px rgba(255, 220, 80, 0.2); }
    50% { box-shadow: 0 0 60px 25px rgba(255, 255, 180, 0.8), 0 0 24px 10px rgba(255, 248, 127, 0.5), 0 0 36px 16px rgba(255, 230, 100, 0.3); }
}
.firefly-cursor.hovering .firefly-abdomen {
    box-shadow: 0 0 15px 6px rgba(255, 255, 180, 0.9), 0 0 30px 12px rgba(255, 248, 127, 0.6), 0 0 45px 20px rgba(255, 230, 100, 0.4);
}

.firefly-trail {
    position: fixed; width: 5px; height: 5px;
    background: radial-gradient(circle, rgba(255, 248, 127, 0.8) 0%, rgba(255, 220, 80, 0.4) 40%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    opacity: 0; transform: translate(-50%, -50%);
    box-shadow: 0 0 6px 2px rgba(255, 240, 100, 0.5);
}

/* Spotlight/Darkness Overlay */
.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9990;
    background: radial-gradient(
        circle 650px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        transparent 0%,
        transparent 0%,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.5) 50%
    );
    transition: opacity 0.3s ease;
}

/* Fixed Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 20, 40, 0.8), transparent);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

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

.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav toggle styles are in sidebar.css */

/* Content Sections */
.parallax-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Hero Section */
#hero { height: 100vh; }

.hero-content {
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-gold) 50%, var(--accent-rose) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(50px);
    animation: heroReveal 1.2s ease 0.3s forwards;
    filter: drop-shadow(0 4px 30px rgba(212, 175, 55, 0.3));
}

.hero-content .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--accent-rose);
    letter-spacing: 0.2em;
    opacity: 0;
    animation: heroReveal 1s ease 0.6s forwards;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.hero-content p {
    text-align: center;
    padding: 40px;
    max-width: 800px;
    margin: 0 20px;
    background: rgba(10, 20, 40, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    color: var(--text-dim);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
    opacity: 0;
    animation: heroReveal 1s ease 0.9s forwards;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    animation: heroReveal 1s ease 1.2s forwards;
    transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.scroll-indicator .arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    animation: arrowBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.scroll-indicator .arrow svg {
    width: 28px;
    height: 28px;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Section Styling */
.section-content {
    max-width: 1400px;
    width: 100%;
    padding: 120px 50px;
}

.section-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.section-header p {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Glass Card Styling */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Artist Section */
.artist-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: stretch;
}

.artist-image {
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.artist-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.artist-image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.artist-info {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

.artist-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.artist-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
}

.artist-info .tagline {
    color: var(--accent-rose);
    font-style: italic;
    margin-bottom: 24px;
}

.artist-info p {
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 20px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.skill-tag {
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

/* Windows Gateway Section */
.windows-gateway-section {
    min-height: 100vh;
}

.windows-gateway-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
    gap: clamp(38px, 7vw, 96px);
    align-items: center;
}

.windows-gateway-copy {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.windows-gateway-copy.visible {
    opacity: 1;
    transform: translateY(0);
}

.windows-kicker {
    color: var(--accent-rose);
    display: block;
    font-size: 12px;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.windows-gateway-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 0.96;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.windows-gateway-copy p {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.8;
    max-width: 540px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.windows-gateway-link {
    color: inherit;
    display: block;
    justify-self: center;
    max-width: min(440px, 100%);
    opacity: 0;
    position: relative;
    text-decoration: none;
    transform: translateY(54px) rotate(0.8deg);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.45s ease;
}

.windows-gateway-link.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.windows-gateway-glow {
    background:
        radial-gradient(circle at 52% 46%, rgba(255, 216, 122, 0.34), transparent 34%),
        radial-gradient(circle at 72% 66%, rgba(232, 180, 188, 0.2), transparent 34%),
        radial-gradient(circle at 34% 62%, rgba(52, 211, 153, 0.12), transparent 32%);
    filter: blur(22px);
    inset: 7% 4% 6%;
    opacity: 0.9;
    position: absolute;
    transition: opacity 0.45s ease, transform 0.65s ease;
}

.khidki-window {
    display: block;
    overflow: visible;
    position: relative;
    transform: translateZ(0);
    transition: filter 0.45s ease, transform 0.45s ease;
}

.windows-gateway-video {
    display: block;
    filter: drop-shadow(0 36px 42px rgba(0,0,0,0.45));
    height: auto;
    position: relative;
    transform: scale(1);
    transition: filter 0.45s ease, transform 0.45s ease;
    width: 100%;
    z-index: 2;
}

.windows-gateway-cta {
    align-items: center;
    background: rgba(8, 12, 16, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.38);
    bottom: 30px;
    color: var(--accent-gold);
    display: inline-flex;
    font-size: 13px;
    gap: 12px;
    letter-spacing: 0.12em;
    padding: 14px 18px;
    position: absolute;
    right: 20px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 9;
}

.windows-gateway-cta svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.windows-gateway-link:hover .windows-gateway-glow,
.windows-gateway-link.is-opening .windows-gateway-glow {
    opacity: 1;
    transform: scale(1.08);
}

.windows-gateway-link:hover .windows-gateway-video,
.windows-gateway-link:focus-visible .windows-gateway-video,
.windows-gateway-link.is-opening .windows-gateway-video {
    filter:
        drop-shadow(0 42px 46px rgba(0,0,0,0.48))
        saturate(1.04)
        brightness(1.03);
    transform: scale(1.018);
}

.windows-gateway-link:hover .windows-gateway-cta,
.windows-gateway-link:focus-visible .windows-gateway-cta {
    background: rgba(212, 175, 55, 0.92);
    color: #11120d;
    transform: translateX(4px);
}

.windows-gateway-link:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.78);
    outline-offset: 10px;
}

/* Store Gateway Section */
.store-gateway-content {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 1fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.store-gateway-copy {
    opacity: 0;
    transform: translateY(44px);
    transition: all 0.8s ease;
}

.store-gateway-copy.visible {
    opacity: 1;
    transform: translateY(0);
}

.store-kicker {
    color: var(--accent-rose);
    display: block;
    font-size: 12px;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.store-gateway-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.store-gateway-copy p {
    color: var(--text-dim);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.store-cta {
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 999px;
    color: var(--accent-gold);
    display: inline-flex;
    gap: 12px;
    letter-spacing: 0.08em;
    padding: 14px 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.store-cta svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.store-cta:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--accent-gold);
    color: var(--text-main);
    transform: translateX(6px);
}

.store-door-link {
    color: inherit;
    display: block;
    opacity: 0;
    position: relative;
    text-decoration: none;
    transform: translateY(54px) rotate(-1.5deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.store-door-link.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.store-door-glow {
    background:
        radial-gradient(circle at 42% 38%, rgba(212, 175, 55, 0.32), transparent 34%),
        radial-gradient(circle at 70% 76%, rgba(232, 180, 188, 0.22), transparent 38%);
    filter: blur(16px);
    inset: 2% -8% -4%;
    opacity: 0.9;
    position: absolute;
}

.store-door-shell {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03) 42%, rgba(212,175,55,0.08)),
        rgba(0,0,0,0.38);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 30px 30px 14px 14px;
    box-shadow: 0 34px 90px -34px rgba(0,0,0,0.95);
    display: block;
    overflow: hidden;
    padding: clamp(14px, 2vw, 22px);
    position: relative;
}

.store-door-shell::before {
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent),
        linear-gradient(180deg, rgba(212,175,55,0.2), transparent);
    content: '';
    height: 44%;
    left: 14px;
    opacity: 0.7;
    pointer-events: none;
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
}

.store-door-topline {
    align-items: center;
    color: var(--accent-gold);
    display: flex;
    font-size: 12px;
    gap: 12px;
    justify-content: space-between;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.store-door-topline::after {
    background: rgba(212, 175, 55, 0.35);
    content: '';
    flex: 1;
    height: 1px;
}

.store-door-art {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px 22px 6px 6px;
    display: block;
    min-height: clamp(330px, 46vw, 560px);
    overflow: hidden;
    position: relative;
}

.store-door-art::after {
    background:
        linear-gradient(to top, rgba(0,0,0,0.78), transparent 46%),
        linear-gradient(115deg, rgba(255,255,255,0.18), transparent 28%);
    content: '';
    inset: 0;
    position: absolute;
}

.store-door-art img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.8s ease, filter 0.8s ease;
    width: 100%;
}

.store-door-link:hover .store-door-art img {
    filter: saturate(1.08) brightness(1.04);
    transform: scale(1.065);
}

.store-door-note {
    background: rgba(7, 12, 14, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.24);
    bottom: 78px;
    left: clamp(26px, 4vw, 52px);
    min-width: min(280px, calc(100% - 52px));
    padding: 18px 20px;
    position: absolute;
    z-index: 3;
}

.store-door-note span {
    color: var(--accent-rose);
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.store-door-note strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 400;
    line-height: 0.92;
}

.store-door-note em {
    color: var(--text-dim);
    display: block;
    font-size: 13px;
    font-style: normal;
    margin-top: 10px;
}

.store-door-cta {
    align-items: center;
    background: rgba(212, 175, 55, 0.94);
    color: #11120d;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: space-between;
    letter-spacing: 0.1em;
    padding: 16px 18px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
}

.store-door-cta svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.store-door-link:hover .store-door-cta {
    background: var(--text-main);
    color: #11120d;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

.social-link svg { width: 20px; height: 20px; }

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.2s;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: #1a2a3a; }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
    border: none;
    border-radius: 12px;
    color: #1a1a2e;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    color: var(--text-dim);
    font-size: 13px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

/* Responsive */
@media (max-width: 1024px) {
    .artist-content { grid-template-columns: 1fr; }
    .artist-image { max-width: 280px; }
    .windows-gateway-content { grid-template-columns: 1fr; }
    .windows-gateway-link { max-width: min(440px, 100%); }
    .store-gateway-content { grid-template-columns: 1fr; }
    .store-door-link { max-width: 720px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { padding: 15px 20px; }
    /* Old nav-links removed — sidebar handles navigation */
    .nav-links { display: none; }
    .section-content { padding: 80px 20px; }
    .windows-gateway-section { min-height: auto; }
    .windows-gateway-content { gap: 34px; }
    .windows-gateway-copy h2 { line-height: 1.05; }
    .windows-gateway-copy p { font-size: 16px; }
    .windows-gateway-link { max-width: min(360px, 100%); }
    .windows-gateway-video {
        filter: drop-shadow(0 28px 32px rgba(0,0,0,0.42));
    }
    .windows-gateway-cta {
        bottom: 14px;
        left: 22px;
        right: 22px;
        justify-content: space-between;
        padding: 13px 15px;
    }
    .store-gateway-content { gap: 34px; }
    .store-gateway-copy h2 { line-height: 1.05; }
    .store-gateway-copy p { font-size: 16px; }
    .store-cta {
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    .store-door-shell {
        border-radius: 22px 22px 12px 12px;
        padding: 12px;
    }
    .store-door-art {
        border-radius: 16px 16px 6px 6px;
        min-height: 320px;
    }
    .store-door-note {
        bottom: 68px;
        left: 22px;
        min-width: calc(100% - 44px);
        padding: 14px 16px;
    }
    .store-door-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .artist-info { padding: 24px; }
    .firefly-cursor, .firefly-trail, .spotlight-overlay, .fireflies, .dragonfly-fixed { display: none; }

    /* Mobile - background scrolls with page */
    .parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 100%;
        z-index: -2;
    }

    .parallax-bg img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Video background on mobile */
    .video-bg {
        position: fixed;
        top: 10% !important;
        left: 80% !important;
        width: 30%;
        max-width: 100px;
    }

    .video-spotlight { display: none; }
    
    /* Ensure content is above the absolute background */
    .parallax-section {
        position: relative;
        z-index: 1;
    }

    /* Screensaver on mobile - ensure it covers everything */
    .screensaver {
        display: block;
    }
    
    .screensaver video {
        object-fit: contain;
    }

    /* Hide fireflies on mobile */
    .fireflies { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .windows-gateway-link,
    .windows-gateway-copy,
    .windows-gateway-video,
    .windows-gateway-glow,
    .windows-gateway-cta {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
.dragonfly-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100px;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 1;
}

.dragonfly-fixed video {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .dragonfly-fixed {
        width: 150px;
        bottom: 10px;
        left: 10px;
    }
}
