* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f2ee;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: #2c2a2a;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

/* Filter Buttons */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #2a2a2a;
    border-color: #fff;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Dark Zone */
.dark-zone {
    background: #2c2a2a;
    padding-bottom: 5rem;
}

/* Video Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #1e1e1e;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.video-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.video-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-item.visible:hover {
    transform: translateY(-6px);
}

.statement {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.statement.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-clickable-area {
    position: absolute;
    inset: 0;
    z-index: 100;
    cursor: pointer;
}

/* Translucent play-arrow overlay on hover */
.video-clickable-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.video-clickable-area::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%) scale(0.85);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.video-item:hover .video-clickable-area::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-item:hover .video-clickable-area::after {
    opacity: 1;
    transform: translate(-35%, -50%) scale(1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.video-thumbnail.faded {
    opacity: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    pointer-events: none;
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.video-item:hover .play-icon {
    opacity: 1;
    transform: scale(1);
}

.play-icon::after {
    content: '▶';
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.video-item:hover .video-title {
    opacity: 1;
    transform: translateY(0);
}

.video-title h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.video-title p {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 400;
}

/* Artist Statement */
.statement {
    padding: 5rem 2rem;
    background: #f5f2ee;
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fdfcfb;
    padding: 3.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
}

.statement-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.statement-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #333;
}

/* Footer */
footer {
    background: #d1cfcf;
    color: #1a1a1a;
    padding: 1rem 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: end;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

footer p {
    margin-bottom: 0.3rem;
}

.contact-info {
    margin-bottom: 0;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-bottom: 0.3rem;
}

.footer-right {
    align-self: center;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav ul.open {
        right: 0;
    }

    nav a {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filters {
        gap: 0.7rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 1300px;
    height: 93vh;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.7;
}

/* Studio Section */
.studio {
    padding: 5rem 2rem;
    background: #cdcbcb;
}

.studio-content {
    max-width: 1200px;
    margin: 0 auto;
}

.studio-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.photo-credit {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.45);
    font-style: italic;
}

/* Studio text block */
.studio-text {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    background: #fdfcfb;
    padding: 3.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
}

.studio-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #333;
}

.studio-text p:last-child {
    margin-bottom: 0;
}

/* Studio Viewer: Hero + Thumbstrip */
.studio-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.studio-hero {
    width: calc(140px * 7 + 0.75rem * 6);
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.studio-hero img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
}

/* Horizontal thumbnail strip */
.studio-thumbstrip {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.studio-thumbstrip::-webkit-scrollbar {
    height: 5px;
}

.studio-thumbstrip::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.studio-thumbstrip::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.thumb-item {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.thumb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    opacity: 0.85;
}

.thumb-item.active {
    opacity: 1;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .thumb-item {
        width: 110px;
        height: 80px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-item {
    animation: fadeIn 0.6s ease forwards;
}

.video-item:nth-child(1) { animation-delay: 0.1s; }
.video-item:nth-child(2) { animation-delay: 0.2s; }
.video-item:nth-child(3) { animation-delay: 0.3s; }
.video-item:nth-child(4) { animation-delay: 0.4s; }
.video-item:nth-child(5) { animation-delay: 0.5s; }
.video-item:nth-child(6) { animation-delay: 0.6s; }
