* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {

    --background: #f1efe9;
    --white: #faf9f5;
    --black: #111111;
    --gray: #6b6a65;
    --line: #c8c5bd;

    --max-width: 1400px;

}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--background);

    color: var(--black);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

}


a {
    color: inherit;
}


/* HEADER */

.header {

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 4vw;

    border-bottom: 1px solid var(--black);

    position: sticky;

    top: 0;

    z-index: 50;

    background: rgba(241,239,233,.94);

    backdrop-filter: blur(12px);

}


.logo {

    font-size: 24px;

    font-weight: 900;

    letter-spacing: -1.5px;

    text-decoration: none;

}


.header nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.header nav a {

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .12em;

    text-decoration: none;

}


.header nav a:hover {

    text-decoration: underline;

}


.cart-button {

    background: var(--black);

    color: white;

    border: none;

    padding: 11px 14px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .1em;

}


.cart-button span {

    background: white;

    color: black;

    border-radius: 50%;

    padding: 3px 7px;

    margin-left: 5px;

}


/* GENERAL */

.eyebrow {

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .18em;

    margin-bottom: 20px;

}


/* HERO */

.hero {

    max-width: var(--max-width);

    min-height: 650px;

    margin: auto;

    padding: 100px 4vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-left: 1px solid var(--line);

    border-right: 1px solid var(--line);

}


.hero h1 {

    font-size: clamp(80px, 15vw, 220px);

    line-height: .75;

    letter-spacing: -.09em;

    margin-bottom: 45px;

    font-weight: 900;

}


.hero p {

    font-size: clamp(18px, 2.5vw, 30px);

    line-height: 1.1;

    margin-bottom: 35px;

}


/* BUTTONS */

.button {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 48px;

    padding: 0 22px;

    border: 1px solid var(--black);

    text-decoration: none;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .12em;

    cursor: pointer;

}


.dark {

    background: var(--black);

    color: white;

}


.light {

    background: var(--white);

    color: black;

}


.full {

    width: 100%;

}


/* TICKER */

.ticker {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top: 1px solid black;

    border-bottom: 1px solid black;

}


.ticker div {

    padding: 14px 20px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .1em;

    border-right: 1px solid black;

}


.ticker div:last-child {

    border-right: none;

}


/* SECTIONS */

.section {

    max-width: var(--max-width);

    margin: auto;

    padding: 100px 4vw;

    border-left: 1px solid var(--line);

    border-right: 1px solid var(--line);

}


.section h2 {

    font-size: clamp(40px, 6vw, 85px);

    letter-spacing: -.06em;

    line-height: .9;

}


/* SECTION HEADER */

.section-header {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

}


.section-header > p {

    max-width: 300px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.5;

}


/* PRODUCTS */

.products {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.product {

    background: var(--white);

    border: 1px solid var(--black);

}


.product-image {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

}


.placeholder {

    width: 100%;

    aspect-ratio: 1 / 1;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #111;

    color: white;

    padding: 30px;

    text-align: center;

    font-size: 35px;

    font-weight: 900;

    letter-spacing: -.06em;

}


.product-info {

    padding: 18px;

}


.product-top {

    display: flex;

    justify-content: space-between;

    gap: 15px;

}


.product-name {

    font-size: 15px;

    font-weight: 900;

    text-transform: uppercase;

}


.product-price {

    font-weight: 900;

    white-space: nowrap;

}


.product-description {

    color: var(--gray);

    font-size: 11px;

    margin: 12px 0 18px;

}


.add-cart {

    width: 100%;

    padding: 13px;

    background: transparent;

    border: 1px solid black;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .1em;

    cursor: pointer;

}


.add-cart:hover {

    background: black;

    color: white;

}


/* STEPS */

.steps {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top: 1px solid black;

    margin-top: 45px;

}


.steps article {

    padding: 25px 18px;

    min-height: 210px;

    border-right: 1px solid black;

}


.steps article:last-child {

    border-right: none;

}


.steps h3 {

    font-size: 32px;

    letter-spacing: -.05em;

    margin: 35px 0 12px;

}


.steps p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.5;

}


/* TERMS */

.terms {

    max-width: 800px;

    background: black;

    color: white;

    padding: 35px;

    margin-top: 30px;

}


.terms h2 {

    font-size: 32px;

    margin-bottom: 20px;

}


.terms p {

    color: #ddd;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 15px;

}


/* CONTACT */

.contact {

    background: black;

    color: white;

    text-align: center;

    padding: 110px 4vw;

}


.contact .eyebrow {

    color: #aaa;

}


.contact h2 {

    max-width: 900px;

    margin: auto;

    font-size: clamp(45px,7vw,100px);

    letter-spacing: -.07em;

}


.contact p {

    color: #aaa;

    margin: 25px 0 30px;

}


.instagram {

    display: block;

    margin-top: 20px;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .1em;

}


/* FOOTER */

footer {

    background: black;

    color: #aaa;

    border-top: 1px solid #333;

    padding: 22px 4vw;

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    letter-spacing: .1em;

    text-transform: uppercase;

}


/* CART */

.cart-backdrop {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.6);

    z-index: 100;

}


.cart-backdrop[hidden] {

    display: none;

}


.cart {

    position: absolute;

    right: 0;

    top: 0;

    height: 100%;

    width: min(520px,100%);

    background: var(--white);

    padding: 30px;

    overflow-y: auto;

}


.cart-header {

    display: flex;

    justify-content: space-between;

    border-bottom: 1px solid black;

    padding-bottom: 20px;

}


.cart-header h2 {

    font-size: 45px;

    letter-spacing: -.06em;

}


.close {

    border: none;

    background: transparent;

    font-size: 40px;

    cursor: pointer;

}


.cart-item {

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid var(--line);

}


.cart-item h3 {

    font-size: 13px;

    margin-bottom: 7px;

}


.cart-item p {

    color: var(--gray);

    font-size: 11px;

}


.quantity {

    display: flex;

    gap: 7px;

    align-items: center;

    margin-top: 10px;

}


.quantity button {

    width: 27px;

    height: 27px;

    background: transparent;

    border: 1px solid black;

    cursor: pointer;

}


.remove {

    border: none !important;

    background: transparent !important;

    text-decoration: underline;

    font-size: 10px;

}


.empty {

    color: var(--gray);

    font-size: 13px;

    padding: 30px 0;

}


.cart-total {

    display: flex;

    justify-content: space-between;

    border-top: 2px solid black;

    padding: 20px 0;

    margin-top: 15px;

    font-size: 18px;

}


#orderForm {

    display: grid;

    gap: 14px;

}


#orderForm label {

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .08em;

}


#orderForm input,
#orderForm textarea {

    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 12px;

    border: 1px solid black;

    background: white;

    font: inherit;

}


#orderForm textarea {

    resize: vertical;

}


.note {

    color: var(--gray);

    font-size: 10px;

    line-height: 1.5;

}


/* MOBILE */

@media (max-width: 800px) {

    .header {

        padding: 0 18px;

    }


    .header nav a {

        display: none;

    }


    .hero,
    .section {

        padding-left: 18px;

        padding-right: 18px;

    }


    .ticker {

        grid-template-columns:
            repeat(2,1fr);

    }


    .ticker div:nth-child(2) {

        border-right: none;

    }


    .ticker div:nth-child(n+3) {

        border-top: 1px solid black;

    }


    .section-header {

        display: block;

    }


    .section-header > p {

        margin-top: 20px;

    }


    .products {

        grid-template-columns: 1fr;

    }


    .steps {

        grid-template-columns:
            repeat(2,1fr);

    }


    .steps article:nth-child(2) {

        border-right: none;

    }


    .steps article:nth-child(n+3) {

        border-top: 1px solid black;

    }

}


@media (max-width: 500px) {

    .hero h1 {

        font-size: 22vw;

    }


    .steps {

        grid-template-columns: 1fr;

    }


    .steps article {

        border-right: none;

        border-bottom: 1px solid black;

    }

}