.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:root {
    /* UV Glow Palette */
    --black: #050505;
    --off-black: #0a0a0a;
    --white: #f0ede8;
    --cream: #e0ddd6;
    --uv-magenta: #e040fb;
    --uv-cyan: #00e5ff;
    --uv-violet: #b050ff;
    --uv-pink: #ff4081;
    --accent: var(--uv-magenta);
    --accent-dim: rgba(224,64,251,0.2);
    --accent-glow: rgba(224,64,251,0.08);
    --uv-orange: #ff6d00;
    --uv-orange-dim: rgba(255,109,0,0.25);
    --gray: #888;
    --gray-dark: #555;
    --gray-line: rgba(255,255,255,0.06);
    --serif: 'Poppins', system-ui, sans-serif;
    --sans: 'Poppins', system-ui, sans-serif;
    --header-h: 60px;
    --banner-h: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Grain overlay */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Dynamic background - slow crossfading art crops */
.dynamic-bg {
    position: fixed; inset: 0;
    z-index: -1;
    overflow: hidden;
}
.dynamic-bg img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(40px) brightness(0.15) saturate(1.4);
    transition: opacity 3s ease;
    transform: scale(1.1);
}
.dynamic-bg img.active { opacity: 1; }

/* =============== HEADER =============== */
header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--header-h);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a0a0a;
    border-bottom: 1px solid var(--gray-line);
    overflow: visible;
}

.logo {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 600;
    
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: color 0.3s;
}
.logo:hover { color: var(--uv-magenta); }

.desktop-nav { display: flex; gap: 1.1rem; align-items: center; height: 100%; }
.desktop-nav a {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); }

/* Hamburger */
.menu-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 0.5rem;
    z-index: 300;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.mobile-nav {
    display: none;
    position: fixed; inset: 0;
    z-index: 250;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
    cursor: pointer;
}
.mobile-nav a:hover { color: var(--white); }

@media (max-width: 960px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    header { padding: 0 1.25rem; }
}

/* =============== EVENT BANNER =============== */
.event-banner {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    z-index: 190;
    height: var(--banner-h);
    background: var(--off-black);
    border-bottom: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--gray);
}
.event-banner-track {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    animation: banner-scroll 40s linear infinite;
    will-change: transform;
}
.event-banner:hover .event-banner-track {
    animation-play-state: paused;
}
@keyframes banner-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.event-banner strong { color: var(--cream); font-weight: 400; }
/* Text link — sweeping glow, no underline */
.event-banner .banner-text-link {
    color: var(--gray);
    text-decoration: none;
    background: linear-gradient(90deg, var(--gray) 0%, var(--gray) 35%, var(--cream) 50%, var(--gray) 65%, var(--gray) 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-glow-sweep 6s ease-in-out infinite;
}
.event-banner .banner-text-link strong {
    -webkit-text-fill-color: transparent;
}
@keyframes text-glow-sweep {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
/* CTA button — pulsing glow, bigger on desktop */
.event-banner .banner-cta {
    color: var(--uv-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 3px;
    white-space: nowrap;
    animation: btn-pulse-glow 3s ease-in-out infinite;
}
@keyframes btn-pulse-glow {
    0%, 100% { text-shadow: 0 0 0 transparent; box-shadow: 0 0 0 rgba(0,229,255,0); border-color: rgba(0,229,255,0.2); }
    50% { text-shadow: 0 0 6px rgba(0,229,255,0.5); box-shadow: 0 0 12px rgba(0,229,255,0.15); border-color: rgba(0,229,255,0.55); }
}
.event-banner .banner-cta:hover {
    background: rgba(0,229,255,0.1);
    text-shadow: 0 0 8px rgba(0,229,255,0.6);
    box-shadow: 0 0 14px rgba(0,229,255,0.2);
}
.event-banner .banner-sep {
    color: var(--gray-dark);
    margin: 0 0.25rem;
}
/* Mobile: entire banner is a link, no scroll */
.event-banner-link-mobile {
    display: none;
}

/* =============== PAGES =============== */
.page {
    display: none;
    padding-top: calc(var(--header-h) + var(--banner-h));
    position: relative;
    z-index: 1;
}
.page.active { display: block; }

/* =============== HOME — PORTFOLIO-FORWARD =============== */

/* Full-width hero carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
}
.hero-carousel-images {
    position: absolute; inset: 0;
}
.hero-carousel-images img, .hero-carousel-images video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease;
}
.hero-carousel-images img.active, .hero-carousel-images video.active { opacity: 1; }
.hero-carousel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,5,5,0.3) 0%,
        rgba(5,5,5,0.1) 30%,
        rgba(5,5,5,0.1) 50%,
        rgba(5,5,5,0.6) 80%,
        rgba(5,5,5,0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2.5rem 3.5rem;
    text-align: center;
    z-index: 1;
}
.hero-carousel-overlay h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-carousel-overlay .tagline {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.hero-carousel-overlay .intro {
    max-width: 560px;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
/* Progress dots */
.hero-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.hero-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.4s, transform 0.4s;
    cursor: pointer;
}
.hero-dots span.active {
    background: var(--white);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-carousel { height: 60vh; min-height: 350px; }
    .hero-carousel-overlay { padding-bottom: 2.5rem; }
}
@media (max-width: 480px) {
    .hero-carousel { height: 55vh; min-height: 300px; }
    .hero-carousel-overlay h1 { font-size: 2.8rem; }
}

/* Masonry-ish portfolio grid on home */
.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 3px;
}
.home-grid-item {
    position: relative;
    overflow: hidden;
    background: #151515;
    cursor: pointer;
}
.home-grid-item::before {
    content: '';
    display: block;
    padding-top: 120%;
}
.home-grid-item.landscape::before { padding-top: 70%; }
.home-grid-item.square::before { padding-top: 100%; }
.home-grid-item.tall::before { padding-top: 150%; }

.home-grid-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}
.home-grid-item:hover img {
    transform: scale(1.04);
}

.home-grid-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.home-grid-item:hover .home-grid-overlay { opacity: 1; }

.home-grid-overlay h3 {
    font-family: var(--serif);
    
    font-size: 1.15rem;
    font-weight: 500;
}
.home-grid-overlay span {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.2rem;
}

/* "See full portfolio" prompt */
.home-portfolio-cta {
    text-align: center;
    padding: 4rem 2rem;
}
.home-portfolio-cta a {
    font-family: var(--serif);
    
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-line);
    padding-bottom: 0.25rem;
    transition: color 0.3s, border-color 0.3s;
    cursor: pointer;
}
.home-portfolio-cta a:hover {
    color: var(--uv-cyan);
    border-color: var(--uv-cyan);
}

/* Home sections */
.home-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    border-top: 1px solid var(--gray-line);
}
.home-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}
.home-services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.home-service-col h3 {
    font-family: var(--serif);
    
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.home-service-col p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.home-service-col .link-arrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-line);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
    cursor: pointer;
    display: inline-block;
}
.home-service-col .link-arrow:hover {
    color: var(--uv-cyan);
    border-color: var(--uv-cyan);
}

/* =============== PORTFOLIO PAGE =============== */
.portfolio-header {
    padding: 4rem 2.5rem 2rem;
    text-align: center;
}
.portfolio-header h1 {
    font-family: var(--serif);
    
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.4rem;
}
.portfolio-header .sub {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}
.filters {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem;
}
.art-cat-nav {
    margin-top: 1.5rem;
}
.filter-btn {
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray);
    font-family: var(--sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--uv-cyan); color: var(--uv-cyan); }
.filter-btn.active { border-color: var(--uv-magenta); color: var(--uv-magenta); }
.sub-filters { justify-content: center; }
.sub-filters .filter-btn { font-size: 0.7rem; padding: 0.3rem 0.7rem; border-color: rgba(0,229,255,0.25); color: var(--gray); }
.sub-filters .filter-btn.active { border-color: var(--uv-cyan); color: var(--uv-cyan); }
.sub-filters .filter-btn:hover { border-color: var(--uv-cyan); color: var(--uv-cyan); }


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
    padding: 0 2px;
}
.portfolio-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #151515;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.85));
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
    font-family: var(--serif);
    
    font-size: 1.25rem;
    font-weight: 500;
}
.portfolio-overlay .cat {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
}
/* Video play indicator */
.portfolio-item.video-item::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    z-index: 2;
    transition: all 0.3s;
    pointer-events: none;
}
.portfolio-item.video-item:hover::before {
    background: var(--uv-orange);
    border-color: var(--uv-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

/* =============== SHOP PAGE =============== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.shop-card {
    background: var(--off-black);
    border: 1px solid var(--gray-line);
    overflow: hidden;
    transition: border-color 0.3s;
}
.shop-card:hover { border-color: var(--accent-dim); }
.shop-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #151515;
}
.shop-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.shop-card:hover .shop-card-img img { transform: scale(1.04); }
.shop-card-body { padding: 1.5rem; }
.shop-card-body h3 {
    font-family: var(--serif);
    
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.shop-card-body .price { color: var(--uv-cyan); font-size: 0.9rem; margin-bottom: 0.5rem; }
.shop-card-body .medium { color: var(--gray-dark); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.shop-card-img { position: relative; }
.shop-card.sold { opacity: 0.75; }
.shop-card.sold .shop-card-img::after {
    content: 'SOLD'; position: absolute; top: 1rem; right: 1rem;
    background: var(--uv-magenta); color: white; padding: 0.3rem 0.8rem;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2;
}
.shop-card.sold .price { text-decoration: line-through; color: var(--gray-dark); }
.shop-card.commission { border-style: dashed; }

/* =============== SHOP TABS =============== */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem;
}
.shop-tab {
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gray);
    font-family: var(--sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}
.shop-tab:hover { border-color: var(--uv-cyan); color: var(--uv-cyan); text-shadow: 0 0 8px rgba(0,229,255,0.3); }
.shop-tab.active { border-color: var(--uv-magenta); color: var(--uv-magenta); box-shadow: 0 0 10px rgba(224,64,251,0.25); }
.shop-section { display: none; }
.shop-section.active { display: block; }

/* =============== MERCH BUILDER =============== */
.mb-step { margin-bottom: 2.5rem; }
.mb-step.hidden { display: none; }
.mb-step-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--uv-cyan);
    margin-bottom: 1rem;
    text-align: center;
}
.mb-artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
}
.mb-artwork-thumb {
    aspect-ratio: 1;
    background: var(--off-black);
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    position: relative;
}
.mb-artwork-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.mb-artwork-thumb:hover { border-color: rgba(224,64,251,0.4); box-shadow: 0 0 16px rgba(224,64,251,0.15); transform: scale(1.03); }
.mb-artwork-thumb.selected { border-color: var(--uv-magenta); box-shadow: 0 0 20px rgba(224,64,251,0.3); }
.mb-artwork-thumb .artwork-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 4px; font-size: 0.6rem; text-align: center;
    background: rgba(5,5,5,0.8); color: var(--cream);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.mb-product-pills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}
.mb-product-pill {
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gray);
    font-family: var(--sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}
.mb-product-pill:hover { border-color: var(--uv-orange); color: var(--uv-orange); }
.mb-product-pill.selected { border-color: var(--uv-orange); color: var(--uv-orange); background: rgba(255,109,0,0.08); box-shadow: 0 0 12px rgba(255,109,0,0.2); }
.mb-canvas-wrap {
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid var(--gray-line);
    background: var(--off-black);
    position: relative;
}
.mb-canvas-wrap canvas { width: 100%; display: block; cursor: grab; }
.mb-canvas-wrap canvas:active { cursor: grabbing; }
.mb-hint { text-align: center; color: var(--gray-dark); font-size: 0.7rem; margin-bottom: 0.5rem; }
.mb-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.mb-request-form.hidden { display: none; }
.mb-success.hidden { display: none; }

/* =============== COMMUNITY DROP =============== */
.drop-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 2rem auto 3rem;
    max-width: 600px;
    position: relative;
}
.drop-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gray-line);
}
.drop-phase { flex: 1; text-align: center; position: relative; }
.phase-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-dark);
    background: var(--black);
    margin: 0 auto 0.5rem;
    transition: all 0.4s;
    position: relative; z-index: 1;
}
.drop-phase.active .phase-dot { border-color: var(--uv-magenta); background: var(--uv-magenta); box-shadow: 0 0 16px rgba(224,64,251,0.5), 0 0 30px rgba(224,64,251,0.2); }
.drop-phase.completed .phase-dot { border-color: var(--uv-cyan); background: var(--uv-cyan); }
.phase-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 0.2rem; }
.drop-phase.active .phase-label { color: var(--uv-magenta); }
.phase-dates { font-size: 0.6rem; color: var(--gray-dark); }
.drop-panel { margin-top: 1rem; }
.drop-panel.hidden { display: none; }
.drop-panel h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; text-align: center; margin-bottom: 0.3rem; }
.drop-panel-sub { color: var(--gray); font-size: 0.82rem; text-align: center; margin-bottom: 2rem; }
.drop-artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.drop-artwork-card {
    background: var(--off-black);
    border: 1px solid var(--gray-line);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.drop-artwork-card:hover { border-color: rgba(224,64,251,0.3); box-shadow: 0 0 16px rgba(224,64,251,0.1); }
.drop-artwork-card img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 12px; background: #0a0a0a; }
.drop-artwork-card .card-footer { padding: 0.75rem; display: flex; justify-content: space-between; align-items: center; }
.drop-artwork-card .card-name { font-size: 0.78rem; font-weight: 400; }
.nominate-btn {
    background: none; border: 1px solid rgba(255,255,255,0.12);
    color: var(--gray); padding: 0.3rem 0.6rem; font-size: 0.7rem;
    cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 0.3rem;
}
.nominate-btn:hover { border-color: var(--uv-pink); color: var(--uv-pink); }
.nominate-btn.nominated { border-color: var(--uv-pink); color: var(--uv-pink); background: rgba(255,64,129,0.1); }
.drop-vote-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.vote-card {
    background: var(--off-black);
    border: 1px solid var(--gray-line);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.vote-card:hover { border-color: rgba(224,64,251,0.4); box-shadow: 0 0 20px rgba(224,64,251,0.15); }
.vote-card.voted { border-color: var(--uv-magenta); box-shadow: 0 0 24px rgba(224,64,251,0.25); }
.vote-card img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 1rem; }
.vote-card h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.vote-bar-wrap { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 0.3rem; }
.vote-bar { height: 100%; background: linear-gradient(90deg, var(--uv-magenta), var(--uv-violet)); border-radius: 3px; transition: width 0.6s ease; box-shadow: 0 0 8px rgba(224,64,251,0.3); }
.vote-count { font-size: 0.7rem; color: var(--gray); }
.commit-section { margin-top: 2rem; text-align: center; padding: 1.5rem; border: 1px solid var(--gray-line); background: rgba(224,64,251,0.03); max-width: 500px; margin-left: auto; margin-right: auto; }
.commit-section h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--uv-orange); }
.commit-section p { font-size: 0.78rem; color: var(--gray); margin-bottom: 1rem; }
.commit-row { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.commit-row input { padding: 0.5rem 1rem; background: var(--off-black); border: 1px solid var(--gray-line); color: var(--white); font-family: var(--sans); font-size: 0.78rem; width: 220px; }
.commit-row input:focus { border-color: var(--uv-cyan); outline: none; }
.commit-count { font-size: 0.65rem; color: var(--gray-dark); margin-top: 0.5rem; }
.commit-success { display: none; color: var(--uv-cyan); font-size: 0.82rem; margin-top: 0.5rem; }
.drop-timer { display: flex; justify-content: center; gap: 1.5rem; margin: 2rem auto; }
.timer-unit { text-align: center; }
.timer-num { display: block; font-size: 2.5rem; font-weight: 200; color: var(--uv-magenta); text-shadow: 0 0 20px rgba(224,64,251,0.4); font-variant-numeric: tabular-nums; }
.timer-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); }

/* =============== SERVICES PAGE =============== */
.services-intro {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
}
.services-intro p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-line);
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--black);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card .label-new {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--uv-violet);
    margin-bottom: 0.75rem;
}
.service-card h3 {
    font-family: var(--serif);
    
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.service-card .desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}
.service-card .includes {
    list-style: none;
    margin-bottom: 1.5rem;
}
.service-card .includes li {
    font-size: 0.82rem;
    color: var(--gray);
    padding: 0.25rem 0 0.25rem 1rem;
    position: relative;
}
.service-card .includes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-dark);
}
.service-card .social-proof {
    font-size: 0.75rem;
    color: var(--gray-dark);
    
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-line);
}
.service-card .social-proof strong { color: var(--gray); font-weight: 400; }

/* =============== EVENTS PAGE =============== */
.events-feature {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--gray-line);
}
.events-feature h2 {
    font-family: var(--serif);
    
    font-size: 1.4rem;
    font-weight: 600; font-weight: 600;
    margin-bottom: 0.4rem;
}
.events-feature p {
    color: var(--gray); font-size: 0.85rem;
    margin-bottom: 1.25rem;
}
.events-list { max-width: 750px; margin: 0 auto; }
.event-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--gray-line);
    align-items: start;
}
.event-year {
    font-family: var(--serif);
    
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--uv-magenta);
}
.event-row h4 {
    font-family: var(--serif);
    
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.event-row .venue { color: var(--gray); font-size: 0.82rem; }

/* =============== ABOUT PAGE =============== */
.about-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.about-top {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 4rem;
}
.about-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #151515;
}
.about-photo img, .about-photo video { width: 100%; height: 100%; object-fit: cover; }
.about-bio h2 {
    font-family: var(--serif);
    
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.about-bio p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* CV sections */
.cv-section {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-line);
}
.cv-section h2 {
    font-family: var(--serif);
    
    font-size: 1.4rem;
    font-weight: 600; font-weight: 600;
    margin-bottom: 1.5rem;
}
.cv-entry {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.8;
    padding-left: 1rem;
    border-left: 1px solid var(--gray-line);
    margin-bottom: 0.4rem;
}
.cv-entry strong { color: var(--cream); font-weight: 400; }
.cv-entry .cv-year { color: var(--gray-dark); font-size: 0.78rem; }

.cv-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-line);
}
.btn-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--uv-cyan);
    color: var(--uv-cyan);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
}
.btn-cv:hover {
    background: var(--uv-cyan);
    color: var(--black);
    box-shadow: 0 0 16px rgba(0,229,255,0.25);
}

/* Print-friendly CV */
@media print {
    body { background: #fff; color: #111; }
    header, footer, .dynamic-bg, .grain, .hero-carousel, .clients-bar,
    .about-photo, .about-links, .cv-actions, .banner { display: none !important; }
    .page { display: block !important; }
    .cv-section { border-color: #ddd; }
    .cv-section h2 { color: #111; }
    .cv-entry { color: #333; border-color: #ccc; }
    .cv-entry strong { color: #111; }
    a { color: #111; text-decoration: underline; }
}

/* Hire page bottom spacing */
#page-hire .page-section { padding-bottom: 0; }

/* Venue carousel */
.venue-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--black);
}
.venue-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0;
    transition: opacity 1s ease;
}
.venue-carousel img.active { opacity: 1; }
.venue-carousel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    pointer-events: none;
    z-index: 1;
}
.venue-carousel-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 2rem 2.5rem 2.5rem;
    text-align: center;
}
.venue-carousel-overlay h2 {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.venue-carousel-overlay .venue-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.venue-carousel-overlay .venue-desc {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.venue-carousel-overlay .venue-stat {
    margin-top: 1rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--uv-cyan);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.venue-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
}
.venue-carousel:hover .venue-carousel-btn { opacity: 1; }
.venue-carousel-btn.prev { left: 12px; }
.venue-carousel-btn.next { right: 12px; }
.venue-carousel-dots {
    position: absolute;
    bottom: auto;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}
.venue-carousel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s;
    cursor: pointer;
}
.venue-carousel-dots span.active { background: var(--white); }
@media (max-width: 600px) {
    .venue-carousel { height: 70vh; min-height: 400px; }
    .venue-carousel-overlay h2 { font-size: 1.6rem; }
    .venue-carousel-overlay .venue-desc { font-size: 0.88rem; }
    .venue-carousel-overlay { padding: 1.5rem 1.25rem 2rem; }
}

/* Clients logos */
.clients-bar {
    padding: 4rem 2.5rem;
    border-top: 1px solid var(--gray-line);
}
.clients-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 2rem;
}
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.clients-logos img {
    height: 30px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.5);
    transition: opacity 0.3s, filter 0.3s;
}
.clients-logos img:hover { opacity: 0.9; filter: grayscale(100%) brightness(1.8); }

/* =============== SHARED: BUTTONS =============== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--sans);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-gold { background: var(--uv-orange); color: var(--black); font-weight: 600; letter-spacing: 0.03em; }
.btn-gold:hover { background: #ff8a00; box-shadow: 0 0 20px rgba(255,109,0,0.4); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-outline:hover { border-color: var(--white); }

/* =============== SHARED: SECTION =============== */
.page-section {
    padding: 5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.page-title {
    font-family: var(--serif);
    
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 0.4rem;
}
.page-sub {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

/* =============== ATMOSPHERIC BACKGROUNDS =============== */
.page-atmo {
    position: relative;
}
.page-atmo-bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(30px) brightness(0.18) saturate(1.3);
    transform: scale(1.15);
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}
.page-atmo-bg.visible {
    opacity: 1;
}
.events-atmo-bg img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease;
}
.events-atmo-bg img.active { opacity: 1; }
.page-atmo .page-section {
    position: relative;
    z-index: 1;
}

/* =============== NEWSLETTER =============== */
.newsletter {
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--gray-line);
}
.newsletter h2 {
    font-family: var(--serif);
    
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.newsletter .pitch {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.newsletter-row {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}
.nl-input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.88rem;
    outline: none;
}
.nl-input:focus { border-color: var(--uv-cyan); }
.nl-input::placeholder { color: var(--gray-dark); }
.nl-btn {
    padding: 0.85rem 1.5rem;
    background: var(--uv-magenta);
    color: var(--black);
    border: 1px solid var(--uv-magenta);
    font-family: var(--sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}
.nl-btn:hover { background: #c030e0; box-shadow: 0 0 16px rgba(224,64,251,0.3); }
#nl-msg, .nl-msg {
    display: none;
    margin-top: 1rem;
    color: var(--uv-cyan);
    font-size: 0.82rem;
}
.nl-msg.success { color: var(--uv-cyan); display: block; }
.nl-msg.error { color: var(--uv-pink); display: block; }
.nl-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =============== FOOTER =============== */
footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--gray-dark);
}
.footer-brand { font-family: var(--serif); color: var(--gray); }
.footer-brand img {
    height: 36px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.4s, filter 0.4s;
}
.footer-brand img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.4)) drop-shadow(0 0 24px rgba(224,64,251,0.3));
}
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

/* =============== JEWELRY DESIGNER =============== */
.jd-wrap {
    max-width: 800px; margin: 0 auto 4rem;
    border: 1px solid var(--gray-line); border-radius: 12px;
    padding: 2.5rem; background: rgba(255,255,255,0.02);
}
.jd-wrap h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; text-align: center; margin-bottom: 0.3rem; }
.jd-sub { color: var(--gray); font-size: 0.82rem; text-align: center; margin-bottom: 1.5rem; }
.jd-toolbar {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    flex-wrap: wrap; margin-bottom: 1rem;
}
.jd-tool {
    padding: 0.4rem 0.9rem; border: 1px solid var(--gray-line); border-radius: 6px;
    background: transparent; color: var(--white); font-family: var(--sans);
    font-size: 0.78rem; cursor: pointer; transition: all 0.3s;
}
.jd-tool:hover { border-color: var(--uv-orange); }
.jd-tool.active { border-color: var(--uv-orange); background: rgba(255,109,0,0.12); color: var(--uv-orange); }
.jd-tool.danger { border-color: var(--gray-dark); color: var(--gray); }
.jd-tool.danger:hover { border-color: var(--uv-pink); color: var(--uv-pink); }
.jd-counters {
    display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1rem;
    font-size: 0.75rem; color: var(--gray);
}
.jd-counters span { font-weight: 500; color: var(--uv-orange); }
.jd-canvas-wrap {
    position: relative; width: 100%; max-width: 500px; margin: 0 auto;
    aspect-ratio: 1; border-radius: 10px; overflow: hidden;
    border: 1px solid var(--gray-line); cursor: crosshair;
}
.jd-canvas-wrap canvas {
    width: 100%; height: 100%; display: block;
}
.jd-hint {
    text-align: center; margin-top: 0.75rem; font-size: 0.7rem; color: var(--gray-dark);
}
.jd-form {
    margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.jd-form-row { display: flex; gap: 0.5rem; width: 100%; max-width: 400px; }
.jd-form input {
    flex: 1; padding: 0.55rem 0.75rem; border: 1px solid var(--gray-line); border-radius: 6px;
    background: transparent; color: var(--white); font-family: var(--sans); font-size: 0.82rem;
}
.jd-form input::placeholder { color: var(--gray-dark); }
.jd-form input:focus { border-color: var(--uv-cyan); outline: none; }
.jd-success { color: var(--uv-cyan); font-size: 0.85rem; display: none; text-align: center; margin-top: 1rem; }

/* =============== SUPPORT PAGE =============== */
.support-hero { text-align: center; margin-bottom: 3rem; }
.support-hero h1 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: 0.5rem; }
.support-hero p { color: var(--gray); font-size: 0.9rem; max-width: 550px; margin: 0 auto; }

.support-builder {
    max-width: 800px; margin: 0 auto 4rem;
    border: 1px solid var(--gray-line); border-radius: 12px;
    padding: 2.5rem; background: rgba(255,255,255,0.02);
}
.support-builder h2 {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
    text-align: center; margin-bottom: 0.4rem;
}
.support-builder .builder-sub {
    color: var(--gray); font-size: 0.82rem; text-align: center; margin-bottom: 2rem;
}
.builder-amount-row {
    display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.amount-btn {
    padding: 0.5rem 1.2rem; border: 1px solid var(--gray-line); border-radius: 6px;
    background: transparent; color: var(--white); font-family: var(--sans);
    font-size: 0.85rem; cursor: pointer; transition: all 0.3s;
}
.amount-btn:hover { border-color: var(--uv-cyan); color: var(--uv-cyan); }
.amount-btn.active { border-color: var(--uv-cyan); background: rgba(0,229,255,0.1); color: var(--uv-cyan); }
.amount-custom {
    width: 100px; padding: 0.5rem 0.6rem; border: 1px solid var(--gray-line); border-radius: 6px;
    background: transparent; color: var(--white); font-family: var(--sans);
    font-size: 0.85rem; text-align: center;
}
.amount-custom:focus { border-color: var(--uv-cyan); outline: none; }
.amount-custom::placeholder { color: var(--gray-dark); }

.builder-balance {
    text-align: center; margin-bottom: 2rem; font-size: 0.85rem; color: var(--gray);
}
.builder-balance .bal-num {
    font-size: 1.3rem; font-weight: 600; color: var(--uv-cyan);
    transition: color 0.3s;
}
.builder-balance .bal-num.over { color: var(--uv-pink); }

.perk-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem;
}
.perk-card {
    border: 1px solid var(--gray-line); border-radius: 8px; padding: 1rem 1.1rem;
    cursor: pointer; transition: all 0.3s; position: relative;
}
.perk-card:hover { border-color: rgba(255,255,255,0.15); }
.perk-card.selected { border-color: var(--uv-cyan); background: rgba(0,229,255,0.05); }
.perk-card.disabled { opacity: 0.35; cursor: not-allowed; }
.perk-card .perk-entity {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray-dark); margin-bottom: 0.3rem;
}
.perk-card .perk-name {
    font-family: var(--serif); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem;
}
.perk-card .perk-desc {
    font-size: 0.72rem; color: var(--gray); line-height: 1.4; margin-bottom: 0.4rem;
}
.perk-card .perk-price {
    font-size: 0.75rem; font-weight: 500; color: var(--uv-orange);
}
.perk-card .perk-check {
    position: absolute; top: 0.75rem; right: 0.75rem; width: 18px; height: 18px;
    border: 1px solid var(--gray-dark); border-radius: 50%; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; font-size: 0.65rem;
}
.perk-card.selected .perk-check {
    border-color: var(--uv-cyan); background: var(--uv-cyan); color: var(--black);
}

.builder-summary {
    text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--gray-line);
}
.builder-summary .summary-total {
    font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem;
}
.builder-summary .summary-total strong { color: var(--white); }

/* Entity sections */
.support-entities {
    max-width: 800px; margin: 0 auto 3rem;
}
.support-entity {
    border: 1px solid var(--gray-line); border-radius: 10px; padding: 2rem;
    margin-bottom: 1.5rem; background: rgba(255,255,255,0.015);
}
.support-entity h3 {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem;
}
.support-entity .entity-type {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray-dark); margin-bottom: 0.75rem;
}
.support-entity p { color: var(--gray); font-size: 0.82rem; margin-bottom: 1rem; line-height: 1.5; }

/* Membership tiers */
.tier-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    max-width: 800px; margin: 0 auto 3rem;
}
.tier-card {
    border: 1px solid var(--gray-line); border-radius: 10px; padding: 1.5rem;
    text-align: center; transition: all 0.3s;
}
.tier-card:hover { border-color: rgba(255,255,255,0.15); }
.tier-card.featured { border-color: var(--uv-orange); }
.tier-card .tier-name {
    font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem;
}
.tier-card .tier-price {
    font-size: 1.3rem; font-weight: 600; color: var(--uv-orange); margin-bottom: 0.1rem;
}
.tier-card .tier-freq { font-size: 0.7rem; color: var(--gray-dark); margin-bottom: 1rem; }
.tier-card .tier-perks {
    list-style: none; padding: 0; margin: 0 0 1.25rem; font-size: 0.78rem; color: var(--gray); text-align: left;
}
.tier-card .tier-perks li { padding: 0.3rem 0; border-bottom: 1px solid var(--gray-line); }
.tier-card .tier-perks li:last-child { border-bottom: none; }

/* =============== RESPONSIVE =============== */
@media (max-width: 960px) {
    .tier-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card.wide { grid-column: 1 / -1; }
    .category-grid-centered-row { max-width: 100%; }
    .home-grid { grid-template-columns: repeat(2, 1fr); }
    .home-services-row { grid-template-columns: 1fr; gap: 2rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .series-images { grid-template-columns: repeat(2, 1fr); }
    .about-top { grid-template-columns: 1fr; gap: 2rem; }
    .event-row { grid-template-columns: 60px 1fr; gap: 1rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .newsletter-row { flex-direction: column; }
    .nl-input { border-right: 1px solid rgba(255,255,255,0.12); }
    /* Events page: stack T Room / Studios on mobile */
    #page-events .page-section > div[style*="grid-template-columns: 1fr 1fr; gap: 1.5rem"] { grid-template-columns: 1fr !important; }
    .nav-dropdown-menu { left: 0; transform: none; }
    .perk-grid { grid-template-columns: 1fr; }
    .tier-cards { grid-template-columns: 1fr !important; }
    .support-builder { padding: 1.5rem; }
    .jd-wrap { padding: 1.5rem; }
    .jd-form-row { flex-direction: column; }

    /* Page section padding */
    .page-section { padding: 3rem 1.5rem; }
    .category-page-header { padding: 3rem 1.5rem 1.5rem; }

    /* Services cards */
    .services-grid { grid-template-columns: 1fr !important; }
    .service-card { padding: 2rem 1.5rem; grid-column: auto !important; }
    .service-card h3 { font-size: 1.25rem; }

    /* Shop grid */
    .shop-grid {
        grid-template-columns: 1fr !important;
        padding: 0 1.5rem;
    }
    .shop-tabs { gap: 0.2rem; }
    .shop-tab { padding: 0.5rem 0.8rem; font-size: 0.65rem; }
    .drop-vote-cards { grid-template-columns: 1fr; max-width: 360px; }
    .mb-artwork-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
    .drop-artwork-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .timer-num { font-size: 1.8rem; }
    .drop-timer { gap: 1rem; }
    .commit-row { flex-direction: column; align-items: center; }
    .commit-row input { width: 100%; max-width: 280px; }

    /* Podcasts grid — override inline style */
    #page-podcasts .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
    }

    /* About heading */
    .about-bio h2 { font-size: 1.6rem; }

    /* Event banner — mobile: same scrolling marquee as desktop */
    .event-banner {
        padding: 0;
        font-size: 0.72rem;
        overflow: hidden;
    }
    .event-banner .banner-cta {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
    }
    .event-banner-link-mobile {
        display: none;
    }

    /* Clients logos */
    .clients-logos { gap: 1.5rem; }
    .clients-logos img { height: 28px; }

    /* Newsletter heading */
    .newsletter h2 { font-size: 1.5rem; }

    /* Category card overlay */
    .category-card-overlay { padding: 0.75rem; }
    .category-card-overlay h3 { font-size: min(1.1rem, 4.5vw); }

    /* Touch-friendly portfolio overlay — visible on mobile */
    .portfolio-item .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    }
    .portfolio-item .portfolio-overlay h3 {
        font-size: 0.85rem;
    }
    .portfolio-item .portfolio-overlay .cat {
        font-size: 0.65rem;
    }

    /* Pause background videos on mobile to save battery — show poster frame */
    .page-atmo-bg video {
        animation: none !important;
    }
    /* Services bg */
    #page-services .page-atmo-bg {
        background: url('images/bg/bg-pareidolia.jpg') center/cover no-repeat;
    }
    #page-services .page-atmo-bg video { display: none; }
    /* About bg */
    #page-about .page-atmo-bg {
        background: url('images/bg/bg-seraph.jpg') center/cover no-repeat;
    }
    #page-about .page-atmo-bg video { display: none; }
    /* Podcasts bg */
    #page-podcasts .page-atmo-bg {
        background: url('images/bg/bg-eyebloom.jpg') center/cover no-repeat;
    }
    #page-podcasts .page-atmo-bg video { display: none; }
    /* Contact bg */
    #page-contact .page-atmo-bg {
        background: url('images/bg/bg-mushbloom.jpg') center/cover no-repeat;
    }
    #page-contact .page-atmo-bg video { display: none; }
    /* Hire bg */
    #page-hire .page-atmo-bg {
        background: url('images/bg/bg-pareidolia.jpg') center/cover no-repeat;
    }
    #page-hire .page-atmo-bg video { display: none; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr 1fr; }
    .home-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .series-images { grid-template-columns: 1fr; }
    .hero-carousel-overlay h1 { font-size: 2.5rem; }

    /* Tighter padding */
    .page-section { padding: 2.5rem 1rem; }
    .service-card { padding: 1.75rem 1.25rem; }
    .shop-grid { padding: 0 1rem; }

    /* Filter buttons */
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.7rem; }
    .sub-filters .filter-btn { padding: 0.4rem 0.8rem; }

    /* Category card overlay */
    .category-card-overlay { padding: 0.6rem; }
    .category-card-overlay h3 { font-size: min(0.95rem, 4.5vw); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-carousel-images img, .hero-carousel-images video { transition: none; }
    .fade-up { opacity: 1; transform: none; transition: none; }
    .page-atmo-bg video { display: none; }
    .polaroid-slap.slap { animation: none; opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(var(--slap-angle)); }
    .category-card-carousel img { transition: none; }
}

/* =============== CONTACT PAGE =============== */
.contact-hero {
    text-align: center;
    padding: 4rem 2.5rem 1rem;
}
.contact-hero h1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.4rem;
}
.contact-hero .sub {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}
/* contact-grid/card removed — using accordion layout */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    transition: all 0.3s;
}
.contact-link:hover {
    border-color: var(--accent-dim);
    background: rgba(224,64,251,0.04);
}
.contact-link .link-label { color: var(--cream); }
.contact-link .link-arrow-r { color: var(--gray-dark); font-size: 0.75rem; transition: color 0.3s; }
.contact-link:hover .link-arrow-r { color: var(--uv-cyan); }

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.social-pill {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: var(--gray);
    transition: all 0.3s;
}
.social-pill:hover {
    border-color: var(--white);
    color: var(--white);
}

/* =============== CONTACT FORM =============== */
.contact-form-block {
    max-width: 640px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    border-top: 1px solid var(--gray-line);
    position: relative;
    z-index: 1;
}
.contact-form-block h2 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-align: center;
}
.contact-form-block .form-sub {
    color: var(--gray);
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 2rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 540px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.85rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-dark);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--uv-magenta);
    box-shadow: 0 0 0 2px rgba(224,64,251,0.1);
}
.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.contact-form select option {
    background: var(--black);
    color: var(--cream);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-submit {
    align-self: flex-start;
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 1px solid var(--uv-magenta);
    color: var(--uv-magenta);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .btn-submit:hover {
    background: var(--uv-magenta);
    color: var(--black);
    box-shadow: 0 0 20px rgba(224,64,251,0.3);
}
.contact-form .form-note {
    font-size: 0.72rem;
    color: var(--gray-dark);
    text-align: center;
}
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success.show { display: block; }
.form-success h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--uv-cyan);
    margin-bottom: 0.5rem;
}
.form-success p { color: var(--gray); font-size: 0.85rem; }

/* =============== CONTACT ACCORDION =============== */
.accordion-item {
    border-top: 1px solid var(--gray-line);
}
.accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 0;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}
.accordion-toggle:hover {
    color: var(--uv-magenta);
}
.acc-arrow {
    font-size: 1.2rem;
    color: var(--gray-dark);
    transition: transform 0.3s, color 0.3s;
}
.accordion-item.open .acc-arrow {
    transform: rotate(45deg);
    color: var(--uv-magenta);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}
.accordion-item.open .accordion-body {
    max-height: 500px;
    padding: 0 0 1.5rem;
}

/* =============== ARTWORK DETAIL LIGHTBOX =============== */
.artwork-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #050505;
    overflow-y: auto;
    animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.artwork-lightbox.open { display: block; }
.artwork-lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1010;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--cream);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.artwork-lightbox-close:hover {
    border-color: var(--uv-magenta);
    color: var(--uv-magenta);
    box-shadow: 0 0 12px rgba(224,64,251,0.2);
}
.artwork-lightbox-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}
.artwork-lightbox-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: opacity 0.15s ease;
}
.artwork-lightbox-info {
    padding: 2rem 0;
    text-align: center;
}
.artwork-lightbox-info h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.artwork-lightbox-info .lb-details {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
}
.artwork-lightbox-info .lb-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.artwork-lightbox-info .lb-actions a {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.78rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
}
.artwork-lightbox-info .lb-actions a:hover {
    border-color: var(--uv-cyan);
    color: var(--uv-cyan);
    box-shadow: 0 0 12px rgba(0,229,255,0.15);
}
.artwork-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.artwork-lightbox-nav:hover {
    border-color: var(--uv-magenta);
    box-shadow: 0 0 12px rgba(224,64,251,0.2);
}
.artwork-lightbox-nav.lb-prev { left: 1rem; }
.artwork-lightbox-nav.lb-next { right: 1rem; }
.lb-detail-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
    opacity: 0.7;
}
.lb-detail-gallery img:hover, .lb-detail-gallery img.active {
    opacity: 1;
    border-color: var(--uv-magenta);
    box-shadow: 0 0 10px rgba(224,64,251,0.2);
}
@media (max-width: 768px) {
    .artwork-lightbox-nav { display: none; }
    .artwork-lightbox-content { padding: 3rem 1rem 4rem; }
    .lb-detail-gallery img { width: 70px; height: 70px; }
    .artwork-lightbox-img { max-height: 50vh; }
    .artwork-lightbox-info h2 { font-size: 1.3rem; }
}

/* =============== NAV DROPDOWNS =============== */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-dropdown > a {
    cursor: default;
}
.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.6em;
    opacity: 0.5;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-line);
    padding: 0.6rem 0;
    min-width: 180px;
    z-index: 300;
}
/* Invisible bridge so hover doesn't break between trigger and menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0; right: 0;
    height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.4rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    transition: color 0.2s, padding-left 0.2s;
}
.nav-dropdown-menu a:hover {
    color: var(--uv-cyan);
    padding-left: 1.7rem;
}

/* =============== CATEGORY CARDS (HOME) =============== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 3px;
}
.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #0a0a0a;
}
.category-card::before {
    content: '';
    display: block;
    padding-top: 120%;
}
.category-card-images {
    position: absolute; inset: 0;
}
.category-card-images img,
.category-card-images video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.category-card-images img.active,
.category-card-images video.active { opacity: 1; }
.category-card:hover .category-card-images img,
.category-card:hover .category-card-images video {
    filter: brightness(0.7);
}
.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(5,5,5,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(0.6rem, 3vw, 1.8rem);
    transition: background 0.4s;
}
.category-card:hover .category-card-overlay {
    background: linear-gradient(transparent 20%, rgba(5,5,5,0.9));
}
.category-card-overlay h3 {
    font-family: var(--serif);
    font-size: clamp(0.85rem, 4.5vw, 1.3rem);
    font-weight: 600;
    transition: text-shadow 0.4s;
}
.category-card:hover .category-card-overlay h3 {
    text-shadow: 0 0 20px rgba(224,64,251,0.4);
}
.category-card-overlay .card-count {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Wide cards for bottom row */
.category-card.wide {
    grid-column: 1 / -1;
}
.category-card.wide::before { padding-top: 40%; }
.category-grid-centered-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 3px;
}
.category-grid-centered-row .category-card {
    flex: 0 1 calc(33.333% - 2px);
}

/* =============== CATEGORY PAGE =============== */
.category-page-header {
    padding: 4rem 2.5rem 2rem;
    text-align: center;
}
.category-page-header h1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.4rem;
}
.category-back {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.category-back:hover { color: var(--uv-cyan); }
.series-section {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2.5rem;
}
.series-header {
    border-bottom: 1px solid var(--gray-line);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.series-header h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.series-header .series-meta {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.series-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 2rem;
}
.series-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 4px;
}
.series-images .piece-thumb {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
}
.series-images .piece-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.series-images .piece-thumb:hover img { transform: scale(1.04); }
.piece-thumb .piece-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(5,5,5,0.85));
    opacity: 0;
    transition: opacity 0.3s;
}
.piece-thumb:hover .piece-label { opacity: 1; }
.piece-label h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
}
.piece-label span {
    font-size: 0.68rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =============== ANIMATIONS =============== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============== UV GLOW SYSTEM =============== */
/* Nav links glow */
.desktop-nav > a:hover,
.desktop-nav > .nav-dropdown:hover > a {
    color: var(--uv-magenta) !important;
    text-shadow: 0 0 12px rgba(224,64,251,0.5), 0 0 30px rgba(224,64,251,0.2);
}
.nav-dropdown-menu a:hover {
    color: var(--uv-cyan) !important;
    text-shadow: 0 0 10px rgba(0,229,255,0.4);
    background: rgba(0,229,255,0.05);
}

/* Portfolio item glow on hover */
.portfolio-item {
    border: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.portfolio-item:hover {
    border-color: rgba(224,64,251,0.3);
    box-shadow: 0 0 20px rgba(224,64,251,0.15), 0 0 40px rgba(224,64,251,0.05);
}
.portfolio-overlay h3 {
    transition: text-shadow 0.3s;
}
.portfolio-item:hover .portfolio-overlay h3 {
    text-shadow: 0 0 14px rgba(224,64,251,0.5);
}

/* Category card glow on hover */
.category-card {
    border: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.category-card:hover {
    border-color: rgba(224,64,251,0.35);
    box-shadow: 0 0 24px rgba(224,64,251,0.15), 0 0 60px rgba(224,64,251,0.06);
}

/* Buttons glow */
.btn-outline {
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--uv-cyan);
    color: var(--uv-cyan);
    box-shadow: 0 0 14px rgba(0,229,255,0.2);
    text-shadow: 0 0 8px rgba(0,229,255,0.3);
}

/* Filter buttons glow */
.filter-btn.active {
    box-shadow: 0 0 10px rgba(224,64,251,0.25);
}
.filter-btn:hover {
    text-shadow: 0 0 8px rgba(224,64,251,0.4);
}

/* Logo glow */
.logo:hover {
    text-shadow: 0 0 16px rgba(224,64,251,0.5), 0 0 40px rgba(224,64,251,0.15) !important;
}

/* Category back arrow glow */
.category-back:hover {
    color: var(--uv-cyan);
    text-shadow: 0 0 10px rgba(0,229,255,0.4);
}

/* Footer link glow */
.footer-links a:hover {
    color: var(--uv-cyan);
    text-shadow: 0 0 10px rgba(0,229,255,0.3);
}

/* Social pills glow */
.social-pill:hover {
    border-color: var(--uv-cyan);
    color: var(--uv-cyan);
    box-shadow: 0 0 12px rgba(0,229,255,0.15);
}

/* Contact link glow */
.contact-link:hover {
    box-shadow: 0 0 12px rgba(224,64,251,0.1);
}

/* Shop cards glow */
.shop-card:hover {
    border-color: rgba(224,64,251,0.3);
    box-shadow: 0 0 20px rgba(224,64,251,0.12);
}

/* Scrollbar glow tint */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(224,64,251,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(224,64,251,0.5); }

/* Accessibility: Skip to content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--uv-cyan);
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

/* Accessibility: Keyboard focus styles */
*:focus-visible {
    outline: 2px solid var(--uv-cyan);
    outline-offset: 2px;
}
button:focus-visible, .btn:focus-visible, .btn-gold:focus-visible, .btn-outline:focus-visible {
    outline: 2px solid var(--uv-cyan);
    outline-offset: 2px;
    box-shadow: 0 0 8px rgba(0,255,255,0.3);
}

/* Video embed modal */
.video-modal {
    position: fixed; inset: 0;
    background: rgba(5,5,5,0.95);
    z-index: 9500;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-y: auto;
}
.video-modal.active { display: flex; }
.video-modal-inner {
    position: relative;
    width: 90vw; max-width: 960px;
}
.video-modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 4px;
}
.video-modal-close {
    background: none; border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-title {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}
.video-modal-title strong {
    color: var(--white);
    font-weight: 500;
}
.video-modal-title .noisivelet-link {
    color: var(--uv-cyan);
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s;
}
.video-modal-title .noisivelet-link:hover { opacity: 0.7; }

/* Portrait / vertical video layout */
.video-modal-inner.portrait-layout {
    max-width: 85vw;
    width: auto;
}
.video-modal-inner.portrait-layout .video-modal-content {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}
.video-modal-inner.portrait-layout .video-modal-player {
    flex: 0 0 auto;
    width: min(30vw, 360px);
}
.video-modal-inner.portrait-layout .video-modal-player iframe {
    aspect-ratio: 9/16;
    width: 100%;
    border-radius: 4px;
}
.video-modal-inner.portrait-layout .video-modal-sidebar {
    flex: 1;
    min-width: 220px;
    max-width: 360px;
    padding-top: 1rem;
}
.video-modal-inner.portrait-layout .video-modal-title {
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}
.video-modal-inner.portrait-layout .video-modal-title strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--white);
}

/* Mobile: caption expandable (Instagram/TikTok style) */
.video-modal-caption-toggle {
    display: none;
    color: var(--gray);
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.video-modal-caption-toggle:hover { opacity: 1; }

@media (max-width: 768px) {
    .video-modal { align-items: flex-start; padding-top: 60px; }
    .video-modal-inner { width: 95vw; max-width: none; }
    .video-modal-inner.portrait-layout {
        max-width: 95vw;
        width: 95vw;
    }
    .video-modal-inner.portrait-layout .video-modal-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .video-modal-inner.portrait-layout .video-modal-player {
        width: min(60vw, 300px);
    }
    .video-modal-inner.portrait-layout .video-modal-sidebar {
        max-width: 100%;
        padding-top: 0;
        width: 100%;
    }
    .video-modal-title {
        font-size: 0.82rem;
    }
    /* Collapsed caption on mobile */
    .video-modal-title.caption-collapsed {
        max-height: 1.5em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .video-modal-title.caption-collapsed strong {
        display: inline;
        font-family: var(--sans);
        font-size: inherit;
        margin-bottom: 0;
    }
    .video-modal-title.caption-expanded {
        max-height: none;
        overflow: visible;
        white-space: normal;
    }
    .video-modal-caption-toggle {
        display: inline-block;
    }
}

/* ===== AUDIO MODAL (Interview Player + Transcript) ===== */
.audio-modal {
    position: fixed; inset: 0;
    background: rgba(5,5,5,0.96);
    z-index: 9500;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
}
.audio-modal.active { display: flex; }
.audio-modal-inner {
    position: relative;
    width: 90vw;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.audio-modal-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.5rem;
}
.audio-modal-close {
    background: none; border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.audio-modal-close:hover { opacity: 1; }
.audio-modal-content {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    flex: 1;
    min-height: 0;
}
.audio-modal-player-col {
    flex: 0 0 320px;
    position: sticky;
    top: 0;
}
.audio-modal-artwork {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 30px rgba(224,64,251,0.1);
}
.audio-modal-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}
.audio-modal-subtitle {
    color: var(--gray);
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.audio-modal-player-col audio {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    outline: none;
    filter: invert(1) hue-rotate(180deg) brightness(0.85);
}
.audio-modal-transcript-col {
    flex: 1;
    min-width: 0;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.audio-modal-transcript-col::-webkit-scrollbar { width: 4px; }
.audio-modal-transcript-col::-webkit-scrollbar-track { background: transparent; }
.audio-modal-transcript-col::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.audio-modal-transcript-heading {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-line);
}
.audio-modal-disclaimer {
    font-size: 0.72rem;
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.audio-modal-transcript {
    color: var(--gray);
    font-size: 0.82rem;
    line-height: 1.8;
}
.audio-modal-transcript p {
    margin-bottom: 0.8rem;
}
.audio-modal-badge {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--uv-magenta);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .audio-modal { align-items: flex-start; padding-top: 60px; }
    .audio-modal-inner { width: 95vw; max-width: none; max-height: none; }
    .audio-modal-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    .audio-modal-player-col {
        flex: 0 0 auto;
        width: 100%;
        position: static;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }
    .audio-modal-artwork {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin-bottom: 0;
        aspect-ratio: auto;
    }
    .audio-modal-player-info { flex: 1; min-width: 0; }
    .audio-modal-title { font-size: 1rem; }
    .audio-modal-subtitle { font-size: 0.78rem; margin-bottom: 0.5rem; }
    .audio-modal-player-col audio { margin-top: 0.5rem; }
    .audio-modal-transcript-col {
        max-height: none;
        padding-right: 0;
        padding-bottom: 3rem;
    }
}

/* Polaroid slap animation */
.polaroid-slap-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.polaroid-slap-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.polaroid-slap {
    position: fixed;
    z-index: 9999;
    width: 280px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    pointer-events: none;
    opacity: 0;
}
.polaroid-slap.slap {
    opacity: 1;
    pointer-events: all;
    animation: slapIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes slapIn {
    0% { transform: translate(-50%, -50%) scale(2.5) rotate(var(--slap-angle)); opacity: 0; }
    60% { transform: translate(-50%, -50%) scale(0.95) rotate(var(--slap-angle)); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1.03) rotate(var(--slap-angle)); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(var(--slap-angle)); }
}
@media (max-width: 600px) {
    .polaroid-slap { width: 220px; }
}

/* Subscribe polaroid with caption */
.subscribe-polaroid {
    position: fixed;
    z-index: 9999;
    width: 280px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
    pointer-events: none;
    opacity: 0;
}
.subscribe-polaroid img {
    width: 100%;
    display: block;
}
.subscribe-polaroid.slap {
    opacity: 1;
    pointer-events: all;
    animation: slapIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.polaroid-caption {
    position: absolute;
    bottom: 4.5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Permanent Marker', 'Marker Felt', cursive;
    font-size: 1.5rem;
    color: #111;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.02em;
}
@media (max-width: 600px) {
    .subscribe-polaroid { width: 220px; }
    .polaroid-caption { font-size: 1.2rem; }
}
/* ── Custom Eyeball Cursor (desktop only) ── */
@media (pointer: fine) {
    *, *::before, *::after { cursor: none !important; }
    .custom-cursor {
        position: fixed;
        width: 40px; height: 40px;
        pointer-events: none;
        z-index: 99998;
        background: url('/images/misc/eyedrip-cursor.png') center/contain no-repeat;
        transform: translate(-50%, -50%);
        transition: opacity 0.2s, transform 0.15s ease-out;
        will-change: transform, left, top;
        opacity: 0;
    }
    .custom-cursor.visible { opacity: 1; }
    .custom-cursor.hovering {
        transform: translate(-50%, -50%) scale(1.3);
        filter: drop-shadow(0 0 8px rgba(224,64,251,0.5));
    }
}
