:root {
    --bg: #0e0e0e;
    --bg-elevated: #161616;
    --fg: #f2f2f2;
    --fg-muted: #999;
    --border: #2a2a2a;
    --accent: #ffffff;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--fg);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.6;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Header ---------- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 1rem;
}

.site-header nav a {
    margin-left: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.site-header nav a.active,
.site-header nav a:hover {
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 3rem;
}

/* ---------- Work / reel grid ---------- */
.work h2,
.about-text h1,
.contact h2 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 3rem;
    text-align: center;
}

.reel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 580px;
    margin: 0 auto;
}

.reel-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1rem;
}

.reel-item .meta {
    color: var(--fg-muted);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.reel-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    overflow: hidden;
}

.reel-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- About page ---------- */
.about-page {
    padding-top: 8rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--bg-elevated);
}

.about-text h1 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--fg);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--fg-muted);
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin: 3rem 0 1.5rem;
}

.credits {
    list-style: none;
}

.credits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.credits .year {
    display: inline-block;
    width: 4rem;
    color: var(--fg-muted);
    font-variant-numeric: tabular-nums;
}

/* ---------- Legal page ---------- */
.legal-page {
    padding-top: 8rem;
    max-width: 820px;
}

.legal-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.legal-intro h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.legal-intro .lead {
    font-size: 1.1rem;
    color: var(--fg);
    margin-bottom: 1.25rem;
    text-align: left;
}

.legal-services h2 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fg-muted);
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--fg);
}

.services-list p {
    color: var(--fg-muted);
    margin: 0;
}

.legal-footer-note {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-footer-note p {
    color: var(--fg-muted);
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 6rem;
    }
}

/* ---------- Contact ---------- */
.contact {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact h2 {
    text-align: center;
}

.contact-email {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    margin: 1.5rem 0 2.5rem;
    letter-spacing: 0.02em;
}

.contact-email a {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
}

.socials {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.socials a {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-muted);
}

/* ---------- Footer ---------- */
.site-footer {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .site-header {
        padding: 1.25rem 1.5rem;
    }

    .site-header nav a {
        margin-left: 1.25rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .reel-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-page {
        padding-top: 6rem;
    }

    .socials {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}
