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

body {
    background: white;
    color: black;
    font-family: "Times New Roman", Times, serif;
    line-height: 1.5;
}

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

a:visited {
    color: inherit;
}

a:hover {
    opacity: 0.7;
}

/* ---------- Header ---------- */

header {
    padding: 60px;
}

h1 {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 20px;
}

nav {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
}

/* ---------- General Layout ---------- */

section {
    max-width: 1200px;
    margin: auto;
    padding: 60px;
}

/* ---------- Home ---------- */

.hero img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

.photo-credit {
    font-size: 0.85rem;
    color: #666;
    margin-top: 12px;
}

/* ---------- Work Page ---------- */

.project-link {
    display: block;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 0.1rem;
}

.year {
    font-size: 0.95rem;
    color: #666;
}
/* ---------- Project Pages ---------- */

.project-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-description {
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.project-description a {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 3px;
}

.project-description a:hover {
    opacity: 0.6;
}

.project-grid {
    margin-top: 3rem;
}

.project-grid img {
    width: 100%;
    display: block;
    margin-bottom: 80px;
}

/* ---------- Video ---------- */

.video-wrapper {
    margin: 3rem 0;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* ---------- About + Contact ---------- */

.bio {
    max-width: 700px;
    margin: 0 auto;
}

.bio p {
    margin-bottom: 2rem;
}

/* ---------- CV ---------- */

iframe {
    width: 100%;
    height: 1200px;
    border: none;
}

/* ---------- Footer ---------- */

footer {
    padding: 60px;
    font-size: 0.85rem;
    color: #666;
}

/* ---------- Mobile ---------- */

@media (max-width: 800px) {

    header {
        padding: 30px;
    }

    section {
        padding: 30px;
    }

    footer {
        padding: 30px;
    }

    h1 {
        font-size: 3rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero img {
        height: 60vh;
    }
}
```

