/* Custom Fonts */
@font-face {
    font-family: 'Adult Swim';
    src: url('fonts/Adult Swim.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ITC Machine';
    src: url('fonts/ITC Machine Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Greater Theory';
    src: url('fonts/GreaterTheory.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Goolamodern';
    src: url('images/goolamodern-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/InterVariable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/InterVariable-Italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --spacing-unit: 1rem;
    --bg-light: #f5f5f7;
    --bg-dark: #0a0a0a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

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

/* Navigation */
nav {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    text-decoration: none;
}

.logo-mark {
    display: inline-flex;
    align-items: baseline;
    line-height: 0.8;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    color: white;
}

.logo-mark .dotwrap {
    display: inline-block;
    position: relative;
    width: 0.34em;
}

.logo-mark .dot {
    position: absolute;
    left: 50%;
    bottom: 0.199em;
    width: 0.16em;
    height: 0.16em;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Adult Swim', sans-serif;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-dot {
    color: white;
    opacity: 0.5;
    user-select: none;
}

.nav-divider {
    width: 2px;
    height: 20px;
    background-color: white;
    opacity: 0.3;
    margin: 0 0.5rem;
}

/* Mobile Menu Toggle (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Dropdown (hidden on desktop) */
.mobile-dropdown {
    display: none;
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    color: white;
    min-height: 100vh;
    text-align: left;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.92);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.05) 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 8vh;
}

.hero-name {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 1s ease forwards 0.2s;
}

.hero-role {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 1s ease forwards 0.45s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-name,
    .hero-role {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Hero — film-wall grid variant */
.hero--grid {
    display: block;
    min-height: 0;
    background-color: #15130f;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
        "a b c"
        "d e f"
        "w w m";
    gap: 5px;
    width: 100%;
    min-height: 100vh;
    background: #15130f;
}

.hero-grid__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(1) contrast(1.06) brightness(0.94);
}

.hero-grid__img:nth-of-type(1) { grid-area: a; }
.hero-grid__img:nth-of-type(2) { grid-area: b; }
.hero-grid__img:nth-of-type(3) { grid-area: c; }
.hero-grid__img:nth-of-type(4) { grid-area: d; }
.hero-grid__img:nth-of-type(5) { grid-area: e; }
.hero-grid__img:nth-of-type(6) { grid-area: f; }

.hero-grid__word {
    grid-area: w;
    background: #f8f7f4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2.5vw 3vw;
}

.hero-grid__the {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-size: clamp(0.9rem, 1.9vw, 1.8rem);
    color: #15130f;
    margin-left: 0.13em;
}

.hero-grid__name {
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5.2vw, 6.5rem);
    line-height: 0.84;
    letter-spacing: -0.022em;
    color: #15130f;
    margin-top: 0.09em;
}

.hero-grid__co {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-size: clamp(1.05rem, 2.1vw, 2.4rem);
    color: #15130f;
    align-self: flex-end;
    margin-top: 0.22em;
    margin-right: 0.22em;
}

.hero-grid__mark {
    grid-area: m;
    background: #15130f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid__am {
    display: inline-flex;
    align-items: baseline;
    line-height: 0.8;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.6vw, 4.2rem);
    letter-spacing: -0.02em;
    color: #f8f7f4;
}

.hero-grid__dotwrap {
    display: inline-block;
    position: relative;
    width: 0.34em;
}

.hero-grid__dot {
    position: absolute;
    left: 50%;
    bottom: 0.199em;
    width: 0.14em;
    height: 0.14em;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

@media (max-width: 700px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto) auto auto;
        grid-template-areas:
            "a b"
            "c d"
            "e f"
            "w w"
            "m m";
        min-height: 0;
        gap: 4px;
    }

    .hero-grid__img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .hero-grid__word {
        padding: 8vw 7vw;
    }

    .hero-grid__mark {
        padding: 6vw 0;
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-left: 15.6vw;
    color: var(--accent-color);
    font-family: 'ITC Machine', sans-serif;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-left: 15.6vw;
    opacity: 0.9;
    font-family: 'ITC Machine', sans-serif;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin-left: 15.6vw;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 10;
    margin-bottom: 5vh;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Intro strip — name/role and portrait slide in from either side on scroll */
.intro-section {
    background-color: #15130f;
    padding: 7rem 0;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.intro-copy,
.intro-portrait {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-copy {
    transform: translateX(-60px);
}

.intro-portrait {
    transform: translateX(60px);
}

.intro-section.is-visible .intro-copy,
.intro-section.is-visible .intro-portrait {
    opacity: 1;
    transform: translateX(0);
}

.intro-name {
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: #f8f7f4;
    margin-bottom: 0.85rem;
}

.intro-role {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 247, 244, 0.75);
}

.intro-portrait__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.intro-portrait__placeholder {
    aspect-ratio: 4 / 5;
    max-width: 360px;
    margin-left: auto;
    border: 1px dashed rgba(248, 247, 244, 0.3);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(248, 247, 244, 0.4);
}

.intro-portrait__placeholder svg {
    width: 48px;
    height: 48px;
}

.intro-portrait__placeholder span {
    font-family: 'Adult Swim', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
    .intro-copy,
    .intro-portrait {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 700px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .intro-portrait__placeholder {
        margin: 0 auto;
    }
}

/* Work Section */
.work-section {
    padding: 4rem 0 6rem;
    background-color: var(--bg-light);
}

.work-section > .container > h2 {
    font-size: 2.4rem;
    margin: 0 auto 3rem;
    width: fit-content;
    text-align: center;
    color: #f8f7f4;
    background: #6b4a1e;
    padding: 0.55rem 1.75rem;
    border-radius: 8px;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.work-section > .container > h3 {
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    width: fit-content;
    text-align: center;
    color: var(--primary-color);
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.featured-film {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.75rem;
    align-items: start;
}

.featured-film h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #1a1a1a;
}

.featured-film__body {
    min-width: 0;
}

/* Featured film media (left column) */
.featured-film__media {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.featured-film__media .film-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.4s ease;
}

.featured-film__media:hover .film-thumbnail {
    transform: scale(1.03);
}

.featured-film__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.featured-film__media:hover .featured-film__play {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.08);
}

.featured-film__play svg {
    width: 26px;
    height: 26px;
    color: #fff;
    margin-left: 3px;
}

.film-thumbnail {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.film-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-film .film-description {
    font-size: 1rem;
    -webkit-line-clamp: 5;
    line-clamp: 5;
}

/* Clean media links */
.film-links {
    display: flex;
    gap: 1.75rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.film-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Adult Swim', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.film-link svg {
    width: 18px;
    height: 18px;
}

.film-link:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 768px) {
    .featured-film {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .featured-film h3 {
        font-size: 1.3rem;
    }
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 1.5rem 0;
}

/* Content Warning */
.content-warning {
    background: transparent;
    border-left: 2px solid #6b4a1e;
    padding: 0.6rem 1.1rem;
    margin-bottom: 2rem;
    border-radius: 0;
}

.content-warning p {
    margin: 0;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
}

.content-warning p strong {
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #6b4a1e;
}

/* Films Grid */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.film-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.film-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.film-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.film-meta {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.film-card .film-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.film-card .film-link {
    margin-top: auto;
}

/* Page Header */
.page-header {
    background-color: var(--bg-dark);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'ITC Machine', sans-serif;
    font-weight: normal;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-family: 'ITC Machine', sans-serif;
    font-weight: normal;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.intro-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.intro-box p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

.intro-box p:last-child {
    margin-bottom: 0;
}

.content-text {
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.content-text p {
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

/* Camera Showcase */
.camera-showcase {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.camera-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.camera-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.camera-details h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Adult Swim', sans-serif;
    font-weight: normal;
}

.camera-details p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.specs {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.specs h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Adult Swim', sans-serif;
    font-weight: normal;
}

.specs ul {
    list-style: none;
    padding: 0;
}

.specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

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

.secondary-camera {
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.equipment-note {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 1.5rem;
    font-family: 'Adult Swim', sans-serif;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link .cta-button {
    font-family: 'Adult Swim', sans-serif;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 2.5rem 0;
    padding-left: 2.25rem;
    border-left: 2px solid var(--border-color);
}

.timeline-entry {
    position: relative;
}

.timeline-entry + .timeline-entry {
    margin-top: 4rem;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: calc(-2.25rem - 5px);
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid var(--bg-light);
}

.timeline-date {
    font-family: 'ITC Garamond', 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-weight: normal;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-family: 'ITC Garamond', 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-weight: normal;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.about-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-content .lead-quote {
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-size: 1.7rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.skills-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
}

.skills-section h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'EB Garamond', Garamond, 'Times New Roman', serif;
    font-weight: 600;
}

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.skills-list li {
    padding: 0.75rem;
    background-color: #000000;
    color: white;
    border-radius: 4px;
    font-family: 'ITC Machine', sans-serif;
    font-weight: normal;
    text-align: center;
}

/* Connect Section */
.connect-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    color: white;
    text-align: center;
}

.connect-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.connect-section > .container > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.connect-section .film-link {
    color: #fff;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1250px) {
    /* Mobile Navigation */
    nav .container {
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-links {
        display: none;
    }

    /* Show mobile dropdown */
    .mobile-dropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--primary-color);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        z-index: 1000;
        min-width: 200px;
    }

    .mobile-dropdown.active {
        display: flex;
    }

    .mobile-dropdown a {
        color: white;
        text-decoration: none;
        padding: 0.75rem 1rem;
        font-family: 'Adult Swim', sans-serif;
        font-size: 0.95rem;
        transition: background-color 0.3s ease;
        border-radius: 4px;
    }

    .mobile-dropdown a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        margin-bottom: 3vh;
    }

    .nav-links {
        gap: 1rem;
    }

    .work-section h2,
    .about-section h2,
    .connect-section h2 {
        font-size: 2rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 0.8rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 2vh;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Phone-only: shorter viewport so the sections below get to the fold sooner */
@media (max-width: 600px) {
    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-bottom: 10vh;
    }
}
