:root {
    --bg: #0d0d0d;
    --surface: #161616;
    --text: #f3f3f3;
    --muted: #9c9c9c;
    --border: #292929;
    --accent: #ffffff;

    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

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


/* ------------------------------
   GLOBAL LAYOUT
------------------------------ */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.section-subtitle {
    margin-top: 10px;
    color: var(--muted);
    max-width: 650px;
}


/* ------------------------------
   HEADER
------------------------------ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.nav {
    height: 72px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    padding: 140px 0 90px;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.38) 45%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        url("assets/site/home-hero.png");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}

.hero-content {
    position: relative;
    z-index: 1;

    padding-bottom: 20px;
}

.hero-eyebrow {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-title {
    margin: 0;

    max-width: 900px;

    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;

    font-weight: 600;
    letter-spacing: -0.055em;
}

.hero-description {
    margin-top: 28px;

    max-width: 560px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 1rem;
    line-height: 1.6;
}


/* ------------------------------
   VIDEO
------------------------------ */

.video-wrapper {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;
    border-radius: 4px;
}

.video-wrapper iframe {
    position: absolute;

    inset: 0;
    width: 100%;
    height: 100%;

    border: 0;
}


/* ------------------------------
   PORTFOLIO GRID
------------------------------ */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
}

.portfolio-page {
    padding-top: 160px;
}

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

.project-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.project-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
}

.project-type {
    color: var(--muted);
    font-size: 0.9rem;
}


/* ------------------------------
   PHOTOGRAPHY
------------------------------ */

.photography-page {
    padding-top: 160px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.photo-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 3px;
}

.photo-item img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.photo-item img:hover {
    transform: scale(1.02);
    opacity: 0.92;
}


/* ------------------------------
   PHOTO LIGHTBOX
------------------------------ */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 90px;

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);

    user-select: none;
}

.lightbox-nav {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 60px;
    height: 80px;

    border: 0;

    background: transparent;
    color: white;

    font-size: 3rem;

    cursor: pointer;

    opacity: 0.65;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.lightbox-nav:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


/* Prevent page scrolling while lightbox is open */

body.lightbox-open {
    overflow: hidden;
}


/* MOBILE */

@media (max-width: 700px) {

    .lightbox {
        padding: 30px 50px;
    }

    .lightbox-image {
        max-width: 92vw;
        max-height: 85vh;
    }

    .lightbox-nav {
        width: 45px;
        height: 70px;

        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 4px;
    }

    .lightbox-next {
        right: 4px;
    }

}

/* ------------------------------
   BUTTONS / LINKS
------------------------------ */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 35px;

    font-size: 1rem;
    font-weight: 500;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}


/* ------------------------------
   ABOUT HERO
------------------------------ */

.about-hero {
    position: relative;

    min-height: 68vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    padding: 140px 0 80px;
}

.about-hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.48) 55%,
            rgba(0, 0, 0, 0.58) 100%
        ),
        url("assets/site/home-hero.png");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    margin: 0;

    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;

    font-weight: 600;
    letter-spacing: -0.055em;
}


/* ------------------------------
   ABOUT INTRO
------------------------------ */

.about-intro {
    padding: 120px 0 140px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 420px);
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
}

.about-bio {
    max-width: none;
    margin: 0;
}

.about-quote {
    margin: 0;
    max-width: 760px;

    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    line-height: 1.14;

    font-weight: 400;
    letter-spacing: -0.035em;
}

.about-quote-author {
    margin-top: 22px;

    color: var(--muted);

    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.about-bio-copy {
    margin-top: 60px;
    max-width: 650px;
}

.about-bio-copy p {
    margin: 0 0 24px;

    color: #b8b8b8;

    font-size: 1.05rem;
    line-height: 1.8;
}

.about-bio-copy p:last-child {
    margin-bottom: 0;
}

.about-headshot {
    width: 100%;
}

.about-headshot img {
    width: 100%;
    display: block;

    aspect-ratio: 4 / 5;
    object-fit: cover;

    border-radius: 4px;
}


/* ------------------------------
   AREAS OF WORK
------------------------------ */

.about-work {
    padding: 0 0 120px;
}

.about-section-heading {
    padding: 22px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: var(--muted);

    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-work-item {
    min-height: 320px;

    padding: 40px 35px 40px 0;
}

.about-work-item + .about-work-item {
    padding-left: 35px;

    border-left: 1px solid var(--border);
}

.about-work-number {
    color: var(--muted);

    font-size: 0.8rem;
}

.about-work-item h2 {
    margin: 50px 0 18px;

    font-size: 1.6rem;
    font-weight: 500;

    letter-spacing: -0.025em;
}

.about-work-item p {
    margin: 0;

    max-width: 340px;

    color: var(--muted);

    line-height: 1.65;
}


/* ------------------------------
   ABOUT CONTACT
------------------------------ */

.about-contact {
    padding: 100px 0;

    background: var(--surface);

    border-top: 1px solid var(--border);
}

.about-contact-inner {
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: end;
}

.about-contact-label {
    display: block;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-contact h2 {
    margin: 0;

    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95;

    font-weight: 500;
    letter-spacing: -0.05em;
}

.about-contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
}

.about-email {
    font-size: clamp(1.3rem, 2.2vw, 2rem);

    border-bottom: 1px solid var(--muted);

    padding-bottom: 5px;

    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.about-email:hover {
    color: var(--muted);
    border-color: var(--text);
}

.about-socials {
    display: flex;
    gap: 28px;

    color: var(--muted);
}

.about-socials a:hover {
    color: var(--text);
}


/* ------------------------------
   FOOTER
------------------------------ */

footer {
    padding: 28px 0;

    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-inner {
    min-height: 44px;

    display: flex;
    align-items: center;

    font-size: 0.9rem;
    line-height: 1.4;
}


/* ------------------------------
   ABOUT MOBILE
------------------------------ */

@media (max-width: 800px) {

    .about-hero {
        min-height: 60vh;
    }

    .about-intro {
        padding: 80px 0;
    }

    .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    }

    .about-headshot {
    max-width: 420px;
    }
    
    .about-work-grid {
        grid-template-columns: 1fr;
    }

    .about-work-item {
        min-height: auto;

        padding: 35px 0;
    }

    .about-work-item + .about-work-item {
        padding-left: 0;

        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .about-work-item h2 {
        margin-top: 30px;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 550px) {

    /* HEADER */

    .nav {
        height: 64px;
    }

    .logo {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .nav-links {
        gap: 14px;
        font-size: 0.78rem;
    }


    /* GENERAL */

    .container {
        width: 92%;
    }

    .section {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }


    /* HOME HERO */

    .hero {
        min-height: 82vh;

        padding:
            110px 0
            55px;
    }

    .hero-eyebrow {
        margin-bottom: 14px;

        font-size: 0.72rem;
        line-height: 1.5;

        letter-spacing: 0.12em;
    }

    .hero-title {
        font-size: 3.7rem;
        line-height: 0.92;

        letter-spacing: -0.05em;
    }

    .hero-description {
        margin-top: 24px;

        max-width: 330px;

        font-size: 0.9rem;
        line-height: 1.65;
    }


    /* VIDEO WORK */

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .project {
        gap: 10px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-type {
        font-size: 0.8rem;
    }

    .portfolio-page {
    padding-top: 105px;
}


    /* PHOTOGRAPHY */

    .photography-page {
        padding-top: 105px;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .photo-item {
        border-radius: 2px;
    }


    /* ABOUT HERO */

    .about-hero {
        min-height: 62vh;

        padding:
            110px 0
            55px;
    }

    .about-hero-title {
        font-size: 3rem;
        line-height: 0.92;

        letter-spacing: -0.045em;
    }


    /* ABOUT INTRO */

    .about-intro {
        padding: 65px 0 80px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-quote {
        max-width: 100%;

        font-size: 1.65rem;
        line-height: 1.18;

        letter-spacing: -0.025em;
    }

    .about-quote-author {
        margin-top: 18px;

        font-size: 0.8rem;
    }

    .about-bio-copy {
        margin-top: 48px;
    }

    .about-bio-copy p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .about-headshot {
        max-width: 100%;
    }


    /* AREAS OF WORK */

    .about-work {
        padding-bottom: 80px;
    }

    .about-section-heading {
        padding: 18px 0;

        font-size: 0.72rem;
    }

    .about-work-item {
        padding: 28px 0;
    }

    .about-work-item h2 {
        margin-top: 24px;

        font-size: 1.25rem;
    }

    .about-work-item p {
        font-size: 0.9rem;
        line-height: 1.65;
    }


    /* CONTACT */

    .about-contact {
        padding: 70px 0;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-contact h2 {
        font-size: 2.5rem;
        line-height: 0.98;
    }

    .about-email {
        font-size: 1.15rem;
    }


    /* FOOTER */

    footer {
        padding: 24px 0;
    }

    .footer-inner {
        min-height: 36px;

        font-size: 0.75rem;
    }
}