/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;

    background: #f3f0e9;

    color: #20231f;

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


button,
a {
    font-family: inherit;
}



/* =====================================================
   VARIABLES
===================================================== */

:root {

    --green-dark: #0f3d2d;

    --green: #1e7556;

    --green-light: #318a67;

    --cream: #f3f0e9;

    --white: #ffffff;

    --gold: #c8a75b;

    --text: #22251f;

    --muted: #686b65;

}



/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(1200px, calc(100% - 40px));

    margin-left: auto;

    margin-right: auto;

}



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

.nav {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: var(--green-dark);

    transform: translateY(0);

    transition:
        transform 0.32s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


/* HEADER DISAPPEARS WHILE SCROLLING */

.nav.nav-hidden {

    transform: translateY(-110%);

}


.nav.scrolled {

    background: #092d21;

    box-shadow:
        0 7px 30px rgba(0, 0, 0, 0.25);

}


.nav-inner {

    min-height: 78px;

    display: grid;

    grid-template-columns: 260px 1fr 180px;

    align-items: center;

    gap: 25px;

}



/* HEADER LOGO */

.header-logo {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}


.header-logo img {

    display: block;

    width: 210px;

    max-height: 58px;

    object-fit: contain;

    object-position: left center;

}



/* NAV LINKS */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 34px;

}


.main-nav a {

    position: relative;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: opacity 0.25s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transform: translateX(-50%);

    transition: width 0.25s ease;

}


.main-nav a:hover::after {

    width: 100%;

}


.main-nav a:hover {

    opacity: 0.88;

}



/* WHATSAPP */

.whatsapp-button {

    justify-self: end;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 17px;

    border-radius: 7px;

    background: #25d366;

    color: white;

    text-decoration: none;

    font-weight: 600;

    font-size: 14px;

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

}


.whatsapp-button:hover {

    transform: translateY(-2px);

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

}



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

.hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 23, 16, 0.72) 0%,
            rgba(4, 23, 16, 0.50) 35%,
            rgba(4, 23, 16, 0.18) 68%,
            rgba(4, 23, 16, 0.04) 100%
        ),
        url("images/hero.jpg");

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center;

}



/* HERO LAYOUT */

.hero-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        270px
        minmax(450px, 560px)
        1fr;

    align-items: center;

    column-gap: 55px;

}



/* LARGE FADED HERO LOGO */

.hero-brand {

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-brand-logo {

    width: 265px;

    height: auto;

    display: block;

    opacity: 0.62;

    filter:
        drop-shadow(
            0 10px 22px
            rgba(0, 0, 0, 0.28)
        );

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

}


.hero-brand-logo:hover {

    opacity: 0.83;

    transform: scale(1.025);

}



/* HERO TEXT */

.hero-copy {

    color: white;

    max-width: 560px;

}


.hero-eyebrow {

    display: block;

    margin-bottom: 20px;

    font-size: 16px;

    font-weight: 400;

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

}


.hero-copy h1 {

    margin-bottom: 24px;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(
            54px,
            4.8vw,
            78px
        );

    line-height: 1;

    color: white;

    text-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.28);

}


.hero-description {

    max-width: 550px;

    font-size: 16px;

    line-height: 1.7;

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

    text-shadow:
        0 2px 7px
        rgba(0, 0, 0, 0.30);

}



/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 11px 20px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

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

}


.btn-primary {

    color: white;

    background: var(--green);

    border: 1px solid var(--green);

}


.btn-primary:hover {

    background: #175e45;

    transform: translateY(-3px);

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

}


.btn-outline {

    color: white;

    border:
        1px solid
        rgba(255, 255, 255, 0.90);

    background:
        rgba(0, 0, 0, 0.20);

    backdrop-filter:
        blur(3px);

}


.btn-outline:hover {

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

    transform: translateY(-3px);

}



/* QUALITY */

.hero-quality {

    display: flex;

    align-items: center;

    justify-content: center;

}


.quality-circle {

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background: var(--green-dark);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    box-shadow:
        0 15px 34px
        rgba(0, 0, 0, 0.22);

}


.quality-circle strong {

    font-size: 22px;

    line-height: 1.1;

}


.quality-circle span {

    margin-top: 5px;

    font-size: 17px;

}



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

.features {

    background: white;

    border-bottom:
        1px solid
        #e2ded5;

}


.features-inner {

    min-height: 95px;

    display: grid;

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

    align-items: center;

    gap: 22px;

}


.feature {

    display: flex;

    align-items: center;

    gap: 12px;

}


.feature i {

    width: 34px;

    flex-shrink: 0;

    color: var(--green);

    font-size: 22px;

    text-align: center;

}


.feature strong {

    display: block;

    margin-bottom: 1px;

    font-size: 14px;

    color: #1b201c;

}


.feature span {

    display: block;

    font-size: 11px;

    color: var(--muted);

}



/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {

    margin-bottom: 30px;

}


.section-heading.centered {

    text-align: center;

}


.section-label {

    display: block;

    margin-bottom: 6px;

    color: #9a7936;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.section-label.light {

    color: #e7ca86;

}


.section-heading h2 {

    margin-bottom: 7px;

    font-family: "Playfair Display", serif;

    font-size: 31px;

    color: #1c241f;

}


.section-heading p {

    color: var(--muted);

    font-size: 14px;

}



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

.products {

    padding: 60px 0;

    background: var(--cream);

}



/* CAROUSEL WRAPPER */

.carousel-wrapper {

    position: relative;

    overflow: visible;

}



/* CAROUSEL */

.garlic-carousel {

    display: flex;

    gap: 18px;

    overflow-x: auto;

    padding: 10px 4px 20px;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

}


.garlic-carousel::-webkit-scrollbar {

    display: none;

}



/* GARLIC CARD */

.garlic-card {

    flex: 0 0 250px;

    scroll-snap-align: start;

    overflow: hidden;

    background: white;

    border:
        1px solid
        #e7e2d9;

    border-radius: 10px;

    box-shadow:
        0 6px 18px
        rgba(0, 0, 0, 0.045);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease;

}


.garlic-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 15px 32px
        rgba(0, 0, 0, 0.10);

}



/* GARLIC IMAGE */

.card-image-wrapper {

    height: 170px;

    overflow: hidden;

}


.card-image-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.45s ease;

}


.garlic-card:hover
.card-image-wrapper img {

    transform: scale(1.08);

}



/* CARD CONTENT */

.card-content {

    min-height: 210px;

    padding: 18px;

    display: flex;

    flex-direction: column;

}


.card-content h3 {

    margin-bottom: 7px;

    font-family: "Playfair Display", serif;

    font-size: 21px;

    color: #20251f;

}


.card-content p {

    margin-bottom: 17px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;

}


.card-button {

    margin-top: auto;

    align-self: flex-start;

    color: var(--green);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* CAROUSEL ARROWS */

.carousel-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: var(--green-dark);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transform:
        translateY(-50%);

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

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

}


.carousel-arrow:hover {

    background: var(--green);

    transform:
        translateY(-50%)
        scale(1.08);

}


.carousel-arrow-left {

    left: -22px;

}


.carousel-arrow-right {

    right: -22px;

}



/* VIEW ALL */

.view-all-wrapper {

    margin-top: 12px;

    text-align: center;

}


.view-all-button {

    display: inline-block;

    padding: 10px 22px;

    background: var(--green);

    color: white;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* =====================================================
   ABOUT
===================================================== */

.about {

    padding: 65px 0;

    background: var(--cream);

}


.about-wrapper {

    overflow: hidden;

    align-items: stretch;

    display: grid;

    grid-template-columns:
        42% 58%;

    min-height: 390px;

    border-radius: 10px;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.08);

}



/* ABOUT COPY */

.about-copy {

    min-height: 390px;

    padding: 40px;

    background: var(--green-dark);

    color: white;

}


.about-label {

    display: block;

    margin-bottom: 8px;

    color: #d8b865;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.about-copy h2 {

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;

    font-size: 32px;

    line-height: 1.12;

}


.about-copy p {

    margin-bottom: 18px;

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

    font-size: 13px;

}



/* ABOUT LIST */

.about-list {

    list-style: none;

    margin-bottom: 22px;

}


.about-list li {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

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

    font-size: 12px;

}


.about-list i {

    color: #d8b865;

}



/* ABOUT BUTTON */

.about-button {

    background: #d2af5e;

    color: #183329;

}


.about-button:hover {

    transform:
        translateY(-2px);

    background: #e0c274;

}



/* ABOUT IMAGE */

.about-image {

    position: relative;

    min-height: 390px;

    height: 100%;

    overflow: hidden;

}


.about-image img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.55s ease;

}


.about-image:hover img {

    transform:
        scale(1.035);

}



/* =====================================================
   WHY
===================================================== */

.why-section {

    padding:
        65px 0;

    background: white;

}


.why-grid {

    display: grid;

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

    gap: 20px;

}


.why-card {

    padding: 25px;

    border:
        1px solid
        #e8e4dc;

    border-radius: 8px;

    background: #faf9f6;

    text-align: center;

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

}


.why-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 12px 26px
        rgba(0, 0, 0, 0.08);

}


.why-card i {

    margin-bottom: 13px;

    color: var(--green);

    font-size: 26px;

}


.why-card h3 {

    margin-bottom: 7px;

    font-size: 15px;

}


.why-card p {

    color: var(--muted);

    font-size: 12px;

}



/* =====================================================
   STATS
===================================================== */

.stats {

    background: var(--green-dark);

    color: white;

}


.stats-inner {

    min-height: 95px;

    display: grid;

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

    align-items: center;

}


.stat {

    text-align: center;

}


.stat strong {

    display: block;

    color: #e4c878;

    font-size: 25px;

}


.stat span {

    display: block;

    font-size: 11px;

}


.stat i {

    margin-bottom: 3px;

    color: #e4c878;

    font-size: 24px;

}



/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {

    padding:
        65px 0;

    background: var(--cream);

}


.testimonial-grid {

    display: grid;

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

    gap: 22px;

}


.testimonial-card {

    margin: 0;

    padding: 28px;

    border-radius: 8px;

    background: white;

    border:
        1px solid
        #e4dfd5;

}


.testimonial-card i {

    margin-bottom: 10px;

    color: var(--green);

    font-size: 24px;

}


.testimonial-card p {

    margin-bottom: 13px;

    color: #454b46;

    font-size: 13px;

}


.testimonial-card cite {

    color: #6b706b;

    font-size: 11px;

    font-style: normal;

}



/* =====================================================
   GUIDES
===================================================== */

.guides {

    padding:
        65px 0;

    background: white;

}


.guide-grid {

    display: grid;

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

    gap: 20px;

}


.guide-card {

    padding: 26px;

    border:
        1px solid
        #e6e2da;

    border-radius: 8px;

    background: #faf9f6;

}


.guide-card i {

    margin-bottom: 12px;

    color: var(--green);

    font-size: 26px;

}


.guide-card h3 {

    margin-bottom: 8px;

    font-family: "Playfair Display", serif;

    font-size: 19px;

}


.guide-card p {

    margin-bottom: 15px;

    color: var(--muted);

    font-size: 12px;

}


.guide-card a {

    color: var(--green);

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

}



/* =====================================================
   QUOTE
===================================================== */

.quote-section {

    padding: 45px 0;

    background: #193f31;

    color: white;

}


.quote-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}


.quote-inner h2 {

    margin-bottom: 5px;

    font-family: "Playfair Display", serif;

    font-size: 29px;

}


.quote-inner p {

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

    font-size: 13px;

}


.quote-button {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 20px;

    border-radius: 6px;

    background: #25d366;

    color: white;

    text-decoration: none;

    font-weight: 600;

}



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

.footer {

    background: #09291f;

    color: white;

}


.footer-grid {

    padding:
        55px 0;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap: 40px;

}



/* FOOTER LOGO */

.footer-brand img {

    width: 220px;

    max-height: 95px;

    object-fit: contain;

    object-position: left;

    display: block;

    margin-bottom: 16px;

}


.footer-brand p {

    max-width: 280px;

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

    font-size: 11px;

}



/* SOCIAL */

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 16px;

}


.social-links a {

    width: 31px;

    height: 31px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-decoration: none;

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

}



/* FOOTER COLUMNS */

.footer-column h3 {

    margin-bottom: 14px;

    color: #e6cb7c;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}


.footer-column a {

    display: block;

    margin-bottom: 7px;

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

    text-decoration: none;

    font-size: 11px;

}


.footer-column a:hover {

    color: white;

}


.footer-column p {

    margin-bottom: 8px;

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

    font-size: 11px;

}


.footer-column i {

    margin-right: 6px;

    color: #d8b865;

}



/* FOOTER BOTTOM */

.footer-bottom {

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

}


.footer-bottom .container {

    padding:
        17px 0;

}


.footer-bottom p {

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

    font-size: 10px;

}



/* =====================================================
   SCROLL ANIMATIONS
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(24px);

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

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}





/* =====================================================
   HOMEPAGE GALLERY PREVIEW
===================================================== */

.gallery-preview-section {

    padding: 60px 0;

    background: var(--white);

}


.gallery-preview-wrapper {

    position: relative;

    overflow: hidden;

    padding: 0 58px;

}


.gallery-preview-carousel {

    display: flex;

    gap: 24px;

    overflow-x: auto;

    padding: 10px 0 20px;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

}


.gallery-preview-carousel::-webkit-scrollbar {

    display: none;

}


.gallery-preview-card {

    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;

    aspect-ratio: 4 / 3;

    scroll-snap-align: start;

    overflow: hidden;

    display: block;

    border-radius: 10px;

    background: #e8e4dc;

    border: 1px solid #e7e2d9;

    box-shadow:
        0 6px 18px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease;

}


.gallery-preview-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 15px 32px
        rgba(0, 0, 0, 0.11);

}


.gallery-preview-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.45s ease;

}


.gallery-preview-card:hover img {

    transform: scale(1.05);

}


.gallery-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background: var(--green-dark);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transform: translateY(-50%);

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

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

}


.gallery-arrow:hover {

    background: var(--green);

    transform:
        translateY(-50%)
        scale(1.08);

}


.gallery-arrow-left {

    left: 6px;

}


.gallery-arrow-right {

    right: 6px;

}

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

@media (max-width: 1100px) {


    .nav-inner {

        grid-template-columns:
            190px 1fr 150px;

    }


    .header-logo img {

        width: 175px;

    }


    .main-nav {

        gap: 19px;

    }


    .hero {

        min-height: 650px;

    }


    .hero-inner {

        grid-template-columns:
            200px
            minmax(390px, 1fr)
            130px;

        column-gap: 30px;

    }


    .hero-brand-logo {

        width: 200px;

    }


    .features-inner {

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

        padding:
            18px 0;

    }


    .about-wrapper {

        grid-template-columns:
            48% 52%;

    }


    .why-grid {

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

    }


    .footer-grid {

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

    }

}



/* =====================================================
   MOBILE NAV / GENERAL
===================================================== */

@media (max-width: 800px) {


    .nav {

        position: relative;

    }


    .nav-inner {

        min-height: auto;

        padding:
            15px 0;

        display: flex;

        flex-wrap: wrap;

        justify-content: space-between;

        gap: 14px;

    }


    .header-logo img {

        width: 165px;

    }


    .main-nav {

        width: 100%;

        order: 3;

        overflow-x: auto;

        justify-content: flex-start;

        gap: 22px;

        padding-bottom: 5px;

    }


    .main-nav a {

        flex-shrink: 0;

        font-size: 13px;

    }


    .whatsapp-button {

        font-size: 12px;

        padding:
            8px 12px;

    }



    /* HERO */

    .hero {

        min-height: auto;

        padding:
            60px 0;

    }


    .hero-inner {

        display: grid;

        grid-template-columns:
            175px 1fr;

        grid-template-areas:

            "logo text"
            "logo quality";

        gap:
            20px 28px;

    }


    .hero-brand {

        grid-area: logo;

    }


    .hero-brand-logo {

        width: 175px;

        opacity: 0.70;

    }


    .hero-copy {

        grid-area: text;

    }


    .hero-quality {

        grid-area: quality;

        justify-content: flex-start;

    }


    .hero-copy h1 {

        font-size: 48px;

    }


    .quality-circle {

        width: 100px;

        height: 100px;

    }


    .quality-circle strong {

        font-size: 17px;

    }


    .quality-circle span {

        font-size: 13px;

    }



    /* FEATURES */

    .features-inner {

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

    }



    /* ABOUT */

    .about-wrapper {

        grid-template-columns: 1fr;

    }


    .about-image {

        min-height: 320px;

    }



    /* STATS */

    .stats-inner {

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

        gap: 25px;

        padding:
            30px 0;

    }



    /* OTHER */

    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .guide-grid {

        grid-template-columns: 1fr;

    }


    .quote-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}



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

@media (max-width: 560px) {


    .container {

        width:
            min(
                100% - 28px,
                1200px
            );

    }



    /* HERO */

    .hero {

        padding:
            45px 0;

    }


    .hero-inner {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

    }


    .hero-brand {

        justify-content: flex-start;

    }


    .hero-brand-logo {

        width: 170px;

        opacity: 0.75;

    }


    .hero-copy h1 {

        font-size: 42px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-buttons {

        width: 100%;

    }


    .hero-buttons .btn {

        flex: 1;

    }


    .hero-quality {

        justify-content: flex-start;

    }



    /* FEATURES */

    .features-inner {

        grid-template-columns: 1fr;

    }



    /* CAROUSEL */

    .garlic-carousel {

        padding:
            10px 20px 20px;

        scroll-padding-inline: 20px;

    }


    .garlic-card {

        flex-basis: 100%;

        scroll-snap-align: center;

    }


    .carousel-arrow {

        top: 95px;

        width: 38px;

        height: 38px;

    }


    .carousel-arrow-left {

        left: 4px;

    }


    .carousel-arrow-right {

        right: 4px;

    }


    /* GALLERY PREVIEW */

    .gallery-preview-wrapper {

        padding: 0 48px;

    }


    .gallery-preview-carousel {

        gap: 20px;

        padding: 10px 0 20px;

    }


    .gallery-preview-card {

        flex-basis: calc((100% - 20px) / 2);

        scroll-snap-align: start;

    }


    .gallery-arrow {

        width: 38px;

        height: 38px;

    }


    .gallery-arrow-left {

        left: 0;

    }


    .gallery-arrow-right {

        right: 0;

    }



    /* ABOUT */

    .about-copy {

        padding:
            28px 22px;

    }


    .about-copy h2 {

        font-size: 27px;

    }



    /* WHY */

    .why-grid {

        grid-template-columns: 1fr;

    }



    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-brand img {

        width: 210px;

    }

}



/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.floating-whatsapp {

    position: fixed;

    right: 26px;

    bottom: 26px;

    z-index: 2000;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25d366;

    color: white;

    text-decoration: none;

    font-size: 34px;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.25);

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

}


.floating-whatsapp:hover {

    background: #20bd5a;

    transform:
        translateY(-4px)
        scale(1.06);

    box-shadow:
        0 13px 30px
        rgba(0, 0, 0, 0.30);

}


.floating-whatsapp i {

    line-height: 1;

}



/* SMALL MOBILE FLOATING WHATSAPP */

@media (max-width: 560px) {

    .floating-whatsapp {

        right: 17px;

        bottom: 17px;

        width: 56px;

        height: 56px;

        font-size: 30px;

    }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media
(prefers-reduced-motion: reduce) {


    * {

        scroll-behavior: auto !important;

    }


    .reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }


    .garlic-carousel,
    .gallery-preview-carousel {

        scroll-behavior: auto;

    }


    .nav {

        transition: none;

    }

}

@media (max-width: 700px) {

    .gallery-preview-wrapper {

        padding: 0 44px;

    }


    .gallery-preview-carousel {

        gap: 16px;

    }


    .gallery-preview-card {

        flex-basis: 100%;

    }


    .about-wrapper {

        grid-template-columns: 1fr;

    }


    .about-copy {

        min-height: auto;

    }


    .about-image {

        min-height: 320px;

    }

}
