@font-face {
    font-family: "OldStyle";
    src: url("OLDSH___.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("Poppins-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --burgundy: #550000;
    --off-white: #fbfcf8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--burgundy);
    color: var(--off-white);
    display: flex;
    flex-direction: column;
}

h1,
h2 {
    margin: 0;
    font-family: "OldStyle", serif;
    font-weight: normal;
    text-transform: lowercase;
    font-style: normal;
    text-decoration: none;
}

p,
a,
button {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

p {
    margin: 0;
}

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


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

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


/* TOP LINKS */

.top-links {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 10;
    display: flex;
    gap: 22px;
}

.top-links a {
    font-size: 17px;
    color: var(--off-white);
    transition: opacity 0.2s ease;
}

.top-links a:hover {
    opacity: 0.45;
}


/* LOGO */

.hero-logo {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 82px;
    height: auto;
    z-index: 5;
}


/* HERO TITLE */

.hero-title-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: min(1200px, calc(100% - 64px));
    text-align: center;
}

.hero-title {
    font-family: "OldStyle", serif;
    font-size: 90px;
    line-height: 0.9;
}

.hero-services {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.3;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    text-align: center;
}

.intro-inner {
    width: min(720px, 100%);
}

.intro-inner h2 {
    font-family: "OldStyle", serif;
    font-size: 43px;
    line-height: 1;
    margin-bottom: 28px;
}

.intro-inner p {
    width: min(540px, 100%);
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   SELECTED WORK
   ========================================================= */

.selected-work {
    padding: 0 32px 190px;
}

.section-label {
    font-size: 31px;
    line-height: 1;
}

.selected-work .section-label {
    margin-bottom: 40px;
}

.work-grid {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 190px;
}


/* =========================================================
   STANDARD PROJECTS
   ========================================================= */

.work-item {
    width: 100%;
}


/* =========================================================
   BLUE VELVET
   ========================================================= */

.work-item:nth-child(1) {
    width: 100%;
}


/* =========================================================
   RPM
   ========================================================= */

.work-item:nth-child(2) {
    width: 100%;
    margin-top: 0;
}


/* =========================================================
   NORMAL VIDEOS
   ========================================================= */

.work-placeholder {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
}

.work-placeholder video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   WORK TEXT
   ========================================================= */

.work-subtitle {
    margin-top: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    line-height: 1.1;
}

.work-description {
    width: 42ch;
    max-width: 100%;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================================
   PIPE MASTERS
   ========================================================= */

.portrait-video-project {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
    gap: 40px;
    align-items: end;
}

.portrait-video-media {
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: end;
}

.portrait-video-media video {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.portrait-video-copy {
    width: 100%;
    align-self: end;
    padding-bottom: 4px;
}

.portrait-video-copy .work-subtitle {
    margin-top: 0;
}

.portrait-video-copy .work-description {
    margin-top: 22px;
}


/* =========================================================
   LUMI LOUNGE
   ========================================================= */

.portrait-photo-project {
    width: 100%;
}

.portrait-photo-media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    align-items: start;
}

.portrait-photo-media img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   LITTLE GUY
   ========================================================= */

.little-guy-project {
    width: 100%;
}

.little-guy-media {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
}

.little-guy-media video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   BEENZ
   ========================================================= */

.portrait-project {
    width: 100%;
}

.portrait-project-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    align-items: start;
}

.portrait-project-media img {
    display: block;
    width: 100%;
    height: auto;
}

.portrait-project-media img:nth-child(3) {
    grid-column: 1 / -1;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.instagram {
    padding: 0 32px 190px;
    text-align: center;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-caption {
    font-family: "OldStyle", serif;
    margin-bottom: 24px;
    font-size: 43px;
    line-height: 1;
}

.instagram-subheading {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.5;
}

.instagram a {
    font-size: 17px;
    transition: opacity 0.2s ease;
}

.instagram a:hover {
    opacity: 0.45;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-signoff {
    width: min(1550px, calc(100% - 64px));
    margin: auto auto 30px;
    font-size: 16px;
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1099px) and (min-width: 701px) {

    .hero-title {
        font-size: 72px;
    }

    .intro {
        min-height: 68vh;
    }

    .selected-work {
        padding: 0 28px 170px;
    }

    .work-grid {
        gap: 170px;
    }

    .portrait-video-project {
        grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
        gap: 30px;
    }

    .portrait-photo-media {
        gap: 12px;
    }

    .portrait-project-media {
        gap: 12px;
    }

    .instagram {
        padding: 0 28px 170px;
    }

    .site-signoff {
        width: calc(100% - 56px);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        aspect-ratio: 16 / 9;
    }

    .top-links {
        top: 16px;
        left: 16px;
        gap: 16px;
    }

    .top-links a {
        font-size: 14px;
    }

    .hero-logo {
        top: 16px;
        right: 16px;
        width: 45px;
    }

    .hero-title-block {
        width: calc(100% - 28px);
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 0.95;
        white-space: nowrap;
    }

    .hero-services {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.2;
    }


    /* INTRO */

    .intro {
        min-height: 45vh;
        padding: 0 20px;
    }

    .intro-inner {
        width: min(520px, 100%);
    }

    .intro-inner h2 {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .intro-inner p {
        width: min(420px, 100%);
        font-size: 14px;
        line-height: 1.55;
    }


    /* WORK */

    .selected-work {
        padding: 0 16px 110px;
    }

    .selected-work .section-label {
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 24px;
        line-height: 1;
    }

    .work-grid {
        width: 100%;
        gap: 100px;
    }


    /* PROJECT MEDIA */

    .work-placeholder {
        width: 100%;
    }

    .video-placeholder {
        aspect-ratio: 16 / 9;
    }


    /* WORK TEXT */

    .work-subtitle {
        margin-top: 13px;
        font-size: 17px;
        line-height: 1.15;
    }

    .work-description {
        width: 30ch;
        max-width: 100%;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.5;
    }


    /* RPM / LUMI PHOTO PROJECTS */

    .portrait-photo-media {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .portrait-photo-media img {
        width: 100%;
        height: auto;
    }


    /* PIPE MASTERS */

    .portrait-video-project {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
        gap: 14px;
        align-items: end;
    }

    .portrait-video-media video {
        width: 100%;
        max-width: none;
        aspect-ratio: 9 / 16;
    }

    .portrait-video-copy {
        align-self: end;
        padding-bottom: 0;
    }

    .portrait-video-copy .work-subtitle {
        margin-top: 0;
    }

    .portrait-video-copy .work-description {
        margin-top: 12px;
    }


    /* LITTLE GUY */

    .little-guy-media {
        width: 100%;
    }

    .little-guy-media video {
        width: 100%;
        height: auto;
    }


    /* BEENZ */

    .portrait-project-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .portrait-project-media img {
        width: 100%;
        height: auto;
    }

    .portrait-project-media img:nth-child(3) {
        grid-column: 1 / -1;
    }


    /* INSTAGRAM */

    .instagram {
        padding: 0 20px 110px;
    }

    .instagram-caption {
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 1;
    }

    .instagram-subheading {
        max-width: 390px;
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.5;
    }

    .instagram a {
        font-size: 13px;
    }


    /* FOOTER */

    .site-signoff {
        width: calc(100% - 32px);
        margin-bottom: 16px;
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-title {
        font-size: 27px;
    }

    .hero-services {
        font-size: 12px;
    }

    .intro-inner h2,
    .instagram-caption {
        font-size: 28px;
    }

    .section-label {
        font-size: 23px;
    }

    .work-subtitle {
        font-size: 16px;
    }

    .work-description {
        font-size: 12px;
    }

    .work-grid {
        gap: 85px;
    }
}