/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050a12;
    --bg-secondary: #080e1a;
    --bg-card: #0c1424;
    --bg-glass: rgba(12, 20, 36, 0.6);
    --text-primary: #e8ecf0;
    --text-secondary: #7a8fa8;
    --text-muted: #3d5068;
    --accent: #b8a472;
    --accent-hover: #d4c08e;
    --accent-blue: #4a7fb5;
    --border: #152035;
    --border-glow: rgba(184, 164, 114, 0.2);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: inherit; color: inherit; }

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
}

body:hover .custom-cursor,
body:hover .custom-cursor-dot {
    opacity: 1;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--accent-hover);
    background: rgba(184, 164, 114, 0.05);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-blue));
    z-index: 9998;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(5, 10, 18, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; background: var(--accent); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    position: absolute;
    inset: -5%;
    background: url('images/bg.png') center/cover no-repeat;
    animation: heroZoom 15s ease-in-out infinite alternate;
    filter: brightness(0.4);
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
}

.hero-spotlight {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(184, 164, 114, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(5, 10, 18, 0.3) 0%, rgba(5, 10, 18, 0.85) 100%),
        linear-gradient(to bottom, rgba(5, 10, 18, 0.5) 0%, transparent 30%, transparent 70%, rgba(5, 10, 18, 0.7) 100%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 2px); }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-cta svg { transition: transform var(--transition); }
.hero-cta:hover { background: var(--accent); color: var(--bg-primary); }
.hero-cta:hover svg { transform: translateX(4px); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 8rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.65rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--transition);
}

.filter-btn:hover { color: var(--text-primary); border-color: var(--border); }
.filter-btn.active { color: var(--accent); border-color: var(--accent); background: rgba(184, 164, 114, 0.05); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: none;
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    border-radius: 3px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 164, 114, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 18, 0.9) 0%, rgba(5, 10, 18, 0.3) 30%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
}

.gallery-item-meta {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
}

.gallery-item-hours {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

/* Gallery placeholder */
.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(2, 5, 10, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.lightbox.active .lightbox-content img { opacity: 1; transform: scale(1); }

.lightbox-info { text-align: center; margin-top: 1.5rem; }

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.lightbox-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover { color: var(--text-primary); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 1rem;
}

.lightbox-prev:hover, .lightbox-next:hover { color: var(--text-primary); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-card) 0%, #0f1c32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-radius: 3px;
}

.about-artist-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 3px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    display: block;
}

/* ===== DETAILS SECTION (Glassmorphism) ===== */
.details {
    padding: 8rem 2rem;
}

.details-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.detail-card.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.detail-card.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, var(--border-glow), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.detail-card.glass:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

.detail-card.glass:hover::before { opacity: 1; }

.detail-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.detail-icon svg {
    transition: var(--transition-slow);
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
}

.detail-card:hover .detail-icon svg {
    stroke-dashoffset: 100;
    animation: drawIcon 1s ease forwards;
}

@keyframes drawIcon {
    to { stroke-dashoffset: 0; }
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.detail-card li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-text { margin-bottom: 3rem; }

.contact-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.contact-text p {
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-form { text-align: left; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Floating Labels */
.form-group.floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group.floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    transform-origin: left;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating select:valid ~ label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bg-secondary);
    padding: 0 0.3rem;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 3px;
    transition: var(--transition);
}

.form-group.floating input:focus,
.form-group.floating select:focus,
.form-group.floating textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 164, 114, 0.08);
}

.form-group.floating textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.floating select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a8fa8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 0.5rem;
    border-radius: 3px;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.form-submit svg { transition: transform var(--transition); }
.form-submit:hover svg { transform: translateX(3px) translateY(-2px); }

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeScale 0.6s ease forwards;
}

.form-success.visible { display: block; }

.form-success svg {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .details-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none; }
    .gallery-item, a, button { cursor: pointer; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }

    .nav-links.active { right: 0; }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--accent);
        padding-top: 1.5rem;
    }

    .about-stats { justify-content: center; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-item { aspect-ratio: 1/1.2; }

    .details-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .form-row { grid-template-columns: 1fr; }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lightbox-prev, .lightbox-next { font-size: 2rem; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters { gap: 0.25rem; }
    .filter-btn { padding: 0.5rem 0.8rem; font-size: 0.65rem; }
}

/* ===== ANIMATED GRADIENT BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(5, 10, 18, 1) 0%,
        rgba(8, 14, 26, 1) 25%,
        rgba(12, 18, 32, 1) 50%,
        rgba(8, 14, 26, 1) 75%,
        rgba(5, 10, 18, 1) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== PAGE TRANSITIONS ===== */
body {
    animation: pageEnter 0.6s ease forwards;
}

body.page-leaving {
    animation: pageLeave 0.4s ease forwards;
}

@keyframes pageEnter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pageLeave {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    padding: 8rem 2rem;
}

.videos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}

.video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-card-thumb img,
.video-card-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card:hover .video-card-thumb img,
.video-card:hover .video-card-thumb video {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.video-card:hover .video-card-play {
    background: rgba(0, 0, 0, 0.5);
}

.video-card-play svg {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    min-width: 48px;
    color: #fff;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.video-card-info {
    padding: 1rem 1.25rem;
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.video-card-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    opacity: 0.7;
    transition: 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.video-modal-close:hover { opacity: 1; }

.video-modal-content {
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
}

.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: #000;
    display: block;
}

@media (max-width: 768px) {
    .videos-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .video-card-play svg { width: 40px; height: 40px; }
}
