/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f3f0e9;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   GLOBAL
===================================================== */

:root {
    --black: #111;
    --dark: #181818;
    --cream: #f3f0e9;
    --white: #fff;
    --grey: #777;
    --border: #d8d3ca;
    --max: 1450px;
}

.container {
    width: min(92%, var(--max));
    margin: auto;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h2 {
    font-size: clamp(50px, 7vw, 105px);
    line-height: .9;
}

i {
    font-style: italic;
}

.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 65px;
}

.section-top > p {
    max-width: 400px;
    color: var(--grey);
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;

    color: white;

    transition: .4s;
}

.header.scrolled {
    background: rgba(17,17,17,.96);
    backdrop-filter: blur(12px);
}

.nav-wrapper {
    width: min(94%, 1550px);
    height: 90px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,.8);

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Georgia, serif;
    font-size: 21px;
}

.logo-text strong {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
}

.logo-text span {
    display: block;
    font-size: 8px;
    letter-spacing: 4px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    position: relative;
}

.navigation a::after {
    content: "";

    position: absolute;
    bottom: -8px;
    left: 0;

    width: 0;
    height: 1px;

    background: white;

    transition: .3s;
}

.navigation a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;

    border: 0;
    background: transparent;

    color: white;
    font-size: 28px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    height: 100vh;
    min-height: 700px;

    position: relative;

    color: white;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("images/hero.jpg")
        center / cover no-repeat;

    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.18)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(92%, var(--max));
    margin: auto;
}

.hero-small {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(65px, 10vw, 155px);
    line-height: .82;
    letter-spacing: -6px;

    margin-bottom: 35px;
}

.hero-content > p {
    max-width: 480px;
    color: rgba(255,255,255,.8);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.button {
    padding: 15px 24px;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: .3s;
}

.button-white {
    background: white;
    color: black;
}

.button-white:hover {
    background: #ddd;
}

.button-border {
    border: 1px solid rgba(255,255,255,.7);
}

.button-border:hover {
    background: white;
    color: black;
}

.hero-scroll {
    position: absolute;

    bottom: 35px;
    right: 4%;

    font-size: 8px;
    letter-spacing: 3px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    width: 45px;
    height: 1px;
    background: white;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    padding: 110px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.5fr;
    gap: 80px;
}

.intro h2 {
    margin-bottom: 35px;
}

.intro p {
    max-width: 700px;
    color: var(--grey);

    margin-bottom: 20px;
}


/* =====================================================
   ALBUMS
===================================================== */

.albums-section {
    padding: 100px 0 140px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.album-card {
    position: relative;
    overflow: hidden;
    height: 550px;

    cursor: pointer;
}

.album-card:nth-child(2),
.album-card:nth-child(5) {
    margin-top: 70px;
}

.album-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s ease,
        filter .8s ease;
}

.album-card:hover img {
    transform: scale(1.06);
    filter: brightness(.6);
}

.album-overlay {
    position: absolute;
    inset: 0;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: white;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,.75)
        );
}

.album-overlay span {
    font-size: 10px;
    letter-spacing: 3px;
}

.album-overlay h3 {
    font-size: 42px;
    margin: 5px 0;
}

.album-overlay p {
    color: #ddd;
    font-size: 12px;
}

.album-overlay button {
    width: fit-content;

    background: transparent;
    border: 0;

    color: white;

    margin-top: 15px;

    font-size: 10px;
    letter-spacing: 2px;

    cursor: pointer;
}


/* =====================================================
   PHOTOGRAPHY
===================================================== */

.photography-section {
    background: #e9e5dd;

    padding: 130px 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 45px;
}

.filter {
    background: transparent;

    border: 1px solid #c9c3b9;

    padding: 11px 18px;

    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition: .3s;
}

.filter:hover,
.filter.active {
    background: #111;
    color: white;
    border-color: #111;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    cursor: pointer;

    aspect-ratio: 4 / 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(.65);
}

.gallery-item span {
    position: absolute;

    bottom: 20px;
    left: 20px;

    color: white;

    font-family: Georgia, serif;
    font-size: 25px;

    opacity: 0;

    transform: translateY(15px);

    transition: .4s;
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.hidden {
    display: none;
}


/* =====================================================
   STATEMENT
===================================================== */

.statement {
    background: #111;
    color: white;

    padding: 170px 0;
}

.statement h2 {
    font-size: clamp(55px, 8vw, 125px);
}


/* =====================================================
   VIDEO
===================================================== */

.video-section {
    padding: 140px 0;
}

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 70px 25px;
}

.video-card video {
    width: 100%;
    display: block;

    background: black;
}

.video-card h3 {
    font-size: 30px;
    margin-top: 20px;
}

.video-card p {
    color: var(--grey);
    margin-top: 5px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 140px 0;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}

.about-photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 35px;
}

.about-text p {
    color: var(--grey);
    max-width: 600px;

    margin-bottom: 20px;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    font-size: 10px;
    letter-spacing: 2px;

    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    background: #e8e3da;

    padding: 140px 0;
}

.services-section > .container > h2 {
    margin-bottom: 70px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid var(--border);
}

.service {
    min-height: 280px;

    padding: 40px 30px 40px 0;

    border-bottom: 1px solid var(--border);
}

.service:nth-child(3n + 2),
.service:nth-child(3n + 3) {
    padding-left: 30px;

    border-left: 1px solid var(--border);
}

.service small {
    color: var(--grey);
    letter-spacing: 2px;
}

.service h3 {
    font-size: 29px;
    margin: 25px 0 15px;
}

.service p {
    color: var(--grey);
    max-width: 330px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: #111;
    color: white;

    padding: 150px 0;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    margin-bottom: 30px;
}

.contact-content > p {
    color: #999;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 70px;
}

.contact-grid a {
    padding: 35px 20px;

    border: 1px solid #333;

    transition: .3s;
}

.contact-grid a:hover {
    background: #1d1d1d;
}

.contact-grid small {
    display: block;

    color: #777;

    font-size: 9px;
    letter-spacing: 2px;

    margin-bottom: 10px;
}

.contact-grid strong {
    font-size: 14px;
    font-weight: 400;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #090909;
    color: white;

    padding: 35px 0;
}

.footer-inner {
    width: min(92%, var(--max));
    margin: auto;

    display: flex;
    justify-content: space-between;

    gap: 30px;
}

.footer-inner strong {
    font-size: 10px;
    letter-spacing: 2px;
}

.footer-inner p {
    color: #666;
    font-size: 10px;
    margin-top: 5px;
}

.footer-inner > div:last-child {
    color: #666;
    font-size: 10px;
}


/* =====================================================
   ALBUM MODAL
===================================================== */

.album-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    background: #f3f0e9;

    overflow-y: auto;

    display: none;
}

.album-modal.active {
    display: block;
}

.modal-close {
    position: fixed;

    top: 20px;
    right: 30px;

    z-index: 2100;

    width: 50px;
    height: 50px;

    border: 0;

    background: #111;
    color: white;

    border-radius: 50%;

    font-size: 30px;

    cursor: pointer;
}

.modal-content {
    width: min(92%, 1400px);

    margin: auto;

    padding: 100px 0;
}

.modal-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 40px;

    margin-bottom: 60px;
}

.modal-header p {
    max-width: 350px;
    color: var(--grey);
}

.album-gallery {
    columns: 3 300px;
    column-gap: 18px;
}

.album-gallery img {
    width: 100%;

    margin-bottom: 18px;

    cursor: pointer;

    break-inside: avoid;

    transition: .3s;
}

.album-gallery img:hover {
    opacity: .8;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 3000;

    background: rgba(0,0,0,.96);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    width: auto;
    max-width: 94vw;
    max-height: 92vh;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 30px;

    border: 0;
    background: none;

    color: white;

    font-size: 48px;

    cursor: pointer;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .navigation {
        position: fixed;

        top: 90px;
        left: 0;

        width: 100%;

        padding: 35px;

        background: #111;

        flex-direction: column;
        align-items: flex-start;

        transform: translateY(-150%);

        transition: .4s;
    }

    .navigation.active {
        transform: translateY(0);
    }

    .menu-button {
        display: block;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service:nth-child(3n + 2),
    .service:nth-child(3n + 3) {
        padding-left: 0;
        border-left: 0;
    }

    .service:nth-child(even) {
        padding-left: 30px;
        border-left: 1px solid var(--border);
    }

}


@media (max-width: 700px) {

    .nav-wrapper {
        height: 75px;
    }

    .navigation {
        top: 75px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .section-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .album-grid {
        grid-template-columns: 1fr;
    }

    .album-card,
    .album-card:nth-child(2),
    .album-card:nth-child(5) {
        height: 500px;
        margin-top: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service,
    .service:nth-child(even) {
        padding: 35px 0;
        border-left: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .modal-header {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 450px) {

    .logo-text strong {
        font-size: 8px;
    }

    .logo-text span {
        font-size: 6px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
    }

    .hero h1 {
        font-size: 57px;
    }

    h2 {
        font-size: 48px;
    }

}