:root {
    --brand: #78bb1b;
    --brand-dark: #345A00;
    --muted: #6c757d;

    --bg: #f8fbf6;
    --bg-elev: #ffffff;
    --bg-soft: #f2faf0;
    --accent: #e6f7d8;

    --max-width: 1100px;
    --radius: 10px;
    --easing: cubic-bezier(.2, .9, .2, 1);
    --glass: rgba(255, 255, 255, 0.06);

    --section-pad: 36px;
    --section-gap: 28px;
    --header-height: 88px;

    --font-ui: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-head: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --type-scale-ratio: 1.2;

    --logo-mobile-height: 48px;
    --logo-desktop-height: 85px;
    --logo-tablet-height: 56px;
    --header-mobile-padding: 8px;
}

/* ---------------- Page-level basics ---------------- */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 16px;
    color: #222;
    line-height: 1.65;
    margin: 0;
    padding-top: var(--header-height);
}

/* ---------------- Headings & containers ---------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head), serif;
    color: var(--brand-dark);
    margin: 0 0 12px 0;
    line-height: 1.18;
}

h1 {
    font-size: 2.6rem;
    margin-top: 6px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 1.6rem;
    margin-top: 18px;
    font-weight: 700;
    line-height: 1.18;
}

h3 {
    font-size: 1.1rem;
    margin-top: 14px;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    margin-top: 12px;
}

strong {
    font-weight: 700;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-pad) 0;
}

.lead {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

section+section,
.section+.section {
    margin-top: var(--section-gap);
}

/* ---------------- Header ---------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1100;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98));
    border-bottom: 1px solid rgba(16, 24, 40, 0.04);
    backdrop-filter: blur(6px);
    transition: background .22s var(--easing), box-shadow .22s var(--easing);
    -webkit-font-smoothing: antialiased;
    will-change: transform, box-shadow;
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.99);
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-sizing: border-box;
}

/* logo area */
.logo-with-tagline {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo {
    height: var(--logo-desktop-height);
    display: block;
    transition: transform .18s var(--easing);
}

.site-logo:hover {
    transform: scale(1.03);
}

.tagline {
    font-family: var(--font-ui), serif;
    font-size: 1.02rem;
    color: var(--brand-dark);
    letter-spacing: 0.2px;
}

/* ---------------- Navigation ---------------- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 200;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    margin-left: 10px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    border-radius: 10px;
    transition:
        color .24s var(--easing),
        background-color .24s var(--easing),
        box-shadow .24s var(--easing);
    will-change: color, background-color, box-shadow;
    -webkit-tap-highlight-color: transparent;
}

.main-nav a:hover {
    background: rgba(120, 187, 27, 0.06);
    color: var(--brand-dark);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.main-nav a.active {
    color: var(--brand);
    background: rgba(120, 187, 27, 0.09);
    box-shadow: inset 0 0 0 1px rgba(120, 187, 27, 0.03);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 3px;
    bottom: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand) 0%, color-mix(in srgb, var(--brand), black 10%) 100%);
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
    transition: transform .32s cubic-bezier(.2, .9, .25, 1), opacity .22s ease;
    pointer-events: none;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.main-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(120, 187, 27, 0.10);
}

@media (max-width:880px) {
    .tagline {
        display: none;
    }

    .site-logo {
        height: var(--logo-tablet-height);
    }

    .header-inner {
        padding: 10px 10px;
    }

    .main-nav a {
        padding: 8px 10px;
        margin-left: 8px;
        font-size: 0.95rem;
    }

    .main-nav a::after {
        left: 8px;
        right: 8px;
        bottom: 6px;
        height: 2px;
    }

    :root {
        --header-height: 72px;
    }

    body {
        padding-top: var(--header-height);
    }
}

/* ---------------- Slider  ---------------- */
.hero {
    padding: 0;
    margin-bottom: 12px;
}

.hero .slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(.78) contrast(1.04);
    transition: transform 12s linear, filter .4s ease;
}

.slide.active img {
    transform: scale(1.035);
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.36) 35%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.slide .overlay {
    position: absolute;
    left: 6%;
    top: calc(30% + 6px);
    z-index: 1;
    color: #fff;
    max-width: 640px;
    padding: 6px 0;
    transform: translateY(6px);
    opacity: 0;
    animation: fadeUp .6s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide .overlay h1,
.slide .overlay p {
    color: #fff !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* === CTA Button === */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: linear-gradient(180deg,
            rgba(120, 187, 27, 0.97) 0%,
            rgba(104, 167, 24, 1) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(120, 187, 27, 0.18);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s var(--easing);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    opacity: 0;
    transform: translateY(6px);
    animation: ctaIn 0.55s 0.48s both cubic-bezier(0.2, 0.9, 0.25, 1);
}

@keyframes ctaIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta:hover,
.btn-cta:focus {
    background: linear-gradient(180deg,
            var(--brand-dark) 0%,
            color-mix(in srgb, var(--brand-dark) 90%, black 8%) 100%);
    box-shadow: 0 14px 40px rgba(52, 90, 0, 0.28);
    transform: translateY(-3px);
    outline: none;
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.995);
    box-shadow: 0 8px 20px rgba(52, 90, 0, 0.2);
}

.btn-cta:focus-visible {
    box-shadow: 0 0 0 4px rgba(120, 187, 27, 0.2),
        0 12px 36px rgba(52, 90, 0, 0.15);
}

.btn-cta .cta-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    fill: currentColor;
    opacity: 0.95;
    transform: translateX(0);
    transition: transform 0.18s var(--easing);
}

.btn-cta:hover .cta-icon {
    transform: translateX(4px);
}

/* dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    margin: 2px;
    transition: transform .18s, background .18s;
}

.dots button.on {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* ---------------- Sections & cards ---------------- */
.section--muted {
    background: var(--bg-soft);
    padding: var(--section-pad) 0;
}

.section--white {
    background: var(--bg-elev);
    padding: var(--section-pad) 0;
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.02);
    border-radius: 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.product-card {
    background: var(--bg-elev);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    transition: transform .18s var(--easing), box-shadow .18s var(--easing);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(16, 24, 40, 0.06);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
}

.product-tag:hover {
    background: var(--brand-dark);
}

/* ---------------- Contact ---------------- */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
    padding: 36px 0 56px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-form h2 {
    margin-bottom: 14px;
}

#google-form {
    border: none;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-info-list li i,
.contact-list li i {
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff;
    color: var(--brand);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.contact-info .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-info .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--brand-dark);
    transition: all .18s var(--easing);
}

.contact-info .social-icons a:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-4px);
}

/* ---------------- Reviews ---------------- */
.reviews {
    padding-top: 36px;
    padding-bottom: 56px;
    background: var(--bg-soft);
    border-top: 1px solid rgba(16, 24, 40, 0.02);
    border-bottom: 1px solid rgba(16, 24, 40, 0.02);
}

.reviews h3 {
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 28px 0;
    color: var(--brand-dark);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.review-card {
    background: var(--bg-elev);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    padding: 32px 30px;
    transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.review-text {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 20px;
    position: relative;
    padding-top: 10px;
}

.review-text::before {
    content: open-quote;
    color: var(--brand);
    font-size: 2.4rem;
    line-height: 1;
    position: absolute;
    left: -6px;
    top: -10px;
    opacity: 0.95;
}

.review-text::after {
    content: close-quote;
    color: var(--brand);
    font-size: 2.2rem;
    vertical-align: text-top;
    opacity: 0.9;
    margin-left: 2px;
}

.review-author {
    border-top: 1px solid rgba(16, 24, 40, 0.05);
    padding-top: 12px;
}

.review-author h4 {
    margin: 0;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1rem;
}

.review-author p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--brand);
    color: #fff;
    padding: 48px 0 24px;
    margin-top: 40px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 360px 220px;
    gap: 28px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.05rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 10px;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
}

.contact-list li i {
    font-size: 18px;
    width: 28px;
    text-align: center;
    opacity: 0.95;
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: transform .16s ease, background .16s ease;
}

.footer-social .social-icons a:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 32px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.95);
}

/* ---------------- Utilities & accessibility ---------------- */
img {
    display: block;
    max-width: 100%;
}

a:focus,
button:focus {
    outline: 3px solid rgba(120, 187, 27, 0.18);
    outline-offset: 3px;
}

a {
    transition: color .16s ease, opacity .16s ease;
}

button,
.btn,
.btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover,
.btn:hover,
.btn-primary:hover {
    background: var(--brand-dark);
}

/* ---------------- Responsive tweaks ---------------- */
@media (max-width:980px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-list li {
        align-items: center;
    }

    .contact-info-list li i {
        display: none;
    }

    .footer-social .social-icons a,
    .contact-info .social-icons a {
        width: 40px;
        height: 40px;
    }

    .hero .slider {
        height: 360px;
    }

    .slide img,
    .slide.active img {
        height: 360px;
    }

    .slide .overlay {
        top: 20%;
        left: 5%;
    }

    .slide .overlay h1 {
        font-size: 1.6rem;
    }

    .slide .overlay p {
        font-size: 0.95rem;
        max-width: 360px;
    }

    .product-card {
        padding: 14px;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .about-content {
        order: 0;
    }

    .about-content .lead {
        max-width: 100%;
    }

    .about-visual {
        order: 1;
        align-items: center;
    }

    .about-visual .visual-frame,
    .visual-grid {
        width: 100%;
        max-width: 100%;
    }

    .visual-grid img {
        height: 160px;
        object-fit: cover;
    }

    .why-list li {
        padding: 12px;
    }

    /* === About Hero Section === */
    .about-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-hero .lead {
        max-width: 100%;
    }

    .about-stats {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }

    .stat {
        text-align: left;
    }

    /* === Explore Page === */
    .explore-hero .intro {
        max-width: 100%;
    }

    .explore-hero-image img {
        height: 260px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bullets {
        gap: 8px;
    }

    /* === Slider (Hero Section) === */
    .slide .overlay {
        top: 12% !important;
        left: 5% !important;
        right: 5% !important;
        max-width: calc(100% - 40px) !important;
        padding-bottom: 14px !important;
        z-index: 5 !important;
        max-height: 72vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .slide .overlay .overlay-title {
        font-size: 1.6rem !important;
        line-height: 1.06 !important;
    }

    .slide .overlay .overlay-sub {
        font-size: 0.95rem !important;
    }

    .btn-cta {
        position: relative !important;
        z-index: 6 !important;
        opacity: 1 !important;
        padding: 10px 18px !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(52, 90, 0, 0.14) !important;
    }

    .dots {
        bottom: 8px !important;
    }

    .hero .slider {
        height: 360px !important;
    }

    .slide img,
    .slide.active img {
        height: 360px !important;
    }

    .site-contact-form {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    .card-info {
        order: 1;
    }

    .card-form {
        order: 0;
    }
}

@media (max-width:520px) {
    :root {
        --section-pad: 36px;
        --header-height: 72px;
    }

    .site-logo {
        height: var(--logo-mobile-height);
    }

    .header-inner {
        padding: 8px 8px;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    body {
        padding-top: var(--header-height);
    }

    .hero .slider {
        height: 300px;
    }

    .slide img,
    .slide.active img {
        height: 300px;
    }

    .site-footer {
        padding: 32px 0 20px;
    }

    .about-page {
        padding: 36px 0;
    }

    .about-grid {
        padding: 0 12px;
        gap: 18px;
    }

    .why-list li i {
        width: 36px;
        height: 36px;
    }

    .cert {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .main-nav {
        gap: 4px;
    }

    .explore-hero-image img {
        height: 220px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-bullets li {
        font-size: 0.92rem;
        padding: 8px 10px;
    }
}

.social-icons a,
.footer-social .social-icons a,
.contact-info .social-icons a {
    text-decoration: none !important;
}

.slide .overlay {
    left: 6%;
    top: 26%;
    max-width: 680px;
    padding: 6px 12px 12px 6px;
    transform: translateY(8px);
    opacity: 0;
    animation: overlayIn .7s .12s both cubic-bezier(.2, .9, .25, 1);
}

.overlay-kicker {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .85);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.overlay-title {
    font-size: 2.6rem;
    line-height: 1.03;
    margin: 0 0 12px 0;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: block;
}

.overlay-title .accent {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.overlay-underline {
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.65));
    margin: 8px 0 18px 0;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: .95;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    animation: underlineIn .6s .24s both cubic-bezier(.2, .9, .25, 1);
}

.overlay-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
    margin: 0 0 18px 0;
    line-height: 1.45;
    max-width: 560px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

@keyframes overlayIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.slide .overlay::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, rgba(120, 187, 27, 0.08), rgba(120, 187, 27, 0.02) 40%, transparent 60%);
    filter: blur(14px);
    z-index: -1;
    pointer-events: none;
    opacity: .95;
}

/* =================== Premium About Page Styles =================== */

.about-page {
    color: #222;
    background: linear-gradient(180deg, rgba(248, 251, 246, 1) 0%, rgba(245, 249, 243, 1) 100%);
}

.about-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.about-content .lead {
    font-size: 1.06rem;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 86%;
}

/* Paragraphs */
.about-content p {
    color: #2b2b2b;
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 16px;
    text-wrap: balance;
}

/* Emphasize certifications inline */
.about-content strong {
    color: #111;
    font-weight: 700;
}

/* WHY list: premium card-like items with left accent */
.why-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 6px 0;
    display: grid;
    gap: 12px;
}

.why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(252, 255, 249, 0.98));
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.03);
    transition: transform .18s var(--easing), box-shadow .18s var(--easing);
}

/* subtle lift on hover */
.why-list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

/* check icon style */
.why-list li i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand) 0%, color-mix(in srgb, var(--brand), black 6%) 100%);
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

/* why-list text */
.why-list li span {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    line-height: 1.4;
}

/* Closing paragraph / CTA line */
.about-content .closing {
    margin-top: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1.02rem;
}

/* Certification badges — refined pill badges */
.cert-list {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-weight: 700;
    color: var(--brand-dark);
    background: rgba(120, 187, 27, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(120, 187, 27, 0.08);
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.02);
}

/* Right column: image visual */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

/* image container with subtle frame */
.about-visual .visual-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 247, 0.98));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.06);
    transform-origin: center;
    transition: transform .24s var(--easing), box-shadow .24s var(--easing);
}

/* image styling */
.about-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* hover interaction on image frame */
.about-visual .visual-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 32px 64px rgba(16, 24, 40, 0.08);
}

/* figure caption */
.about-visual .vis-caption {
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
    max-width: 420px;
}

/* subtle decorative divider between content & visual on wide screens */
@media (min-width: 1300px) {
    .about-grid {
        grid-template-columns: 1fr 420px;
    }

    .about-content {
        padding-right: 8px;
    }
}

/* =================== micro-utilities (for polish) =================== */
.u-small {
    font-size: 0.92rem;
    color: var(--muted);
}

.u-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--muted);
}

@media (prefers-contrast: more) {
    .why-list li {
        box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
        border-color: rgba(16, 24, 40, 0.06);
    }
}

/* ===== About page: breadcrumb + hero + quick-links ===== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    color: rgba(0, 0, 0, 0.45);
}

/* hero inner split: intro + small stats */
.about-hero {
    padding: 24px 0 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(248, 251, 246, 0.02));
}

.about-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero .lead {
    max-width: 72%;
}

/* CTAs in hero */
.about-hero-ctas {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(52, 90, 0, 0.08);
    color: var(--brand-dark);
}

/* small stats block */
.about-stats {
    display: flex;
    gap: 18px;
    align-items: center;
}

.stat {
    text-align: right;
    min-width: 120px;
}

.stat-value {
    font-weight: 800;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Quick links grid (cards) */
.quick-links {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.ql-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
    text-decoration: none;
    color: #222;
    transition: transform .18s var(--easing), box-shadow .18s var(--easing), background .18s var(--easing);
}

.ql-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(16, 24, 40, 0.06);
}

.ql-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand), black 8%));
    color: #fff;
    box-shadow: 0 8px 20px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

.ql-body strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.ql-body small {
    color: var(--muted);
    font-size: 0.92rem;
}

/* micro CTA area on card */
.ql-cta {
    margin-left: auto;
    font-weight: 700;
    color: var(--brand-dark);
}

/* === About visual gallery (4 images + single caption) === */
.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.visual-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

/* subtle hover lift effect */
.visual-grid img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.08);
}

/* caption under all images */
.about-visual .vis-caption {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    line-height: 1.5;
}

/* responsive behavior */
@media (max-width: 700px) {
    .visual-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .visual-grid img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 48px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .visual-grid img {
        height: 200px;
    }

    .site-header {
        height: auto;
        min-height: calc(var(--logo-mobile-height) + var(--header-mobile-padding) * 2);
        box-sizing: border-box;
    }

    /* padding top of body should be equal to site header height */
    body {
        padding-top: var(--header-height);
    }

    .header-inner {
        padding: var(--header-mobile-padding) 8px !important;
        align-items: center;
        gap: 12px;
    }

    .site-logo {
        height: var(--logo-mobile-height) !important;
        max-height: var(--logo-mobile-height) !important;
        width: auto !important;
        object-fit: contain;
        display: block;
    }

    .main-nav {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav a {
        padding: 8px 10px !important;
        white-space: nowrap;
    }

    .dots button {
        width: 4px;
        height: auto;
    }
}

/* =========== Refactored Explore styles — sleek & compact =========== */
.explore-page {
    padding: 36px 0 64px;
    color: #222;
}

/* hero */
.explore-hero .lead {
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.explore-hero .intro {
    margin-bottom: 18px;
    color: #333;
    max-width: 72%;
}

/* inline hero image (single image, centered, elegant) */
.explore-hero-image {
    margin-top: 14px;
    display: block;
    max-width: 820px;
    margin-left: 0;
    /* will center via container */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.035);
}

.explore-hero-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.explore-hero-image .vis-caption {
    font-size: 0.95rem;
    color: var(--muted);
    padding: 12px 8px;
    text-align: center;
}

/* single-column content layout (no right column) */
.explore-content {
    max-width: var(--max-width);
    margin: 22px auto 0;
    padding: 0 20px;
}

/* bullets row (compact chips) */
.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-bullets li {
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.03);
    border: 1px solid rgba(16, 24, 40, 0.025);
    font-size: 0.95rem;
}

/* benefits grid — compact cards */
.subhead {
    margin-top: 8px;
    font-size: 1.08rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.03);
    border: 1px solid rgba(16, 24, 40, 0.03);
    transition: transform .16s var(--easing), box-shadow .16s var(--easing);
}

.benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.06);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand), black 8%));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 8px 22px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

.benefit-body h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.benefit-body p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* sourced line */
.sourced {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* did-you-know */
.did-you-know {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(246, 251, 245, 1), rgba(250, 255, 247, 1));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.03);
}

.did-you-know h3 {
    margin: 0 0 6px 0;
    color: var(--brand-dark);
}

/* nutrition table */
.nutrition {
    margin-top: 18px;
}

.nutrition h3 {
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.u-small {
    font-size: 0.92rem;
    color: var(--muted);
}

.nutrient-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    max-width: 560px;
    background: transparent;
}

.nutrient-table thead th {
    text-align: left;
    font-weight: 700;
    padding: 8px;
    color: #333;
}

.nutrient-table tbody tr {
    border-top: 1px solid rgba(16, 24, 40, 0.03);
    transition: background .18s var(--easing);
    outline: none;
}

.nutrient-table tbody tr:hover,
.nutrient-table tbody tr:focus,
.nutrient-table tbody tr:focus-within {
    background: rgba(120, 187, 27, 0.03);
}

.nutrient-table .nt-value {
    padding: 10px 8px;
    color: transparent;
    transition: color .22s ease, transform .18s var(--easing);
}

.nutrient-table tbody tr:hover .nt-value,
.nutrient-table tbody tr:focus .nt-value {
    color: #222;
    transform: translateX(0);
}

/* Card base */
.card {
    background: var(--bg-elev);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 24, 40, 0.04);
    overflow: visible;
}

/* Inner padding so we can keep consistent spacing */
.card-inner {
    padding: 22px;
}

/* Layout adjustments: left form wider on desktop, stack on mobile */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Form card specifics */
.card-form .lead {
    margin-top: 6px;
    margin-bottom: 14px;
    color: var(--muted);
}

.site-contact-form {
    max-width: 100%;
}

.site-contact-form .form-row {
    margin-bottom: 14px;
    display: block;
}

.site-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--brand-dark);
}

.site-contact-form input[type="text"],
.site-contact-form input[type="email"],
.site-contact-form input[type="tel"],
.site-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

/* Form actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.form-status {
    color: var(--muted);
    font-size: 0.95rem;
}

/* success box */
.thankyou-message {
    background: linear-gradient(180deg, rgba(248, 251, 246, 1), rgba(250, 255, 247, 1));
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
    margin-top: 14px;
}

/* card-inner already contains padding */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.contact-info-list li i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand), black 6%));
    color: #fff;
    box-shadow: 0 10px 28px rgba(120, 187, 27, 0.14);
    flex-shrink: 0;
}

/* contact social icons inside the card */
.contact-social {
    margin-top: 8px;
}

.contact-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.contact-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--brand-dark);
    text-decoration: none;
    transition: all .16s var(--easing);
}

.contact-social .social-icons a:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-4px);
}

/* === Global Typography Enhancements === */
h1,
h2,
h3,
h4 {
    letter-spacing: 0.4px;
}

.tagline,
.overlay-kicker,
.nav a,
.btn,
.site-footer h4 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a {
    letter-spacing: 0.8px;
}

body,
p,
li {
    letter-spacing: 0.2px;
}


/* Ensure child elements don't accidentally expand or overflow */
.hero .slider *,
.hero .slide {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box;
}

/* Make sure the images fit perfectly without causing overflow */
.hero .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}