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

body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

header h1 {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #1a1a1a;
}

nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #f5f5f5;
}

.about {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
    text-align: center;
}

.about h2 {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1rem;
}

.gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.gallery h2 {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 3 / 2;
    background: #151515;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s;
}

.gallery-item:hover {
    border-color: #333;
}

.gallery-item:has(img) {
    cursor: pointer;
}

.gallery-item:has(img):hover img {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item .placeholder {
    color: #333;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.divider {
    width: 40px;
    height: 1px;
    background: #333;
    margin: 0 auto 3rem;
}

.socials {
    padding: 2rem 2rem 4rem;
    text-align: center;
}

.socials h2 {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
}

.socials-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.socials-links a {
    color: #777;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.socials-links a:hover {
    color: #f5f5f5;
}

.icon-ig {
    width: 28px;
    height: 28px;
}

.socials-label {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #999;
    transition: color 0.3s;
}

.socials-links a:hover .socials-label {
    color: #f5f5f5;
}

.socials-handle {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.lightbox.active {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    pointer-events: auto;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s;
    opacity: 0;
    z-index: 1001;
}

.lightbox.active .lightbox-close {
    opacity: 1;
    transition:
        color 0.3s,
        opacity 0.3s 0.2s;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

footer {
    border-top: 1px solid #1a1a1a;
    padding: 2.5rem 2rem;
    text-align: center;
}

footer p {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.1em;
}

footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #f5f5f5;
}

@media (max-width: 820px) {
    header {
        padding: 2rem 1.5rem 1.5rem;
    }

    nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .about {
        padding: 1.5rem 1.5rem 3rem;
    }

    .gallery {
        padding: 0 1rem 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
