:root {
    --paper: #eee7dc;
    --paper2: #e3dacd;
    --ink: #332f2c;
    --muted: #716a63;
    --line: rgba(51, 47, 44, 0.22);
    --accent: #8f1d34;
    --white: #f8f4ed;

    --serif: Georgia, "Times New Roman", serif;
    --sans: "Manrope", Arial, sans-serif;
}

@font-face {
  font-family: "Gogol"; 
  src: url("../fonts/GogolRegular.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 
/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
}

a {
    color: inherit;
}


/* =========================
   HEADER
========================= */

.header {
    height: 64px;

    padding: 0 clamp(22px, 7vw, 100px);

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

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

    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(238, 231, 220, 0.94);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header nav {
    display: flex;
    gap: 30px;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.13em;
}


.header nav a {
    text-decoration: none;

    transition: opacity 0.2s ease;
}


.header nav a:hover {
    opacity: 0.55;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50%;       
    width: auto;
    display: block;
}

/* =========================
   GENERAL
========================= */

.eyebrow,
.label {
    margin: 0 0 18px;

    text-transform: uppercase;
    letter-spacing: 0.18em;

    font-size: 10px;

    color: var(--muted);
}


h1,
h2 {
    margin: 0;
    /* font-family: "Gogol"; */
    font-weight: 500;

    letter-spacing: -0.05em;
    line-height: 1;
}


h1 {
    font-size: clamp(48px, 6vw, 88px);

    margin-bottom: 24px;
}


h1 em,
h2 em {
    font-family: var(--serif);
    font-weight: 400;
}


h2 {
    font-size: clamp(38px, 5vw, 70px);
}


.lead {
    max-width: 470px;

    margin: 0 0 28px;

    color: var(--muted);

    font-size: 15px;
}


.button {
    display: inline-block;

    padding: 13px 19px;
    margin: 5px;
    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    font-size: 10px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.dark {
    background: var(--ink);
    color: var(--white);
}


.dark:hover {
    background: var(--accent);
}


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

.hero {
    min-height: calc(100vh - 64px);

    padding:
        clamp(35px, 4vw, 60px)
        clamp(22px, 7vw, 100px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: clamp(35px, 6vw, 80px);

    align-items: center;
}


.hero-copy {
    max-width: 600px;
}


.hero-visual {
    position: relative;
}


.photo {
    background: #d6cdc0;

    min-height: 300px;
}


.hero-visual .photo {
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.hero-visual .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder {
    display: flex;

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

    color: #8b837a;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.15em;

    position: relative;
}


.hero-note {
    position: absolute;

    right: -12px;
    bottom: 22px;

    background: var(--accent);

    color: #fff8ef;

    padding: 14px 17px;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================
   MANIFEST
========================= */

.manifest {
    padding:
        65px
        clamp(22px, 7vw, 100px);

    border-block: 1px solid var(--line);
}


.manifest-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 8vw;

    align-items: end;
}


.manifest-grid p {
    max-width: 450px;

    color: var(--muted);

    margin: 0;

    font-size: 14px;
}


/* =========================
   FEATURES
========================= */

.features {
    display: grid;

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

    padding:
        0
        clamp(22px, 7vw, 100px);
}


.features article {
    padding:
        34px
        30px
        40px
        0;

    border-right: 1px solid var(--line);
}


.features article + article {
    padding-left: 30px;
}


.features article:last-child {
    border-right: 0;
}


.features span {
    font-size: 10px;

    color: var(--accent);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.features h3 {
    margin: 16px 0 8px;

    font-size: 12px;

    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.features p {
    max-width: 280px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================
   PRODUCTS
========================= */

.products {
    padding:
        65px
        clamp(22px, 7vw, 100px);

    background: var(--paper2);
}


.section-head {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 30px;

    margin-bottom: 40px;
}


.section-head > p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    text-align: right;
}


.product-grid {
    display: grid;

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

    gap: 30px 24px;
}


.product-card {
    background: var(--paper);

    display: grid;

    grid-template-columns: 1fr 1fr;
}


.product-card .photo {
    min-height: 300px;
}


.product-card .photo b {
    position: absolute;

    bottom: 12px;
    left: 14px;

    font-size: 11px;
    color: var(--paper2);
    font-weight: 400;
}


.product-info {
    padding: 22px;

    display: flex;
    flex-direction: column;
}


.number {
    margin: 0;

    color: var(--accent);

    text-transform: uppercase;
    letter-spacing: 0.16em;

    font-size: 9px;
}


.product-info h3 {
    margin:
        15px
        0
        12px;

    font-size: 22px;

    line-height: 1.05;

    letter-spacing: -0.035em;

    font-weight: 500;
}


.product-info > p:not(.number) {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


.product-bottom {
    margin-top: auto;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 15px;
}


.product-bottom strong {
    font-size: 16px;

    font-weight: 500;
}


.product-bottom a {
    color: var(--accent);

    text-decoration: none;

    text-align: right;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    font-size: 10px;
}


.product-bottom a:hover {
    text-decoration: underline;
}


.disabled {
    opacity: 0.45;

    pointer-events: none;
}


/* =========================
   STORY
========================= */

.story {
    padding:
        65px
        clamp(22px, 7vw, 100px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: clamp(35px, 6vw, 80px);

    align-items: center;
}


.story > .photo {
    aspect-ratio: 5 / 4;
}

.story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.story h2 {
    margin-bottom: 22px;
}


.muted {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


.text-link {
    display: inline-block;

    margin-top: 15px;

    color: var(--accent);

    text-decoration: none;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


.text-link:hover {
    text-decoration: underline;
}


/* =========================
   CONTACTS
========================= */

.contacts {
    padding:
        65px
        clamp(22px, 7vw, 100px);

    background: var(--ink);

    color: var(--white);

    text-align: center;
}


.contacts .label {
    color: #b8aea2;
}


.contacts h2 {
    margin-bottom: 20px;
}


.contacts > p:not(.label) {
    max-width: 520px;

    margin:
        0
        auto
        25px;

    color: #bdb5aa;

    font-size: 14px;
}


.outline {
    border: 1px solid var(--white);
}


.outline:hover {
    background: var(--white);

    color: var(--ink);
}


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

footer {
    padding: 0px clamp(22px, 7vw, 100px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    height: 64px;
}


footer strong {
    font-size: 22px;

    letter-spacing: -1px;

    text-transform: none;
}


footer span {
    color: var(--muted);
}


footer a {
    text-decoration: none;
}


footer a:hover {
    color: var(--accent);
}


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

@media (max-width: 800px) {

    .header {
        height: 58px;
    }


    .header nav {
        display: none;
    }


    .hero {
        min-height: auto;

        padding-top: 30px;
        padding-bottom: 50px;

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .hero-copy {
        order: 1;
    }


    .hero-visual {
        order: 0;
    }


    .hero-visual .photo {
        aspect-ratio: 4 / 3;

        min-height: 250px;
    }


    .hero-note {
        right: 8px;
        bottom: 15px;
    }


    h1 {
        font-size: 52px;

        margin-bottom: 20px;
    }


    .lead {
        font-size: 14px;
    }


    .manifest {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .manifest-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .features {
        grid-template-columns: 1fr;
    }


    .features article,
    .features article + article {
        padding:
            28px
            0;

        border-right: 0;

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


    .features article:last-child {
        border-bottom: 0;
    }


    .products {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .section-head {
        display: block;

        margin-bottom: 30px;
    }


    .section-head > p {
        margin-top: 16px;

        text-align: left;
    }


    .product-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .product-card {
        grid-template-columns: 1fr;
    }


    .product-card .photo {
        min-height: 270px;
    }


    .product-info {
        padding: 20px;
    }


    .story {
        padding-top: 50px;
        padding-bottom: 50px;

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .story > .photo {
        aspect-ratio: 4 / 3;

        min-height: 250px;
    }


    .contacts {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    footer {
        flex-wrap: wrap;

        padding-top: 20px;
        padding-bottom: 20px;
    }

}