/* =====================================================
   GARLIC PAGE
===================================================== */


/* ACTIVE GARLIC HEADER LINK */

.garlic-active::after {

    width: 100% !important;

}



/* =====================================================
   GARLIC PAGE HERO
===================================================== */

.garlic-page-hero {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    color: white;

    background-image:

        linear-gradient(
            90deg,
            rgba(5, 28, 20, 0.93) 0%,
            rgba(5, 28, 20, 0.72) 45%,
            rgba(5, 28, 20, 0.28) 100%
        ),

        url("images/hero.jpg");

    background-size: cover;

    background-position: center;

}


.garlic-page-hero-inner {

    padding-top: 70px;

    padding-bottom: 70px;

}


.garlic-page-eyebrow {

    display: block;

    margin-bottom: 10px;

    color: #e2c574;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}


.garlic-page-hero h1 {

    max-width: 700px;

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        52px,
        6vw,
        82px
    );

    line-height: 1;

}


.garlic-page-hero p {

    max-width: 650px;

    margin-bottom: 28px;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 15px;

    line-height: 1.75;

}


.garlic-hero-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 6px;

    background: var(--green);

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.garlic-hero-button:hover {

    background: #185f46;

    transform: translateY(-3px);

    box-shadow:
        0 10px 24px
        rgba(0, 0, 0, 0.22);

}



/* =====================================================
   INTRO
===================================================== */

.garlic-intro {

    padding: 70px 0;

    background: var(--cream);

}


.garlic-intro-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: start;

}


.garlic-intro-heading h2 {

    font-family: "Playfair Display", serif;

    font-size: 37px;

    line-height: 1.12;

    color: #16251e;

}


.garlic-intro-copy > p {

    margin-bottom: 15px;

    color: #555d57;

    font-size: 13px;

    line-height: 1.8;

}


.garlic-note {

    margin-top: 25px;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px 18px;

    border-left:
        3px solid
        #c8a75b;

    background:
        rgba(
            200,
            167,
            91,
            0.09
        );

}


.garlic-note i {

    margin-top: 3px;

    color: #a7853e;

    font-size: 16px;

}


.garlic-note p {

    color: #5b594f;

    font-size: 11px;

    line-height: 1.7;

}



/* =====================================================
   QUICK VARIETY NAVIGATION
===================================================== */

.variety-navigation {

    padding: 25px 0 50px;

    background: var(--cream);

}


.variety-nav-grid {

    display: grid;

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

    gap: 12px;

}


.variety-nav-grid a {

    position: relative;

    height: 150px;

    overflow: hidden;

    border-radius: 8px;

    background: #163e30;

    color: white;

    text-decoration: none;

    box-shadow:
        0 5px 16px
        rgba(0, 0, 0, 0.08);

}


.variety-nav-grid img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    opacity: 0.68;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;

}


.variety-nav-grid a::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 27, 19, 0.80),
            transparent 65%
        );

}


.variety-nav-grid span {

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 12px;

    z-index: 2;

    font-family: "Playfair Display", serif;

    font-size: 15px;

    line-height: 1.15;

}


.variety-nav-grid a:hover img {

    transform: scale(1.08);

    opacity: 0.82;

}



/* =====================================================
   VARIETY SECTIONS
===================================================== */

.variety-section {

    padding: 85px 0;

    background: #ffffff;

    scroll-margin-top: 90px;

}


.variety-section.variety-alt {

    background: #f3f0e9;

}


.variety-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.08fr);

    gap: 70px;

    align-items: center;

}


.variety-layout-reverse
.variety-image {

    order: 2;

}


.variety-layout-reverse
.variety-content {

    order: 1;

}



/* =====================================================
   VARIETY IMAGE
===================================================== */

.variety-image {

    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 14px 38px
        rgba(0, 0, 0, 0.11);

}


.variety-image img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease;

}


.variety-image:hover img {

    transform: scale(1.035);

}


.variety-image-label {

    position: absolute;

    left: 18px;

    bottom: 18px;

    z-index: 2;

    padding: 8px 13px;

    border-radius: 5px;

    background:
        rgba(
            11,
            55,
            41,
            0.92
        );

    color: white;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    backdrop-filter: blur(5px);

}



/* =====================================================
   VARIETY CONTENT
===================================================== */

.variety-content {

    position: relative;

}


.variety-number {

    position: absolute;

    top: -48px;

    right: 0;

    color:
        rgba(
            15,
            61,
            45,
            0.07
        );

    font-family: "Playfair Display", serif;

    font-size: 100px;

    font-weight: 700;

    line-height: 1;

    pointer-events: none;

}


.variety-content h2 {

    position: relative;

    z-index: 1;

    margin-bottom: 15px;

    font-family: "Playfair Display", serif;

    font-size: 43px;

    line-height: 1.05;

    color: #15261e;

}


.variety-lead {

    max-width: 600px;

    margin-bottom: 27px;

    color: #4a534d;

    font-size: 15px !important;

    font-weight: 500;

    line-height: 1.75 !important;

}


.variety-content > p {

    margin-bottom: 15px;

    color: #646a66;

    font-size: 12px;

    line-height: 1.8;

}



/* =====================================================
   FACT GRID
===================================================== */

.variety-facts {

    display: grid;

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

    gap: 10px;

    margin-bottom: 28px;

}


.fact {

    min-height: 78px;

    padding: 13px 14px;

    border:
        1px solid
        #e2dfd8;

    border-radius: 7px;

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

}


.variety-alt .fact {

    background: #ffffff;

}


.fact span {

    display: block;

    margin-bottom: 3px;

    color: #92958f;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.7px;

    text-transform: uppercase;

}


.fact strong {

    display: block;

    color: #22312a;

    font-size: 12px;

    line-height: 1.35;

}



/* =====================================================
   ENQUIRE BUTTON
===================================================== */

.variety-enquire {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    padding: 11px 19px;

    border-radius: 6px;

    background: var(--green);

    color: white;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

}


.variety-enquire i {

    font-size: 10px;

    transition:
        transform 0.25s ease;

}


.variety-enquire:hover {

    background: #175e45;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.13);

}


.variety-enquire:hover i {

    transform: translateX(4px);

}



/* =====================================================
   HELP CHOOSING
===================================================== */

.garlic-help {

    padding: 55px 0;

    background: #153f30;

    color: white;

}


.garlic-help-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.garlic-help h2 {

    margin-bottom: 7px;

    font-family: "Playfair Display", serif;

    font-size: 31px;

}


.garlic-help p {

    max-width: 680px;

    color:
        rgba(
            255,
            255,
            255,
            0.73
        );

    font-size: 12px;

    line-height: 1.7;

}


.garlic-contact-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 6px;

    background: #d1af60;

    color: #15382b;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.garlic-contact-button:hover {

    background: #e1c67f;

    transform: translateY(-2px);

}



/* =====================================================
   TABLET
===================================================== */

@media
(max-width: 1050px) {

    .variety-nav-grid {

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

    }


    .variety-layout {

        gap: 45px;

    }


    .variety-image {

        min-height: 460px;

    }


    .variety-facts {

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

    }

}



/* =====================================================
   MOBILE / SMALL TABLET
===================================================== */

@media
(max-width: 800px) {

    .garlic-page-hero {

        min-height: 400px;

    }


    .garlic-page-hero h1 {

        font-size: 55px;

    }


    .garlic-intro-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .variety-layout {

        grid-template-columns: 1fr;

        gap: 38px;

    }


    .variety-layout-reverse
    .variety-image {

        order: 1;

    }


    .variety-layout-reverse
    .variety-content {

        order: 2;

    }


    .variety-image {

        min-height: 430px;

    }


    .variety-section {

        padding: 65px 0;

    }


    .garlic-help-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}



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

@media
(max-width: 560px) {

    .garlic-page-hero {

        min-height: 360px;

    }


    .garlic-page-hero-inner {

        padding-top: 50px;

        padding-bottom: 50px;

    }


    .garlic-page-hero h1 {

        font-size: 44px;

    }


    .garlic-page-hero p {

        font-size: 13px;

    }


    .garlic-intro {

        padding: 50px 0;

    }


    .garlic-intro-heading h2 {

        font-size: 31px;

    }


    .variety-navigation {

        padding-bottom: 35px;

    }


    .variety-nav-grid {

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

    }


    .variety-nav-grid a {

        height: 130px;

    }


    .variety-image {

        min-height: 320px;

    }


    .variety-content h2 {

        font-size: 35px;

    }


    .variety-number {

        top: -31px;

        font-size: 70px;

    }


    .variety-facts {

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

    }


    .fact {

        min-height: 74px;

    }


    .variety-enquire {

        width: 100%;

        justify-content: center;

    }


    .garlic-contact-button {

        width: 100%;

        justify-content: center;

    }

}



/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media
(max-width: 380px) {

    .variety-facts {

        grid-template-columns: 1fr;

    }


    .variety-nav-grid {

        grid-template-columns: 1fr;

    }

}