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

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #000000;
}

nav {
    background-color: #000000;
    padding: 1rem 0 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding-right: 1rem;
}

nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}

nav a:hover,
nav a.active {
    text-decoration: underline;
}

.nav-title {
    color: rgba(255, 255, 255, 1);
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    margin-left: 20px;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    background-color: rgb(1% 5% 9%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: 2rem;
}

h1 {
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 1rem;
    text-transform: uppercase;
}

.home-main {
    max-width: 100%;
    margin: 0;
    background-color: #1a1a1a;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.home-main h1 {
    padding: 2rem;
    margin: 0;
    background-color: #000000;
    border-bottom: 1px solid #333;
    font-family: "Helvetica Neue Thin", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
}

.video-layout {
    min-height: calc(100vh - 150px);
    background-color: #1a1a1a;
}

.top-spacer {
    width: 100%;
    height: 6rem;
    background-color: #000000;
}

.work-table {
    width: 100%;
    border-collapse: collapse;
}

.work-table tr {
    border: none;
}

.video-cell {
    width: 500px;
    background-color: #000000;
    padding: 2rem 5rem;
    vertical-align: bottom;
}

.work-table tr:first-child .video-cell {
    padding-top: 3rem;
}

.video-cell iframe,
.video-cell .video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    display: block;
}

.credit-cell {
    padding: 1rem 3rem;
    vertical-align: bottom;
    padding-bottom: 2rem;
    background-color: rgb(1% 5% 9%);
    padding-left: calc(3rem - 20px);
}

.credit-cell h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.co-editor-line {
    white-space: nowrap;
}

.trailer-line {
    display: inline-block;
}

.about-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.7);
}

.about-text {
    flex: 1;
    background-color: rgb(1% 5% 9%);
    padding: 2rem;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-centered h2 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 0.5rem;
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Helvetica Neue Medium", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.contact-item a {
    color: #808080;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #a0a0a0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #666;
}

.contact-form button {
    background-color: #333;
    color: #e0e0e0;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #444;
}

@media (max-width: 800px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding-right: 1rem;
        align-items: flex-end;
        text-align: right;
    }
    
    .work-table tr {
        display: flex;
        flex-direction: column;
    }
    
    .video-cell {
        width: 100%;
        display: block;
        order: 1;
    }
    
    .credit-cell {
        background-color: #000000;
        width: 100%;
        display: block;
        order: 2;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        flex: 1;
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    main {
        padding: 1rem;
        margin: 1rem;
    }
}

@media (max-width: 450px) {
    .video-cell {
        padding: 1rem 2rem;
    }
    
    .work-table tr:first-child .video-cell {
        padding-top: 2rem;
    }
    
    .credit-cell {
        padding: 1rem 2rem;
        padding-left: calc(2rem - 20px);
    }
}