:root {
    --navy: #0f1d4a;

    --cream: #f7f2e8;

    --warm-white: #fffaf3;

    --sage: #a8b18a;

    --olive: #78834b;

    --text-dark: #343434;

    --border-light: #d8cfbd;

    --white: #ffffff;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background-color: var(--cream);
    color: var(--navy);

    font-family: Arial, sans-serif;
}


/* CONTAINER */

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* HEADER */

.site-header {
    background-color: var(--navy);
}

.header-content {
    min-height: 100px;

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

    gap: 30px;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.brand-logo {
    width: 95px;
    height: 95px;

    display: block;

    object-fit: contain;
}


/* NAVIGATION */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
}


/* ORDER BUTTON */

.order-button {
    background-color: white;
    color: var(--navy);

    text-decoration: none;
    font-weight: 700;

    padding: 12px 20px;

    border-radius: 999px;
}

/* HERO */

.hero {
    padding: 90px 0;
}

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

    gap: 70px;
}

.hero-text {
    flex: 1;

    max-width: 600px;
}

.eyebrow {
    margin: 0;

    color: var(--olive);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    margin: 20px 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 6vw, 78px);
    line-height: 1;

    color: var(--navy);
}

.hero-description {
    max-width: 530px;

    font-size: 18px;
    line-height: 1.7;

    color: var(--text-dark);
}

.hero-actions {
    display: flex;

    gap: 15px;

    margin-top: 30px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 14px 22px;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;
}

.primary-button {
    background-color: var(--navy);
    color: white;
}

.secondary-button {
    color: var(--navy);

    border: 1px solid var(--navy);
}

.hero-image {
    flex: 1;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* PRODUCTS */

.products {
    padding: 100px 0;

    background-color: var(--warm-white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 50px;
}

.section-label {
    margin: 0 0 15px;

    color: var(--olive);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    max-width: 650px;

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    line-height: 1.1;
}

.section-description {
    max-width: 330px;

    margin: 0;

    color: #555555;

    font-size: 16px;
    line-height: 1.6;
}

.products-grid {
    display: grid;

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

    gap: 30px;
}

.product-card {
    overflow: hidden;

    background-color: var(--warm-white);

    border: 1px solid var(--border-light);
    border-radius: 24px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-info {
    padding: 32px;
    background-color: var(--cream);
}

.product-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    padding: 0;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 30px;
}

.product-number {
    margin: 0 0 15px;

    color: var(--olive);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
}

.product-info > p {
    color: #444444;

    line-height: 1.7;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}

.product-tags span {
    padding: 7px 12px;

    background-color: var(--navy);
    color: white;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;
}

/* BENEFITS */

.benefits {
    padding: 100px 0;

    background-color: var(--navy);
    color: white;
}

.benefits-heading {
    max-width: 650px;

    margin-bottom: 60px;
}

.benefits .section-label {
    color: var(--sage);
}

.benefits-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    line-height: 1.1;
}

.benefits-grid {
    display: grid;

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

    gap: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
    padding: 35px 30px 20px 0;
}

.benefit-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);

    margin-right: 30px;
}

.benefit-number {
    display: block;

    margin-bottom: 50px;

    color: var(--sage);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.benefit-item h3 {
    margin: 0 0 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
}

.benefit-item p {
    margin: 0;

    color: #d7dce8;

    line-height: 1.7;
}

/* ABOUT BRAND */

.about-brand {
    padding: 110px 0;

    background-color: var(--cream);
}

.about-brand-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-brand-text h2 {
    margin: 0 0 30px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    line-height: 1.1;

    color: var(--navy);
}

.about-brand-text > p:not(.section-label) {
    max-width: 520px;

    color: #444444;

    font-size: 17px;
    line-height: 1.8;
}

.about-image-placeholder {
    min-height: 520px;

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

    background-color: #c8734f;

    border-radius: 30px;

    color: white;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* OCCASIONS */

.occasions {
    padding: 100px 0;

    background-color: var(--warm-white);
}

.occasions-heading {
    max-width: 650px;

    margin-bottom: 50px;
}

.occasions-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 52px;
    line-height: 1.1;

    color: var(--navy);
}

.occasions-grid {
    display: grid;

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

    gap: 25px;
}

.occasion-card {
    background-color: var(--cream);

    border-radius: 22px;

    overflow: hidden;
}

.occasion-image-placeholder {
    min-height: 280px;

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

    background-color: var(--sage);

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.occasion-card h3 {
    margin: 25px 25px 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    color: var(--navy);
}

.occasion-card p {
    margin: 0 25px 30px;

    color: #444444;

    line-height: 1.7;
}

/* BUSINESS */

.business-section {
    padding: 110px 0;

    background-color: var(--sage);
    color: var(--navy);
}

.business-content {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 90px;

    align-items: center;
}

.business-label {
    margin: 0 0 20px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.business-text h2 {
    max-width: 650px;

    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 56px;
    line-height: 1.05;
}

.business-text > p:not(.business-label) {
    max-width: 600px;

    margin-bottom: 35px;

    font-size: 17px;
    line-height: 1.7;
}

.business-button {
    display: inline-block;

    padding: 14px 22px;

    background-color: var(--navy);
    color: white;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;
}

.business-panel {
    padding: 35px;

    background-color: var(--cream);
    color: var(--navy);

    border-radius: 24px;
}

.business-panel-title {
    margin: 0 0 25px;

    color: var(--olive);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.business-option {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-top: 1px solid var(--border-light);
}

.business-option span {
    color: var(--olive);

    font-size: 12px;
    font-weight: 700;
}

.business-option p {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    font-weight: 700;
}

.final-cta {
    padding: 120px 0;

    background-color: var(--navy);
    color: white;

    text-align: center;
}

.final-cta-content {
    max-width: 760px;
}

.final-cta .section-label {
    color: var(--sage);
}

.final-cta h2 {
    margin: 15px 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 58px;
    line-height: 1.05;
}

.final-cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #d7dce8;

    font-size: 17px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;

    padding: 15px 24px;

    background-color: var(--cream);
    color: var(--navy);

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;
}

/* FOOTER */

.site-footer {
    padding: 70px 0 25px;

    background-color: var(--cream);
    color: var(--navy);
}

.footer-content {
    display: grid;

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

    gap: 60px;

    padding-bottom: 50px;
}

.footer-brand h2 {
    margin: 0 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
}

.footer-brand p {
    margin: 0;

    color: var(--olive);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-links a,
.footer-social a {
    color: var(--navy);

    text-decoration: none;
}

.footer-social p {
    margin: 0 0 5px;

    color: var(--olive);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    margin: 0;

    color: #666666;

    font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .header-content {
    flex-wrap: wrap;

    padding: 20px 0;
}

.nav-links {
    order: 3;

    width: 100%;

    justify-content: center;

    gap: 20px;
}

.hero {
    padding: 70px 0;
}

.hero-content {
    flex-direction: column;

    align-items: stretch;

    gap: 50px;
}

.hero-text {
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(48px, 10vw, 68px);
}

.hero-description {
    max-width: 650px;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.section-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
}

.section-description {
    max-width: 550px;
}

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

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

.benefit-item {
    padding: 30px 0;
}

.benefit-item:not(:last-child) {
    margin-right: 0;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-number {
    margin-bottom: 20px;
}

.about-brand-content {
    grid-template-columns: 1fr;

    gap: 50px;
}

.about-image-placeholder {
    min-height: 400px;
}

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

.business-content {
    grid-template-columns: 1fr;

    gap: 50px;
}

.footer-content {
    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.footer-brand {
    grid-column: 1 / -1;
}

}

@media (max-width: 600px) {

    .container {
        width: calc(100% - 32px);
    }


    /* HEADER */

    .brand-logo {
    width: 65px;
    height: 65px;
    }

    .order-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 58px);
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .hero-image-placeholder {
        min-height: 320px;
    }


    /* SECTION SPACING */

    .products,
    .benefits,
    .about-brand,
    .occasions,
    .business-section,
    .final-cta {
        padding: 70px 0;
    }


    /* TITLES */

    .section-heading h2,
    .benefits-heading h2,
    .about-brand-text h2,
    .occasions-heading h2,
    .business-text h2,
    .final-cta h2 {
        font-size: 42px;
    }


    /* PRODUCT IMAGES */

    .product-image-placeholder {
        min-height: 260px;
    }


    /* OCCASIONS */

    .occasion-image-placeholder {
        min-height: 240px;
    }


    /* BUSINESS */

    .business-panel {
        padding: 24px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}
