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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    color: #2f3a32;
    background: #f5f5f1;
}


/* ---------- HEADER ---------- */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 28px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 100;
}


.company {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.9;
}


nav {
    display: flex;
    gap: 28px;
    align-items: center;
}


nav a,
nav span {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: .8px;
}


nav a:hover {
    opacity: .7;
}



/* ---------- HOME ---------- */


.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;

    background: #0f4d3a;

}


.hero-content {

    max-width: 560px;
    color: white;

}


.hero h1 {

    font-size: 42px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 28px;

}


.hero p {

    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: .95;

}


.button {

    display: inline-block;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    background: white;
    color: #0f4d3a;
    transition: .25s;

}


.button:hover {

    transform: translateY(-2px);

}



/* ---------- COLLECTION ---------- */


.collection-page,
.contact-page {

    background: #f5f5f1;

}


.collection,
.contact {

    padding: 140px 60px 80px;

}


.collection h1,
.contact h1 {

    text-align: center;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 70px;

}


.tea-grid {

    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;

}


.tea-card {

    width: 260px;
    text-align: center;
    background: white;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);

}


.tea-card h2 {

    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;

}


.tea-card p {

    line-height: 2;
    color: #667166;

}



/* ---------- CONTACT ---------- */


form {

    max-width: 620px;
    margin: auto;

}


input,
textarea {

    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #d8ddd8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: white;

}


textarea {

    height: 150px;
    resize: vertical;

}


button {

    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 40px;
    background: #0f4d3a;
    color: white;
    font-size: 15px;
    cursor: pointer;

}


button:hover {

    opacity: .9;

}



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


@media (max-width: 900px) {


    header {

        padding: 25px;

    }


    .hero {

        padding: 0 25px;

    }


    .hero h1 {

        font-size: 34px;

    }


    .collection,
    .contact {

        padding: 120px 25px 60px;

    }


    .tea-grid {

        flex-direction: column;
        align-items: center;

    }

}

/* ---------- FOOTER ---------- */

.footer {

    background: #0f4d3a;
    color: white;
    padding: 45px 80px;

}


.footer-content {

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;

}


.footer-company h3 {

    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;

}


.footer-company p,
.footer-contact p {

    font-size: 14px;
    line-height: 1.7;
    opacity: .85;

}


.footer-contact {

    text-align: left;

}


@media (max-width: 900px) {

    .footer-content {

        flex-direction: column;

    }


    .footer-contact {

        text-align: left;

    }

}