:root {
    /* Brand: primary = green, secondary = gold (accent in code) */
    --forest: #2f8f00;
    --eco: #2f8f00;
    --eco-hover: #268000;
    --accent: #fdaf18;
    --secondary: #fdaf18;
    --accent-hover: #e89a08;
    --secondary-hover: #e89a08;
    --cream: #f7f4eb;
    --white: #ffffff;
    --charcoal: #3b3b31;
    --charcoal-muted: #5c5c52;
    --shadow: 0 4px 24px rgba(47, 143, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(47, 143, 0, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --topbar-height: 42px;
    --nav-height: 76px;
    --header-offset: calc(var(--topbar-height) + var(--nav-height));
    --touch-min: 44px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    padding-top: var(--header-offset);
    overflow-x: hidden;
}

.site-main {
    min-width: 0;
    overflow-x: clip;
}

img, svg, video, canvas { max-width: 100%; height: auto; }

p, li, .lead {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    color: var(--forest);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3, h4, h5 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--eco-hover); }

.container,
.container-fluid {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

/* ========== TOP BAR ========== */
.site-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--forest);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: clamp(1rem, 3vw, 2rem);
    row-gap: 0.5rem;
    padding: 0.5rem 0;
    width: 100%;
}

.site-topbar__group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.site-topbar__group--location {
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.site-topbar__group--location i {
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.site-topbar__group--location span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-topbar__group--contact {
    flex-wrap: nowrap;
    gap: 0.65rem;
}

.site-topbar__sep {
    width: 1px;
    height: 1.1em;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.site-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
}

.site-topbar__link:hover {
    color: var(--accent);
}

.site-topbar__link i {
    font-size: 0.85rem;
    color: var(--accent);
    flex-shrink: 0;
}

.site-topbar__group--social {
    gap: 0.6rem;
    flex-shrink: 0;
}

.site-topbar__social {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.site-topbar__social a:hover {
    background: var(--accent);
    color: var(--charcoal);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .site-topbar__inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "location social"
            "contact contact";
    }

    .site-topbar__group--location { grid-area: location; }
    .site-topbar__group--contact {
        grid-area: contact;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }
    .site-topbar__group--social {
        grid-area: social;
        justify-self: end;
    }
}

@media (max-width: 767.98px) {
    :root {
        --topbar-height: 72px;
    }

    .site-topbar__group--social,
    .site-topbar__link--phone,
    .site-topbar__group--contact .site-topbar__sep {
        display: none !important;
    }

    .site-topbar__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "location"
            "contact";
        justify-items: center;
        text-align: center;
        row-gap: 0.35rem;
        padding: 0.4rem 0;
    }

    .site-topbar__group--location,
    .site-topbar__group--contact {
        justify-content: center;
        justify-self: center;
        width: 100%;
    }

    .site-topbar__group--contact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .site-topbar__link span {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --topbar-height: 64px;
    }

    .site-topbar__group--location span {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 399.98px) {
    .site-topbar {
        font-size: 0.72rem;
    }

    .site-topbar__link--email span {
        max-width: 14rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: bottom;
    }

    .site-topbar__social a {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

/* ========== NAVBAR ========== */
.navbar-greenshero {
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(47, 143, 0, 0.06);
    padding: 0.45rem 0;
    min-height: var(--nav-height);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Keep Bootstrap fixed-top (do not set position: relative on the navbar) */
.navbar-greenshero.fixed-top {
    top: var(--topbar-height);
    z-index: 1030;
}

.navbar-greenshero.navbar--scrolled {
    box-shadow: 0 8px 32px rgba(47, 143, 0, 0.1);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.navbar-greenshero__wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    gap: 0.5rem 0.75rem;
    position: relative;
}

.navbar-greenshero__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    gap: 0.5rem 0.75rem;
    min-width: 0;
}

.navbar-greenshero .navbar-brand {
    padding: 0.25rem 0;
    margin-right: auto;
    flex-shrink: 1;
    min-width: 0;
}

.navbar-greenshero .navbar-brand--center {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    margin-right: 0;
}

.navbar-greenshero .navbar-brand--center:hover {
    color: inherit;
    opacity: 0.92;
}

.navbar-brand-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    line-height: 1.2;
}

.navbar-brand-name {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    font-weight: 700;
    color: var(--forest);
    white-space: nowrap;
}

.navbar-brand-tagline {
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1.25;
    max-width: 22ch;
}

.navbar-greenshero .navbar-toggler--start {
    flex-shrink: 0;
    margin-right: 0;
    margin-left: 0;
}

.navbar-greenshero .logo-img {
    height: clamp(44px, 10vw, 56px);
    width: auto;
    max-width: min(280px, 72vw);
    display: block;
    object-fit: contain;
}

.navbar-greenshero .logo-img-tablet {
    height: 48px;
    max-width: min(220px, 60vw);
}

.navbar-greenshero .logo-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 3px;
    box-shadow: 0 2px 10px rgba(47, 143, 0, 0.12);
}

.navbar-greenshero .nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
}

.navbar-greenshero .nav-link:hover {
    color: var(--forest);
    background: rgba(47, 143, 0, 0.08);
}

.navbar-greenshero .nav-link.active {
    color: var(--forest);
    font-weight: 700;
    background: rgba(47, 143, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(47, 143, 0, 0.15);
}

.nav-cta-wrap .btn-partner {
    border-radius: 50px;
    font-weight: 700;
    padding: 0.55rem 1.35rem !important;
    box-shadow: 0 4px 16px rgba(253, 175, 24, 0.35);
    white-space: nowrap;
}

.nav-cta-wrap .btn-partner:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(253, 175, 24, 0.45);
}

.navbar-toggler {
    border: 2px solid rgba(47, 143, 0, 0.25);
    background: rgba(47, 143, 0, 0.04);
    padding: 0.5rem 0.65rem;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    border-radius: 12px;
    transition: border-color 0.2s, background 0.2s;
}

.navbar-toggler:hover {
    border-color: var(--forest);
    background: rgba(47, 143, 0, 0.08);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 143, 0, 0.35);
}

.navbar-toggler-icon {
    width: 1.35em;
    height: 1.35em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232f8f00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile — hamburger left, logo centered, full-height slide-in drawer */
@media (max-width: 991.98px) {
    .navbar-greenshero {
        flex-wrap: nowrap;
        align-items: stretch;
        z-index: 1070;
    }

    .navbar-greenshero__wrap {
        position: relative;
        z-index: 1071;
    }

    .navbar-greenshero__bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        align-items: center;
        column-gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
        flex: 1 1 auto;
    }

    .navbar-greenshero .navbar-toggler--start {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        position: relative;
        z-index: 1072;
    }

    .navbar-greenshero .navbar-toggler--start[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232f8f00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
    }

    .navbar-greenshero .navbar-brand--center {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        max-width: 100%;
        padding: 0.15rem 0;
    }

    .navbar-bar-spacer {
        grid-column: 3;
        grid-row: 1;
        width: var(--touch-min);
        min-height: var(--touch-min);
        justify-self: end;
    }

    .navbar-greenshero .navbar-brand--center .logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .navbar-greenshero .navbar-brand--center .navbar-brand-copy {
        align-items: center;
        text-align: center;
    }

    .navbar-greenshero .navbar-brand-tagline {
        max-width: min(22ch, 52vw);
    }

    /* Drawer is teleported to <body> on mobile (see main.js) */
    .navbar-greenshero__drawer {
        position: fixed;
        top: var(--header-offset);
        left: 0;
        bottom: 0;
        width: min(320px, 92vw);
        margin: 0;
        padding: 0;
        background: var(--white);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1065;
        border-right: 1px solid rgba(47, 143, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
        transition: transform 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        will-change: transform;
    }

    .navbar-greenshero__drawer.is-open {
        visibility: visible;
        transform: translate3d(0, 0, 0);
        pointer-events: auto;
    }

    .navbar-greenshero__drawer-inner {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
        padding: 1.25rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .navbar-greenshero__drawer-label {
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--charcoal-muted);
        margin: 0 0 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(47, 143, 0, 0.1);
    }

    .navbar-greenshero .navbar-nav {
        gap: 0.15rem;
        margin: 0 0 1rem !important;
        width: 100%;
        flex-direction: column;
    }

    .navbar-greenshero .nav-link {
        font-size: 1.05rem;
        padding: 0.85rem 0.75rem !important;
        border-bottom: none;
        width: 100%;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .navbar-greenshero .nav-link.active {
        border-radius: 10px;
    }

    .nav-cta-wrap {
        padding-top: 0.75rem;
        width: 100%;
        margin-top: auto;
    }

    .btn-partner {
        min-height: var(--touch-min);
        font-size: 1rem;
        padding: 0.85rem 1.25rem !important;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

/* Drawer backdrop (injected by main.js) */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 15, 0.55);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 992px) {
    .navbar-greenshero {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-greenshero__wrap {
        flex-wrap: nowrap;
    }

    .navbar-greenshero__bar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.75rem;
        flex: 0 0 auto;
        width: auto;
    }

    .navbar-greenshero .navbar-brand {
        margin-right: 0;
        flex: 0 0 auto;
        max-width: none;
    }

    .navbar-greenshero__drawer {
        display: flex !important;
        flex: 1 1 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5rem;
        position: static;
        width: auto;
        height: auto;
        max-width: none;
        padding: 0;
        overflow: visible;
        box-shadow: none;
        border: none;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .navbar-greenshero__drawer[aria-hidden="true"] {
        visibility: visible;
    }

    .navbar-greenshero__drawer-inner {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        width: 100%;
        padding: 0;
        overflow: visible;
    }

    .navbar-greenshero__drawer-label {
        display: none;
    }

    .navbar-greenshero .navbar-nav {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 0.15rem;
    }

    .navbar-greenshero .nav-link {
        border-bottom: none;
        width: auto;
        white-space: nowrap;
    }

    .nav-cta-wrap {
        flex: 0 0 auto;
        margin-left: 0.5rem;
        margin-top: 0;
        width: auto;
    }

    .btn-partner { white-space: nowrap; }
}

/* ========== BUTTONS ========== */
.btn {
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:disabled {
    background: var(--eco);
    border-color: var(--eco);
    color: var(--white) !important;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(47, 143, 0, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--eco-hover);
    border-color: var(--eco-hover);
}

/* Secondary brand color (gold) */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
a.btn-secondary,
.btn-accent,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active,
.btn-accent.active,
a.btn-accent {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white) !important;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(253, 175, 24, 0.45);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

/* Secondary-style buttons: green (forest) fill */
.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
a.btn-outline-primary {
    color: var(--white) !important;
    background: var(--forest);
    border-color: var(--forest);
    border-width: 2px;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--eco-hover);
    border-color: var(--eco-hover);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.9);
    border-width: 2px;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--forest);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover { background: #1da851; color: var(--white); }

.btn-sm { min-height: 38px; }

.btn-lg {
    min-height: 48px;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-slider--home {
    min-height: clamp(480px, 78vh, 720px);
}

.hero-slider--page {
    min-height: 0;
}

.hero-slider__backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider__bg {
    position: absolute;
    inset: 0;
    background-color: var(--forest);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slider__bg.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(47, 143, 0, 0.92) 0%, rgba(47, 143, 0, 0.45) 42%, rgba(38, 128, 0, 0.55) 100%),
        linear-gradient(0deg, rgba(47, 143, 0, 0.85) 0%, transparent 38%);
    pointer-events: none;
}

.hero-slider__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: inherit;
    padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-slider__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hero-slider--home .hero-slider__inner {
    justify-content: center;
    padding: clamp(3rem, 9vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5rem);
}

.hero-slider--home .hero-slider__content {
    max-width: 640px;
}

.hero-slider--page .hero-slider__inner {
    justify-content: center;
    padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.hero-slider--page .hero-slider__content {
    flex: none;
    justify-content: center;
}

.hero-slider--page .hero-slider__copy {
    max-width: min(720px, 100%);
}

.hero-slider__copy {
    max-width: min(920px, 100%);
    position: relative;
}

.hero-slider--home .hero-slider__copy {
    max-width: 100%;
}

.hero-slider__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
}

.hero-slider__kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(253, 175, 24, 0.35);
}

.hero-slider__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.25rem;
    line-height: 1.45;
    max-width: 42ch;
}

.hero-slider__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.5rem;
}

.hero-slider__lead {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.25rem;
    max-width: 52ch;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-slider__lead.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.hero-slider--home .hero-slider__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.75;
    margin: 0 0 2rem;
    max-width: 46ch;
}

.hero-slider__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.hero-slider__highlights li {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-slider__counter {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.75rem;
}

.hero-slider__counter [data-hero-counter-current] {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-slider__counter-sep {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.hero-slider__title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    font-size: clamp(2.75rem, 10vw, 5.75rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 12ch;
}

.hero-slider--home .hero-slider__title {
    font-size: clamp(2.5rem, 7.5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    max-width: 11em;
    text-wrap: balance;
}

.hero-slider__title.is-changing {
    opacity: 0;
    transform: translateY(12px);
}

.hero-slider--page .hero-slider__title {
    font-size: clamp(1.85rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: min(16em, 100%);
    text-wrap: balance;
}

.hero-slider--page .hero-slider__lead {
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    line-height: 1.65;
    margin: 0;
    max-width: 50ch;
}

.hero-slider__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-slider--home .hero-slider__actions {
    margin-bottom: 0;
}

.hero-slider__actions .btn {
    min-width: min(100%, 180px);
    font-weight: 600;
    padding: 0.85rem 1.75rem;
}

.hero-slider__actions .btn-outline-light:hover {
    color: var(--forest);
}

.hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
}

.hero-slider--page .hero-slider__controls {
    width: 100%;
}

.hero-slider--home .hero-slider__controls {
    margin-top: 1.75rem;
    padding-top: 0;
    justify-content: flex-start;
}

.hero-slider__controls--dots-only {
    justify-content: flex-start;
    padding-top: 0;
}

/* Mobile / tablet — centered, balanced hero copy */
@media (max-width: 991.98px) {
    .hero-slider--home .hero-slider__inner,
    .hero-slider--page .hero-slider__inner {
        align-items: center;
    }

    .hero-slider--home .hero-slider__content,
    .hero-slider--page .hero-slider__content {
        align-items: center;
        width: 100%;
    }

    .hero-slider--home .hero-slider__copy,
    .hero-slider--page .hero-slider__copy {
        width: 100%;
        max-width: min(34rem, 100%);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-slider--home .hero-slider__title,
    .hero-slider--page .hero-slider__title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-slider--home .hero-slider__lead,
    .hero-slider--page .hero-slider__lead {
        max-width: 42ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-slider--home .hero-slider__actions,
    .hero-slider--page .hero-slider__actions {
        justify-content: center;
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        box-sizing: border-box;
    }

    .hero-slider__actions .btn {
        min-width: 0;
        min-height: 44px;
        padding: 0.65rem 1.15rem;
        font-size: 0.9rem;
    }

    .hero-slider--home .hero-slider__controls,
    .hero-slider--home .hero-slider__controls--dots-only {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-slider--home .hero-slider__inner {
        padding-top: clamp(2rem, 6vw, 3rem);
        padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-slider--home .hero-slider__title {
        font-size: clamp(2.15rem, 11vw, 2.75rem);
        max-width: 100%;
    }

    .hero-slider--home .hero-slider__lead {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-slider__actions {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-slider__actions .btn {
        width: 100%;
        min-height: 40px;
        padding: 0.55rem 0.9rem;
        font-size: 0.875rem;
        line-height: 1.25;
    }
}

.hero-slider__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.15);
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--white);
}

/* Hero without background photos — solid brand green */
.hero-slider--no-photo .hero-slider__bg {
    background-image: none;
    transform: none;
}

.hero-slider--no-photo .hero-slider__bg.is-active {
    transform: none;
}

.hero-slider--no-photo .hero-slider__bg:nth-child(1) {
    background: linear-gradient(135deg, var(--forest) 0%, var(--eco-hover) 100%);
}

.hero-slider--no-photo .hero-slider__bg:nth-child(2) {
    background: linear-gradient(145deg, var(--eco-hover) 0%, var(--forest) 55%, #1f6d00 100%);
}

.hero-slider--no-photo .hero-slider__bg:nth-child(3) {
    background: linear-gradient(120deg, var(--forest) 0%, #3da312 50%, var(--eco-hover) 100%);
}

.hero-slider--no-photo .hero-slider__overlay {
    background:
        linear-gradient(105deg, rgba(47, 143, 0, 0.35) 0%, rgba(47, 143, 0, 0.15) 50%, rgba(38, 128, 0, 0.25) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%);
}

.hero-slider--home.hero-slider--no-photo .hero-slider__overlay {
    background:
        linear-gradient(100deg, rgba(47, 143, 0, 0.9) 0%, rgba(47, 143, 0, 0.65) 42%, rgba(38, 128, 0, 0.35) 72%, rgba(38, 128, 0, 0.2) 100%);
}

.hero-slider--page.hero-slider--no-photo .hero-slider__overlay {
    background:
        linear-gradient(100deg, rgba(47, 143, 0, 0.88) 0%, rgba(47, 143, 0, 0.6) 50%, rgba(38, 128, 0, 0.3) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider__bg {
        transition: opacity 0.5s ease;
        transform: none;
    }

    .hero-slider__title,
    .hero-slider__lead {
        transition: none;
    }
}

/* Hero impact strip + service row (home) */
.hero-stats {
    position: relative;
    z-index: 5;
    margin-top: -3.5rem;
    margin-bottom: 0;
}

.hero-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(47, 143, 0, 0.08);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stats__item {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    border-right: 1px solid rgba(47, 143, 0, 0.08);
    border-bottom: 1px solid rgba(47, 143, 0, 0.08);
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-stats__item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-stats__value.is-counting,
    .hero-stats__value.is-done {
        transform: none;
    }
}

.hero-stats__item:last-child {
    border-right: none;
}

@media (min-width: 768px) {
    .hero-stats__item {
        border-bottom: none;
    }
}

.hero-stats__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--forest);
    line-height: 1.1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-stats__value.is-counting {
    color: var(--eco-hover);
    transform: scale(1.04);
}

.hero-stats__value.is-done {
    color: var(--forest);
    transform: scale(1);
}

.hero-stats__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal-muted);
    margin-top: 0.35rem;
    line-height: 1.35;
}

.home-services-strip {
    padding: clamp(2rem, 5vw, 3rem) 0;
    background: var(--cream);
}

.home-services-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .home-services-strip__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
}

.home-services-strip__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.1rem 0.65rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(47, 143, 0, 0.08);
    color: var(--charcoal);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
}

.home-services-strip__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 175, 24, 0.45);
    color: var(--forest);
}

.home-services-strip__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(47, 143, 0, 0.12), rgba(253, 175, 24, 0.15));
    color: var(--eco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.home-services-strip__title {
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.35;
}

.upcycled-showcase {
    border: 1px solid rgba(47, 143, 0, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(1.2rem, 2vw, 1.6rem);
    background: linear-gradient(145deg, #ffffff 0%, #f9f7ef 100%);
    box-shadow: 0 20px 44px rgba(22, 76, 37, 0.08);
}

.upcycled-showcase__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.upcycled-showcase__highlights {
    display: grid;
    gap: 0.45rem;
}

.upcycled-showcase__highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--forest);
}

.upcycled-showcase__highlights i {
    color: var(--accent);
    font-size: 1rem;
}

.upcycled-showcase__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "main main"
        "thumb1 thumb2"
        "thumb3 thumb3";
    gap: 0.8rem;
}

.upcycled-showcase__photo--main {
    grid-area: main;
}

.upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(2) {
    grid-area: thumb1;
}

.upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(3) {
    grid-area: thumb2;
}

.upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(4) {
    grid-area: thumb3;
}

.upcycled-showcase__photo .page-photo {
    margin: 0;
}

.upcycled-showcase__photo .page-photo img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(47, 143, 0, 0.12);
    box-shadow: 0 12px 24px rgba(47, 143, 0, 0.12);
}

.upcycled-showcase__photo--main .page-photo--wide img {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: none;
    object-fit: cover;
}

.home-intro__photos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.85rem 0.4rem;
    align-items: center;
    width: 100%;
}

.home-intro__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    padding: 0 0.15rem;
    flex-shrink: 0;
}

.home-intro__arrow i {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(253, 175, 24, 0.35));
}

.home-intro__photos .page-photo {
    margin: 0;
    height: 100%;
}

.home-intro__photos .page-photo--content img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(47, 143, 0, 0.12);
}

.home-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1.25rem;
    border-top: 3px solid var(--accent);
}

.home-intro__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.home-intro__text {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.88;
}

@media (min-width: 992px) {
    .home-intro__photos {
        gap: 1rem 0.5rem;
    }

    .home-intro__photos .page-photo--content img {
        min-height: clamp(11rem, 22vw, 15.5rem);
    }

    .home-intro__content {
        padding-top: 0;
        padding-left: clamp(1.5rem, 3vw, 2.5rem);
        border-top: none;
        border-left: 3px solid var(--accent);
    }
}

@media (max-width: 767.98px) {
    .home-intro__photos {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .home-intro__arrow {
        padding: 0.15rem 0;
    }

    .home-intro__arrow i {
        transform: rotate(90deg);
    }

    .home-intro__photos .page-photo--content img {
        aspect-ratio: 1 / 1;
    }
}

/* About page — unified feature panel (unique layout) */
.about-panel {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(47, 143, 0, 0.14);
    border: 1px solid rgba(47, 143, 0, 0.12);
    background: var(--white);
}

.about-panel__photos {
    display: flex;
    min-height: clamp(11rem, 26vw, 17.5rem);
    position: relative;
}

.about-panel__photos::after {
    content: '';
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: var(--secondary);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(253, 175, 24, 0.55);
    z-index: 2;
    pointer-events: none;
}

.about-panel__photo {
    flex: 1 1 50%;
    min-width: 0;
    min-height: clamp(11rem, 26vw, 17.5rem);
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, var(--forest) 0%, var(--eco-hover) 100%);
}

.about-panel__slides {
    position: absolute;
    inset: 0;
}

.about-panel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.about-panel__slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    visibility: visible;
}

.about-panel__photo--instant .about-panel__slide {
    transition: none;
}

.about-panel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-panel__photo--empty {
    min-height: 11rem;
    opacity: 0.4;
}

.about-panel__head {
    padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 4vw, 2.5rem);
    background: linear-gradient(118deg, var(--forest) 0%, #267500 55%, var(--eco-hover) 100%);
    color: var(--white);
    text-align: center;
}

.about-panel__eyebrow {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.28rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--secondary);
    border-radius: 50px;
}

.about-panel__title {
    font-size: clamp(1.4rem, 3.8vw, 2rem);
    line-height: 1.2;
    margin: 0 0 0.65rem;
    text-wrap: balance;
    color: var(--white);
}

.about-panel__tagline {
    font-size: clamp(0.88rem, 2vw, 1rem);
    line-height: 1.55;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
}

.about-panel__body {
    display: grid;
    grid-template-columns: 1fr minmax(13rem, 17.5rem);
}

.about-panel__story {
    padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 4vw, 2.25rem);
    font-size: clamp(0.9rem, 1.9vw, 0.98rem);
    line-height: 1.72;
    color: var(--charcoal-muted);
    background: var(--cream);
}

.about-panel__story p + p {
    margin-top: 0.9rem;
}

.about-panel__facts {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--secondary);
}

.about-panel__facts-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.about-panel__facts-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 0.4rem 0;
}

.about-panel__facts-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-panel__facts-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 3px rgba(253, 175, 24, 0.25);
}

@media (max-width: 991.98px) {
    .about-panel__body {
        grid-template-columns: 1fr;
    }

    .about-panel__facts {
        border-left: none;
        border-top: 4px solid var(--secondary);
    }
}

@media (max-width: 575.98px) {
    .about-panel__photos {
        flex-direction: column;
        min-height: 0;
    }

    .about-panel__photos::after {
        top: 50%;
        left: 12%;
        right: 12%;
        bottom: auto;
        width: auto;
        height: 3px;
        transform: translateY(-50%);
    }

    .about-panel__photo {
        min-height: 10rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-panel__slide {
        transition: none;
    }
}

/* ========== SECTIONS ========== */
.section-padding { padding: clamp(2.5rem, 8vw, 5rem) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--forest); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.section-dark .section-label { color: rgba(255, 255, 255, 0.7); }

/* ========== CARDS (shared system) ========== */
.gs-card,
.impact-card,
.feature-card,
.service-card,
.product-card,
.blog-card,
.team-card,
.ppp-card,
.pathway-item,
.contact-info-card {
    --card-radius: 20px;
    position: relative;
    background: var(--white);
    border-radius: var(--card-radius);
    border: 1px solid rgba(47, 143, 0, 0.08);
    box-shadow: 0 4px 6px rgba(47, 143, 0, 0.04), 0 12px 32px rgba(47, 143, 0, 0.08);
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease;
}

.gs-card:hover,
.impact-card:hover,
.feature-card:hover,
.service-card:hover,
.product-card:hover,
.blog-card:hover,
.team-card:hover,
.ppp-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(47, 143, 0, 0.06), 0 24px 48px rgba(47, 143, 0, 0.12);
    border-color: rgba(47, 143, 0, 0.25);
}

/* Shared card typography */
.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 0.65rem;
    line-height: 1.3;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.card-title a:hover { color: var(--eco-hover); }

.card-text {
    font-size: 0.92rem;
    color: var(--charcoal);
    opacity: 0.82;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.72;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-meta i {
    color: var(--eco);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.card-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eco);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest);
    margin-top: auto;
    padding-top: 0.25rem;
}

.card-link:hover {
    color: var(--eco);
    gap: 0.65rem;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--forest);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-badge--light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--forest);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Impact stats */
.impact-card {
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eco), var(--accent));
    z-index: 2;
}

/* Impact cards with photo + top overlay text (home) */
.impact-card--photo {
    padding: 0;
    text-align: left;
    border: none;
    min-height: clamp(220px, 32vw, 300px);
}

.impact-card--photo::before {
    z-index: 3;
}

.impact-card--photo .impact-card__media {
    position: relative;
    width: 100%;
    min-height: inherit;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.impact-card--photo .impact-card__media {
    background: linear-gradient(145deg, var(--forest) 0%, var(--eco-hover) 100%);
}

.impact-card--photo .impact-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: var(--forest);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-card--photo:hover .impact-card__media img {
    transform: scale(1.05);
}

.impact-card--photo .impact-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(20, 55, 10, 0.97) 0%, rgba(47, 143, 0, 0.88) 32%, rgba(47, 143, 0, 0.35) 55%, transparent 78%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, transparent 45%);
    pointer-events: none;
}

.impact-card--photo-fallback .impact-card__media {
    background: linear-gradient(145deg, var(--forest) 0%, var(--eco-hover) 100%);
}

.impact-card--photo .impact-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.15rem, 3vw, 1.5rem);
}

.impact-card--photo .impact-number::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    margin-top: 0.45rem;
    border-radius: 2px;
    background: var(--accent);
}

.impact-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47, 143, 0, 0.12), rgba(253, 175, 24, 0.2));
    color: var(--eco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.impact-card .impact-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.impact-card .impact-label {
    font-size: clamp(0.88rem, 2vw, 0.95rem);
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.55;
    max-width: 28ch;
    margin: 0 auto;
}

.section-dark .impact-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.section-dark .impact-card::before {
    background: linear-gradient(90deg, var(--accent), var(--eco));
}

.section-dark .impact-card__icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.section-dark .impact-card .impact-number { color: var(--white); }
.section-dark .impact-card .impact-label { color: rgba(255, 255, 255, 0.88); }

/* Photo impact cards — must follow generic .impact-card text rules */
.impact-card.impact-card--photo .impact-card__content {
    color: #ffffff;
}

.impact-card.impact-card--photo .impact-number {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 2.35rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 0.4rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.impact-card.impact-card--photo .impact-label {
    font-size: clamp(0.84rem, 2vw, 0.95rem);
    font-weight: 600;
    color: #ffffff;
    opacity: 1;
    line-height: 1.5;
    max-width: none;
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* Feature cards */
.feature-card {
    padding: clamp(1.5rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--eco), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::after { opacity: 1; }

.feature-card .icon-wrap {
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg, var(--cream) 0%, #fff 100%);
    border: 1px solid rgba(47, 143, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--forest);
    margin-bottom: 1.35rem;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover .icon-wrap {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(47, 143, 0, 0.15), var(--cream));
}

.feature-card h5,
.feature-card h4,
.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest);
    margin: 0;
    line-height: 1.45;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.feature-card--primary {
    background: var(--forest);
    border-color: rgba(255, 255, 255, 0.12);
}

.feature-card--secondary {
    background: var(--secondary);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card--primary,
.feature-card--primary:hover,
.feature-card--secondary,
.feature-card--secondary:hover {
    color: var(--white);
}

.feature-card--primary h4,
.feature-card--primary h5,
.feature-card--primary h3,
.feature-card--primary p,
.feature-card--secondary h4,
.feature-card--secondary h5,
.feature-card--secondary h3,
.feature-card--secondary p {
    color: var(--white);
}

.feature-card--primary p,
.feature-card--secondary p {
    opacity: 0.92;
}

.feature-card--primary .icon-wrap,
.feature-card--secondary .icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.feature-card--primary:hover .icon-wrap,
.feature-card--secondary:hover .icon-wrap {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.feature-card--primary::after,
.feature-card--secondary::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.feature-card--primary:hover,
.feature-card--secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

/* Product cards */
.product-card,
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.product-card__media,
.blog-card__media {
    display: block;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card__media::after,
.blog-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(47, 143, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.product-card:hover .product-card__media::after,
.blog-card:hover .blog-card__media::after {
    opacity: 1;
}

.product-card__media img,
.blog-card__media img,
.product-card > img,
.blog-card > img {
    width: 100%;
    height: clamp(200px, 42vw, 240px);
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img,
.blog-card:hover .blog-card__media img,
.product-card:hover > img,
.blog-card:hover > img {
    transform: scale(1.06);
}

.product-card .card-body,
.blog-card .card-body {
    padding: clamp(1.15rem, 3vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(47, 143, 0, 0.08);
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex: 1 1 auto;
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    color: var(--white);
    transition: background 0.15s ease, color 0.15s ease;
}

.product-card__btn i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.product-card__btn--details,
.product-card__btn--details:hover,
.product-card__btn--details:focus,
.product-card__btn--details:active,
.product-card__btn--whatsapp,
.product-card__btn--whatsapp:hover,
.product-card__btn--whatsapp:focus,
.product-card__btn--whatsapp:active {
    color: var(--white);
}

.product-card__btn--details {
    background: var(--secondary);
}

.product-card__btn--details:hover,
.product-card__btn--details:focus {
    background: var(--secondary-hover);
}

.product-card__btn--whatsapp {
    background: #25d366;
}

.product-card__btn--whatsapp:hover,
.product-card__btn--whatsapp:focus {
    background: #1da851;
}

/* Blog category badge (inline fallback) */
.blog-category-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Service cards */
.service-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card { flex-direction: row; align-items: stretch; }
}

.service-card__aside {
    background: linear-gradient(160deg, var(--cream) 0%, rgba(248, 244, 232, 0.5) 100%);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(47, 143, 0, 0.06);
}

@media (min-width: 768px) {
    .service-card__aside {
        width: 120px;
        flex-shrink: 0;
        border-bottom: none;
        border-right: 1px solid rgba(47, 143, 0, 0.06);
    }
}

.service-card__num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    opacity: 0.9;
}

.service-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid rgba(47, 143, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--forest);
    margin: 0;
    box-shadow: 0 4px 12px rgba(47, 143, 0, 0.06);
}

.service-card__body {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__body h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--forest);
    margin-bottom: 0.65rem;
}

.service-card__body p {
    flex: 1;
}

.service-card__body .btn,
.service-card__body .service-card__request {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Service request modal */
.service-request-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(47, 143, 0, 0.18);
}

.service-request-modal .modal-header {
    background: linear-gradient(118deg, var(--forest) 0%, var(--eco-hover) 100%);
    color: var(--white);
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.service-request-modal .modal-title {
    color: var(--white);
}

.service-request-modal__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0;
}

.service-request-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.service-request-modal .modal-body {
    padding: 1.35rem 1.5rem 0.5rem;
}

.service-request-modal .modal-footer {
    border-top: 1px solid rgba(47, 143, 0, 0.1);
    padding: 1rem 1.5rem 1.35rem;
}

.service-request-modal .modal-footer .btn-outline-primary {
    color: var(--forest) !important;
    background: var(--white) !important;
    border-color: var(--forest) !important;
}

.service-request-modal .modal-footer .btn-outline-primary:hover,
.service-request-modal .modal-footer .btn-outline-primary:focus {
    background: var(--forest) !important;
    border-color: var(--forest) !important;
    color: var(--white) !important;
}

.service-card--media .page-photo {
    margin: 0;
    width: 100%;
}

.service-card--media .page-photo {
    background: var(--cream);
}

.service-card--media .page-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 0;
    background-color: var(--cream);
}

@media (min-width: 768px) {
    .service-card--media {
        flex-wrap: wrap;
    }

    .service-card--media .page-photo {
        flex: 0 0 100%;
    }

    .service-card--media .page-photo img { aspect-ratio: 21 / 10; }
}

/* Page photos (unique per page from assets/images) */
.page-photo,
.product-card__media,
.blog-card__media {
    background: var(--cream);
}

.page-photo {
    margin: 0 0 1.25rem;
}

.page-photo img,
.product-card__media {
    min-height: 0;
    background: var(--cream);
}

.product-card__media img,
.blog-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 28px rgba(47, 143, 0, 0.12);
    background-color: var(--cream);
}

.page-photo--content img {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.page-photo--wide img {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.page-photo--card img,
.program-card .page-photo img,
.partnership-card .page-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}

.program-card.feature-card,
.partnership-card.feature-card {
    overflow: hidden;
    padding: 0 0 clamp(1.25rem, 3vw, 1.5rem);
}

.program-card .page-photo,
.partnership-card .page-photo {
    margin: 0 0 0.75rem;
    width: 100%;
}

.program-card h5,
.program-card p,
.partnership-card h6,
.partnership-card .icon-wrap {
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    padding-right: clamp(1.25rem, 3vw, 1.5rem);
}

.program-card h5 {
    padding-top: 0.35rem;
}

.program-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.35rem;
}

.program-card__desc--primary {
    color: var(--forest);
}

.program-card__desc--accent {
    color: #9a6700;
}

.program-details-btn {
    align-self: flex-start;
    margin-left: clamp(1.25rem, 3vw, 1.5rem);
    margin-right: clamp(1.25rem, 3vw, 1.5rem);
    min-height: 30px;
    padding: 0.3rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-width: 1px;
}

.program-details-btn--primary {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
}

.program-details-btn--primary:hover,
.program-details-btn--primary:focus {
    color: var(--white);
    background: var(--eco-hover);
    border-color: var(--eco-hover);
}

.program-details-btn--accent {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
}

.program-details-btn--accent:hover,
.program-details-btn--accent:focus {
    color: var(--white);
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.program-details-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(22, 76, 37, 0.24);
}

.program-details-modal .modal-header {
    border-bottom: 1px solid rgba(47, 143, 0, 0.12);
    padding: 1rem 1.25rem 0.9rem;
    background: linear-gradient(112deg, rgba(47, 143, 0, 0.08), rgba(253, 175, 24, 0.12));
}

.program-details-modal .modal-body {
    padding: 1.1rem 1.25rem 1rem;
}

.program-details-modal .modal-title {
    color: var(--forest);
}

.program-details-modal__photo {
    height: 150px;
    object-fit: cover;
    border: 1px solid rgba(47, 143, 0, 0.1);
    box-shadow: 0 8px 18px rgba(47, 143, 0, 0.12);
}

.program-details-modal ul {
    padding-left: 1.1rem;
}

.program-details-modal li {
    color: var(--charcoal);
    line-height: 1.6;
}

.program-details-modal .modal-footer {
    border-top: 1px solid rgba(47, 143, 0, 0.12);
    padding: 0.9rem 1.25rem 1.1rem;
    gap: 0.5rem;
}

.partnership-card .icon-wrap {
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}

/* Process */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin: 1.5rem 0 2rem;
}

.process-step {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--forest);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.process-step::after {
    content: '→';
    color: var(--eco);
    margin-left: 0.5rem;
}

.process-step:last-child::after { display: none; }

/* PPP (dark section) */
.ppp-card {
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.97);
    border-left: 4px solid var(--eco);
}

.ppp-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ppp-card h4 i {
    font-size: 1.35rem;
    color: var(--eco);
}

.ppp-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

/* PPP photo cards (home) */
.ppp-card--photo {
    padding: 0;
    border: none;
    border-left: none;
    background: transparent;
    min-height: clamp(260px, 38vw, 340px);
}

.ppp-card--photo::before {
    z-index: 3;
}

.ppp-card--photo .ppp-card__media {
    position: relative;
    width: 100%;
    min-height: inherit;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.ppp-card--photo .ppp-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ppp-card--photo:hover .ppp-card__media img {
    transform: scale(1.05);
}

.ppp-card--photo .ppp-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(20, 55, 10, 0.97) 0%, rgba(47, 143, 0, 0.88) 38%, rgba(47, 143, 0, 0.4) 62%, transparent 82%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.ppp-card--photo-fallback .ppp-card__media {
    background: linear-gradient(145deg, var(--forest) 0%, var(--eco-hover) 100%);
}

.ppp-card--photo .ppp-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.25rem, 3vw, 1.65rem);
}

.ppp-card.ppp-card--photo h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.ppp-card.ppp-card--photo h4 i {
    color: var(--accent);
    font-size: 1.25rem;
}

.ppp-card.ppp-card--photo p {
    font-size: clamp(0.84rem, 2vw, 0.92rem);
    font-weight: 500;
    color: #ffffff;
    opacity: 1;
    line-height: 1.55;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* Home partners marquee */
.partners-showcase {
    overflow: hidden;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(47, 143, 0, 0.12);
    padding: clamp(0.7rem, 2.2vw, 0.95rem) 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 1) 8%,
        rgba(0, 0, 0, 1) 92%,
        transparent 100%
    );
}

.partners-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: partners-marquee-scroll 36s linear infinite;
    will-change: transform;
}

.partners-marquee__item {
    flex: 0 0 clamp(92px, 12vw, 180px);
    width: clamp(92px, 12vw, 180px);
    margin-inline: clamp(0.35rem, 1.2vw, 0.8rem);
    min-height: clamp(58px, 8vw, 86px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 143, 0, 0.08);
    box-shadow: 0 4px 14px rgba(17, 40, 8, 0.06);
    padding: 0.6rem 0.8rem;
}

.partners-marquee__item img {
    max-width: 100%;
    max-height: clamp(38px, 5.5vw, 52px);
    object-fit: contain;
    filter: saturate(0.94) contrast(1.02);
}

@keyframes partners-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 767.98px) {
    .partners-marquee__track {
        animation-duration: 24s;
    }

    .partners-marquee__item {
        flex-basis: clamp(100px, 26vw, 128px);
        width: clamp(100px, 26vw, 128px);
        margin-inline: 0.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-marquee__track {
        animation: none;
    }
}

/* Team cards */
.team-card {
    text-align: center;
    padding: clamp(2rem, 5vw, 2.5rem) clamp(1.25rem, 3vw, 1.75rem);
}

.team-avatar {
    width: clamp(80px, 18vw, 96px);
    height: clamp(80px, 18vw, 96px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest) 0%, var(--eco) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 1.85rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.35rem;
    box-shadow: 0 8px 24px rgba(47, 143, 0, 0.2);
    outline: 4px solid var(--cream);
}

.team-card h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 0.35rem;
}

.team-card .role {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--eco-hover) 100%);
    color: var(--white);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    border-radius: var(--radius-lg);
}

.cta-section h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2rem); }

.cta-section .btn { margin: 0.25rem; }

/* Blog */
.blog-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.35rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem !important;
    scrollbar-width: thin;
}

.blog-filter::-webkit-scrollbar { height: 4px; }
.blog-filter::-webkit-scrollbar-thumb { background: var(--eco); border-radius: 4px; }

.blog-filter .btn {
    border-radius: 50px;
    flex-shrink: 0;
    font-size: 0.85rem;
    white-space: nowrap;
    min-height: 38px;
}

.blog-filter .btn.active,
.blog-filter .btn-primary.active {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white) !important;
}

.blog-meta { font-size: 0.85rem; color: var(--charcoal); opacity: 0.7; }

.blog-category-badge {
    background: var(--cream);
    color: var(--forest);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.blog-content {
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    line-height: 1.75;
}

.blog-content img,
.blog-content video,
.blog-content iframe {
    border-radius: var(--radius);
    margin: 1rem 0;
    max-width: 100%;
    height: auto;
}

.blog-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

.blog-content pre,
.blog-content code {
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;
}

.blog-featured-img {
    width: 100%;
    max-height: min(420px, 55vh);
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

/* Contact page */
.contact-page__alert {
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-hub {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(47, 143, 0, 0.12);
    border: 1px solid rgba(47, 143, 0, 0.1);
}

.contact-hub__side {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: linear-gradient(165deg, var(--forest) 0%, #267500 50%, var(--eco-hover) 100%);
    color: var(--white);
}

.contact-hub__eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.28rem 0.8rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--secondary);
    border-radius: 50px;
}

.contact-hub__title {
    font-size: clamp(1.35rem, 3.2vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 0.65rem;
    color: var(--white);
    text-wrap: balance;
}

.contact-hub__intro {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.35rem;
}

.contact-hub__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.contact-hub__action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-hub__action:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-1px);
}

.contact-hub__action i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-hub__action span {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.25;
}

.contact-hub__action strong {
    font-size: 0.88rem;
    font-weight: 700;
}

.contact-hub__action small {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
}

.contact-hub__action--whatsapp {
    background: rgba(37, 211, 102, 0.22);
    border-color: rgba(37, 211, 102, 0.45);
}

.contact-hub__action--whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.contact-hub__list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.55rem 0;
    font-size: 0.86rem;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hub__list i {
    font-size: 1.05rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-hub__list a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-hub__list a:hover {
    color: var(--secondary);
}

.contact-hub__social {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hub__social-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.65rem;
}

.contact-hub__social ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.contact-hub__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-hub__social a:hover {
    background: var(--secondary);
    color: var(--forest);
}

.contact-hub__main {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: var(--white);
}

.contact-hub__form-head {
    margin-bottom: 1.35rem;
}

.contact-hub__form-title {
    font-size: clamp(1.2rem, 2.8vw, 1.45rem);
    margin: 0.35rem 0 0.5rem;
    color: var(--forest);
}

.contact-hub__form-lead {
    font-size: 0.9rem;
    color: var(--charcoal-muted);
    line-height: 1.55;
}

.contact-hub__submit {
    padding-top: 0.25rem;
}

.contact-partners__head {
    max-width: 36rem;
    margin: 0 auto clamp(1.75rem, 4vw, 2.25rem);
}

.contact-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
    gap: 0.75rem;
    max-width: 52rem;
    margin: 0 auto;
}

.contact-partners__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
    min-height: 7.5rem;
    padding: 1rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(47, 143, 0, 0.1);
    box-shadow: 0 4px 16px rgba(47, 143, 0, 0.06);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--charcoal);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-partners__item i {
    font-size: 1.5rem;
    color: var(--forest);
}

.contact-partners__item:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 143, 0, 0.22);
    box-shadow: 0 8px 24px rgba(47, 143, 0, 0.1);
}

.contact-partners__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

@media (max-width: 991.98px) {
    .contact-hub {
        grid-template-columns: 1fr;
    }

    .contact-hub__side {
        border-bottom: 3px solid var(--secondary);
    }
}

@media (max-width: 575.98px) {
    .contact-partners__cta .btn {
        width: 100%;
    }

    .contact-hub__submit .btn {
        width: 100%;
    }
}

/* Legacy contact info card (other pages) */
.contact-info-card {
    background: linear-gradient(160deg, var(--cream) 0%, #fff 60%);
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.contact-info-card h4 {
    font-family: var(--font-display);
    color: var(--forest);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(47, 143, 0, 0.25);
}

/* Glance card (about) */
.glance-card {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.glance-card h4 {
    font-family: var(--font-display);
    color: var(--forest);
    margin-bottom: 1.25rem;
}

.glance-card .detail-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.glance-card .detail-list i {
    color: var(--eco);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info-card li {
    list-style: none;
    padding: 0.5rem 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.contact-info-card i {
    color: var(--eco);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid rgba(47, 143, 0, 0.15);
    padding: 0.75rem 1rem;
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: var(--touch-min);
}

.form-control:focus, .form-select:focus {
    border-color: var(--eco);
    box-shadow: 0 0 0 0.2rem rgba(47, 143, 0, 0.2);
}

textarea.form-control { min-height: 140px; }

/* Product detail */
.product-detail-img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-height: min(480px, 60vh);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.product-detail-thumb {
    border: 2px solid rgba(47, 143, 0, 0.15);
    border-radius: 12px;
    padding: 0;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
}

.product-detail-thumb img {
    width: 100%;
    height: 78px;
    object-fit: cover;
    display: block;
}

.product-detail-thumb.is-active {
    border-color: var(--eco);
    box-shadow: 0 0 0 3px rgba(47, 143, 0, 0.14);
}

.detail-list li { padding: 0.35rem 0; }

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 575.98px) {
    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .upcycled-showcase__gallery {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(2),
    .upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(3),
    .upcycled-showcase__gallery .upcycled-showcase__photo:nth-child(4) {
        grid-area: auto;
    }
}

/* Footer */
.site-footer {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 4px solid var(--accent);
}

.footer-logo {
    height: clamp(52px, 12vw, 72px);
    width: auto;
    max-width: min(280px, 92vw);
    display: block;
    object-fit: contain;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-text {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.55;
    margin-bottom: 0;
}

.site-footer__columns {
    --bs-gutter-x: 1.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-col .footer-heading {
    margin-top: 0;
}

@media (min-width: 576px) {
    .site-footer__columns {
        align-items: flex-start;
    }
}

@media (min-width: 992px) {
    .site-footer__columns {
        --bs-gutter-x: 2rem;
    }

    .footer-col {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer-col--brand {
        padding-left: 0;
    }

    .footer-col:last-child {
        padding-right: 0;
    }

    .footer-text {
        max-width: none;
    }
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a, .footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-links li, .footer-contact li {
    padding: 0.15rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.footer-links a, .footer-contact a {
    display: inline;
    padding: 0;
    line-height: inherit;
}

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.footer-contact i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.75;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer-bottom__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
}

.footer-bottom__copy {
    flex: 1 1 auto;
    text-align: left;
    min-width: 0;
}

.footer-bottom__credit {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
    font-size: 0.8rem;
    white-space: nowrap;
}

.footer-bottom__credit a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom__credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .footer-bottom__row {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom__copy {
        text-align: center;
    }

    .footer-bottom__credit {
        margin-left: 0;
        text-align: right;
        white-space: normal;
    }
}

.footer-social {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0 0 0.75rem;
}

.footer-social li {
    margin: 0;
}

.footer-social a {
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 179, 79, 0.22);
    border-color: rgba(255, 179, 79, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Alerts */
.alert-success-custom {
    background: rgba(47, 143, 0, 0.12);
    border: 1px solid var(--eco);
    color: var(--forest);
    border-radius: var(--radius);
}

/* Pathway */
.pathway-item {
    padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.35rem);
    text-align: center;
    font-weight: 600;
    color: var(--forest);
    font-size: clamp(0.88rem, 2.5vw, 1rem);
    line-height: 1.45;
}

.pathway-item::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: var(--eco);
    border-radius: 2px;
    margin: 0 auto 0.75rem;
}

.pathway-arrow {
    color: var(--eco);
    font-size: 1.25rem;
    text-align: center;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .pathway-arrow { transform: none; }
}

/* Section headers with buttons */
.section-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Utilities */
.text-balance { text-wrap: balance; }

.navbar-greenshero__drawer-placeholder {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .navbar-greenshero__drawer {
        transition: none;
    }

    .nav-backdrop {
        transition: none;
    }

    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== RESPONSIVE (all screen sizes) ========== */

/* Tablet landscape / small desktop — tighter nav so links fit */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-greenshero .nav-link {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.86rem;
    }

    .nav-cta-wrap .btn-partner {
        padding: 0.5rem 1rem !important;
        font-size: 0.86rem;
    }

    .navbar-greenshero .logo-img {
        height: 48px;
        max-width: 200px;
    }
}

@media (max-width: 991.98px) {
    body { padding-top: var(--header-offset); }

    .section-header-row {
        align-items: flex-start;
    }

    .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .blog-filter {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        scroll-padding-inline: 0.5rem;
    }

    .hero-slider--home {
        min-height: clamp(340px, 62vh, 560px);
    }

    .hero-stats {
        margin-top: -2rem;
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }

    .hero-stats__label {
        font-size: 0.72rem;
    }

    .home-services-strip__grid {
        gap: 0.75rem;
    }

    .home-services-strip__card {
        padding: 1.15rem 0.75rem;
    }

    .page-photo--content img,
    .page-photo--wide img {
        min-height: 0;
        max-height: none;
    }

    .pathway-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pathway-row .pathway-item {
        width: 100%;
    }

    /* Reduce hover shift on touch devices */
    @media (hover: none) {
        .gs-card:hover,
        .impact-card--photo:hover,
        .impact-card:hover,
        .feature-card:hover,
        .service-card:hover,
        .product-card:hover,
        .blog-card:hover,
        .team-card:hover,
        .ppp-card:hover,
        .contact-info-card:hover,
        .home-services-strip__card:hover {
            transform: none;
        }

        .product-card:hover .product-card__media img,
        .blog-card:hover .blog-card__media img,
        .impact-card--photo:hover .impact-card__media img,
        .ppp-card--photo:hover .ppp-card__media img {
            transform: none;
        }

    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    :root { --nav-height: 72px; }

    .navbar-greenshero .navbar-brand--center .logo-icon {
        width: 44px;
        height: 44px;
    }

    .navbar-brand-name { font-size: 1.1rem; }
    .navbar-brand-tagline { font-size: 0.72rem; max-width: 24ch; }

    .section-header-row .btn { flex-shrink: 0; }
    .hero-slider__title { font-size: clamp(2rem, 11vw, 3rem); }

}

@media (max-width: 767.98px) {
    .section-padding {
        padding: clamp(2rem, 6vw, 3.5rem) 0;
    }

    .hero-slider--page .hero-slider__inner {
        padding: clamp(1.75rem, 5vw, 2.5rem) 0;
    }

    .hero-slider--page .hero-slider__title {
        font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    }

    .process-steps {
        flex-direction: column;
        align-items: stretch;
        max-width: 16rem;
        margin-left: auto;
        margin-right: auto;
    }

    .process-step {
        justify-content: center;
        width: 100%;
    }

    .process-step::after { display: none; }

    .contact-info-card li {
        flex-wrap: wrap;
    }

    .contact-info-card li span,
    .contact-info-card li a {
        min-width: 0;
        flex: 1 1 auto;
    }

    .footer-text {
        max-width: none;
    }

    .product-detail-img {
        max-height: min(360px, 50vh);
    }
}

@media (max-width: 575.98px) {
    :root { --nav-height: 64px; }

    .container {
        padding-left: max(0.875rem, env(safe-area-inset-left));
        padding-right: max(0.875rem, env(safe-area-inset-right));
    }

    .navbar-brand-tagline {
        font-size: 0.6rem;
        max-width: min(20ch, 48vw);
    }

    .navbar-greenshero .navbar-brand-name {
        white-space: normal;
        text-align: center;
        line-height: 1.15;
    }

    .hero-slider--home {
        min-height: clamp(300px, 58vh, 480px);
    }

    .hero-stats {
        margin-top: -1.25rem;
    }

    .hero-stats__value {
        font-size: clamp(1.35rem, 6vw, 1.65rem);
    }

    .home-services-strip__grid {
        grid-template-columns: 1fr;
        max-width: 20rem;
        margin: 0 auto;
    }

    .product-card .card-actions {
        gap: 0.4rem;
    }

    .product-card__btn {
        flex: 1 1 calc(50% - 0.2rem);
        min-width: 0;
    }
    .section-header-row {
        flex-direction: column;
        align-items: stretch;
    }
    .section-header-row > div { width: 100%; }
    .section-header-row .btn { width: 100%; }
    .cta-section {
        border-radius: var(--radius);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .cta-section .d-flex { flex-direction: column; }
    .cta-section .btn { width: 100%; }
    .footer-links a,
    .footer-contact a {
        padding: 0.1rem 0;
    }
    .site-footer .col-6,
    .site-footer .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .impact-card .impact-label { max-width: none; }
    .service-card__body .btn { width: 100%; }
    .btn-lg { width: 100%; max-width: 100%; }

    .row.align-items-center.g-5 {
        --bs-gutter-y: 2rem;
    }

    .program-card h5,
    .partnership-card h6 {
        font-size: 1rem;
    }

    .ppp-card h4 {
        flex-wrap: wrap;
    }

    .blog-filter .btn {
        font-size: 0.8rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
}

@media (max-width: 359.98px) {
    .hero-slider--home .hero-slider__title {
        font-size: clamp(1.9rem, 10vw, 2.15rem);
    }

    .navbar-greenshero__drawer {
        width: min(280px, 92vw);
    }
}

@media (min-width: 992px) {
    .process-step::after { display: inline; }
}
