/* -------------------- */
/* RESET */
/* -------------------- */

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

html{
    scroll-behavior:smooth;
}

body{

    background:#fff;
    color:#000;

    font-family:"Arial Narrow",Arial,sans-serif;

    text-transform:lowercase;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

/* -------------------- */
/* TYPOGRAPHY */
/* -------------------- */

h1,
h2{

    font-weight:400;

    letter-spacing:-.06em;

    line-height:.88;

    text-shadow:
    0 0 .5px rgba(0,0,0,.55),
    0 0 1px rgba(0,0,0,.12);

}

h1{

    font-size:clamp(5rem,13vw,11rem);

}

h2{

    font-size:clamp(4rem,9vw,8rem);

    max-width:900px;

}

p{

    font-size:1.35rem;

    line-height:1.4;

    max-width:520px;

}

.copy{

    font-size:1.5rem;

    line-height:1.2;

    max-width:260px;

}

.audit{

    font-size:1.6rem;

    line-height:1.5;

    white-space:pre-line;

}

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

main{

    width:100%;

}

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:8vw;

}

.section{

    min-height:100vh;

    position:relative;

    padding:8vw;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about{

    gap:40px;

}

/* -------------------- */
/* SLIDESHOWS */
/* -------------------- */

.slideshow{

    position:absolute;

    right:8vw;

    top:120px;

    width:min(430px,40vw);

}

.slideshow img{

    width:100%;

    display:block;

    user-select:none;

    pointer-events:none;

}

.fast{

    transform:rotate(-3deg);

}

.slow{

    transform:rotate(2deg);

}

/* -------------------- */
/* CTA */
/* -------------------- */

.cta{

    display:inline-block;

    margin-top:60px;

    color:#000;

    font-size:3rem;

    text-decoration:underline;

    text-underline-offset:8px;

    transition:.18s;

}

.cta:hover{

    transform:translateX(8px);

}

/* -------------------- */
/* PHOTO EFFECT */
/* -------------------- */

.slideshow img{

    transition:.15s;

}

.slideshow:hover img{

    transform:scale(1.02);

}

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

@media (max-width:900px){

.hero{

    justify-content:flex-start;

}

.section{

    padding:50px 30px;

}

.slideshow{

    position:relative;

    top:auto;
    right:auto;

    margin-top:50px;

    width:100%;

    max-width:360px;

}

h1{

    font-size:4.3rem;

}

h2{

    font-size:3.2rem;

}

.copy{

    margin-bottom:30px;

}

.cta{

    font-size:2rem;

}

}

#gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

.photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {

    #gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

}
/* -------------------------- */
/* UPLOAD PAGE — MOBILE */
/* -------------------------- */

@media (max-width: 600px) {

    .upload {
        padding: 24px 20px 60px;
    }

    .upload-header {
        padding: 20px 0 40px;
    }

    .upload-header h1 {
        font-size: clamp(4rem, 18vw, 6rem);
        line-height: .85;
        margin-bottom: 30px;
    }

    .upload-header > p {
        font-size: 1.15rem;
        line-height: 1.15;
    }


   
/* -------------------------- */
/* PRINT PREVIEW */
/* -------------------------- */

.preview-section {
    min-height: auto;
    padding: 35px 0 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;
}

.preview-copy {
    max-width: 100%;
}

.preview-copy p {
    font-size: 1.15rem;
    line-height: 1.15;
}

.print-slideshow {
    width: 82vw;
    max-width: none;
    align-self: center;
    margin: 20px 0 30px 0; 
    padding: 0;
    transform: rotate(-2deg);
}

.print-slideshow img {
    width: 100%;
    height: auto;
    display: block;
}


    /* -------------------------- */
    /* YOUR DOZEN */
    /* -------------------------- */

    .progress-section {
        padding: 0 0 40px;
    }

    .progress-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    #selected-strip {
        width: 100%;
        gap: 6px;
         display: flex;
         flex-wrap: wrap;
    }

    .slot {
        width: calc((100% - 12px) / 3);
        aspect-ratio: 1;
    }

    #counter {
        margin-top: 15px;
        font-size: 1.1rem;
    }

    #dozen-message {
        margin-top: 15px;
        font-size: 1.25rem;
    }


    /* -------------------------- */
    /* PHOTO BANK */
    /* -------------------------- */

    .photo-bank-intro {
        padding: 35px 0 25px;
    }

    .photo-bank-intro h2 {
        font-size: 2.5rem;
        line-height: .9;
        margin-bottom: 20px;
    }

    .photo-bank-intro p {
        font-size: 1.05rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }


    /* -------------------------- */
    /* UPLOAD BOX */
    /* -------------------------- */

    #upload-box {
        width: 100%;
        min-height: 220px;
        padding: 20px;
    }

    .upload-copy {
        font-size: 1.1rem;
    }


    /* -------------------------- */
    /* PHOTO BANK GRID */
    /* -------------------------- */

    #gallery {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .photo {
        width: 100%;
        aspect-ratio: 1;
    }


    /* -------------------------- */
    /* COMPLETE */
    /* -------------------------- */

    #complete {
        padding: 70px 0 30px;
    }

    #complete h2 {
        font-size: clamp(3.5rem, 15vw, 5rem);
        line-height: .85;
    }

}

/* -------------------- */
/* SCROLL ANIMATION */
/* -------------------- */

.section{

    opacity:0;

    transform:translateY(40px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.section.visible{

    opacity:1;

    transform:translateY(0);

}
/* -------------------- */
/* UPLOAD PAGE */
/* -------------------- */

.upload{

    width:min(1400px,90vw);

    margin:auto;

    padding:80px 0;

}

.upload-header{

    margin-bottom:80px;

}

.upload-header h1{

    margin-bottom:30px;

}

.progress-section{

    margin-bottom:60px;

}

.progress-title{

    font-size:1.2rem;

    margin-bottom:20px;

}

#selected-strip{

    display:grid;

    grid-template-columns:repeat(12,1fr);

    gap:10px;

    margin-bottom:20px;

}

.slot{

    aspect-ratio:1;

    border:1px solid black;

}

.slot img{

    width:100%;
    height:100%;

    object-fit:cover;

}

#counter{

    font-size:1.2rem;

}

#upload-box{

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid black;

    min-height:320px;

    margin:80px 0;

    cursor:pointer;

}

.upload-copy{

    text-align:center;

    font-size:2rem;

    line-height:1.4;

}

#gallery{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(180px,1fr));

    gap:18px;

    margin-top:60px;

}

.photo{

    aspect-ratio:1;

    cursor:pointer;

    border:2px solid transparent;

    transition:.15s;

}

.photo img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.photo:hover{

    transform:scale(1.02);

}

.photo.selected{

    border:2px solid black;

}

#complete{

    display:none;

    margin:120px 0;

}

#complete.show{

    display:block;

}
/* -------------------- */
/* CHECKOUT */
/* -------------------- */

.checkout{

width:min(900px,90vw);

margin:auto;

padding:80px 0;

}

.plans{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

margin:70px 0;

}

.plan{

border:2px solid black;

padding:40px;

cursor:pointer;

transition:.2s;

}

.plan:hover{

transform:translateY(-4px);

}

.plan.selected{

background:black;

color:white;

}

.save{

margin-top:20px;

font-size:1rem;

}

.summary{

display:flex;

justify-content:space-between;

font-size:1.4rem;

margin:60px 0;

}

#checkout-button{

font-family:inherit;

font-size:2rem;

background:none;

border:none;

text-decoration:underline;

cursor:pointer;

padding:0;

}
/* -------------------- */
/* PRODUCT SECTION */
/* -------------------- */

.product-section{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    flex-wrap:wrap;

}

.product-copy{

    flex:1;

    min-width:300px;

}

.product-copy p{

    margin-top:40px;

    font-size:1.5rem;

}

.product-slideshow{

    flex:1;

    display:flex;

    justify-content:center;

}

.product-slideshow img{

    width:min(600px,100%);

    transition:opacity .4s ease;

}
@media (min-width: 901px) {
    .preview-section {
        min-height: 100vh;
        padding: 8vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8vw;
    }

    .preview-copy {
        max-width: 420px;
    }

    .preview-copy h2 {
        font-size: clamp(4rem, 9vw, 8rem);
        line-height: .9;
        font-weight: 400;
        letter-spacing: -.06em;
        text-shadow:
            0 0 .5px rgba(0,0,0,.6),
            0 0 1px rgba(0,0,0,.15);
    }

    .preview-copy p {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .print-slideshow {
        width: min(420px, 55vw);
        transform: rotate(-2deg);
    }

    .print-slideshow img {
        width: 100%;
        display: block;
    }
}