:root {
    --green-dark: #17382d;
    --green: #2f6b52;
    --green-soft: #dfeae3;
    --cream: #f8f5ee;
    --sand: #ede5d6;
    --text: #1c2923;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
    background: var(--cream);
    color: var(--text);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 6vw;
    background: rgba(248,245,238,.96);
    border-bottom: 1px solid rgba(23,56,45,.10);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
}

.brand-name {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 700;
}

.brand-subtitle {
    margin-top: 2px;
    color: var(--green);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.cart-button,
.primary-button,
.product-card button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
}

.cart-button {
    padding: 10px 18px;
    background: var(--green-dark);
    color: var(--white);
}

main {
    width: min(1180px, 88vw);
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, .9fr);
    gap: 50px;
    align-items: center;
    min-height: 620px;
    padding: 70px 0;
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 16px 0 20px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 500;
    line-height: .96;
}

.hero p {
    max-width: 580px;
    margin: 0 0 32px;
    color: #53615a;
    font-size: 18px;
    line-height: 1.7;
}

.primary-button {
    display: inline-block;
    padding: 15px 24px;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.hero-card {
    display: grid;
    place-items: center;
    min-height: 430px;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            var(--green-dark),
            var(--green)
        );
    box-shadow:
        0 28px 65px
        rgba(23,56,45,.17);
}

.hero-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-card-inner span {
    font-family: Georgia, serif;
    font-size: 78px;
    font-style: italic;
}

.hero-card-inner strong {
    margin-top: 8px;
    font-size: 20px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-card-inner small {
    margin-top: 16px;
    opacity: .75;
    font-size: 13px;
    letter-spacing: .1em;
}

.products-section {
    padding: 90px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
}

.section-heading h2,
.about-section h2 {
    margin: 10px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
}

.section-heading p {
    max-width: 400px;
    margin: 0;
    color: #66736c;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow:
        0 12px 40px
        rgba(23,56,45,.07);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--sand);
}

.product-content {
    padding: 22px;
}

.product-content h3 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 24px;
}

.product-content p {
    min-height: 48px;
    margin: 0;
    color: #66736c;
    line-height: 1.55;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
}

.product-card button {
    padding: 10px 15px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 70px 30px;
    border: 1px dashed rgba(23,56,45,.25);
    border-radius: 24px;
    text-align: center;
    color: #6e7c75;
}

.about-section {
    margin: 70px 0;
    padding: 70px;
    border-radius: 32px;
    background: var(--green-soft);
}

.about-section p {
    max-width: 650px;
    color: #53615a;
    font-size: 17px;
    line-height: 1.7;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 6vw;
    border-top: 1px solid rgba(23,56,45,.10);
    color: #69766f;
    font-size: 13px;
}

@media (max-width: 850px) {
    .site-header {
        align-items: flex-start;
    }

    nav a {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 55px 0;
    }

    .hero-card {
        min-height: 320px;
    }

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

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-section {
        padding: 45px 28px;
    }

    footer {
        flex-direction: column;
    }
}
