@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Sue+Ellen+Francisco&display=swap');

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.2em;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 60px 60px 55px;
}

.logo {
    font-family: 'Sue Ellen Francisco', cursive;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    font-weight: 400;
}

main {
    flex: 1;
    padding: 0 60px;
    max-width: 1200px;
    width: 100%;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.image-container {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 40px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.project-info {
    margin-bottom: 60px;
}

.project-title {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 20px;
}

.project-description {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4em;
}

.project-description p {
    margin-bottom: 10px;
}

.project-description a {
    color: #000;
    text-decoration: underline;
}

footer {
    padding: 20px 60px;
    margin-top: auto;
}

footer a {
    font-size: 11px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.6;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.photo-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

@media (max-width: 809px) {
    header {
        padding: 35px 20px;
    }

    main {
        padding: 0 20px;
    }

    footer {
        padding: 20px 20px;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
}

