:root {
    --green: #2f8f13;
    --green-dark: #123d1b;
    --orange: #ff870c;
    --ink: #132f19;
    --muted: #667565;
    --line: #dfe9d7;
    --soft: #f5faef;
    --white: #ffffff;
    --header-height: 86px;
    --header-height-mobile: 74px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-container {
    margin: 0 auto;
    max-width: 1320px;
    padding: 0 22px;
    width: 100%;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 28px;
    min-height: 86px;
}

.site-logo img {
    object-fit: contain;
    width: 100%;
    max-width: 150px;
}

.desktop-nav {
    align-items: center;
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav a {
    color: var(--ink);
    font-weight: 800;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--green);
}

.header-cta,
.site-btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
}

.header-cta,
.site-btn.primary {
    background: var(--green);
    color: var(--white);
}

.site-btn.light {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.menu-toggle {
    background: var(--green);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    gap: 5px;
    padding: 12px;
}

.menu-toggle span {
    background: var(--white);
    display: block;
    height: 3px;
    width: 22px;
}

.offcanvas,
.offcanvas-backdrop {
    display: none;
}

main {
    padding-top: 86px;
}

.hero-section {
    align-items: center;
    display: flex;
    min-height: calc(100vh - 86px);
    overflow: hidden;
    position: relative;
}

.hero-video,
.hero-fallback,
.hero-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.hero-video {
    object-fit: cover;
    z-index: 0;
}

.hero-fallback {
    background:
        radial-gradient(
            circle at 72% 28%,
            rgba(255, 135, 12, 0.34),
            transparent 24%
        ),
        radial-gradient(
            circle at 20% 72%,
            rgba(47, 143, 19, 0.45),
            transparent 26%
        ),
        linear-gradient(135deg, #153d1d 0%, #2f8f13 52%, #ff870c 100%);
    z-index: -1;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 36, 17, 0.82),
        rgba(10, 36, 17, 0.38)
    );
    z-index: 1;
}

.hero-content {
    color: var(--white);
    max-width: 760px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.section-kicker {
    color: var(--orange);
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
    margin: 0;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.7;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.section {
    padding: 86px 0;
}

.about-grid {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: 0.95fr 1.05fr;
}

.about-media {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(18, 61, 27, 0.1);
    min-height: 420px;
    padding: 36px;
    position: relative;
}

.about-media img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.about-badge {
    background: var(--orange);
    border-radius: 8px;
    bottom: 24px;
    color: #2b1700;
    font-weight: 900;
    left: 24px;
    padding: 14px 18px;
    position: absolute;
}

.section-copy h2,
.section-head h2,
.catalog-hero h1 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    margin: 0;
}

.section-copy p,
.catalog-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.about-points span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
    padding: 12px 14px;
}

.section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background: var(--white);
    color: var(--green-dark);
    cursor: pointer;
    padding: 10px;
    border: 2px solid var(--line);
    border-radius: 4px;
    width: 48px;
    height: 48px;
    font-size: 30px;
    font-weight: 700;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.site-slider {
    display: grid;
    gap: 20px;
    grid-auto-columns: calc((100% - 60px) / 4);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.site-slider::-webkit-scrollbar {
    display: none;
}

.slider-card {
    scroll-snap-align: start;
}

.category-card,
.product-card,
.testimonial-grid article,
.catalog-sidebar,
.catalog-product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(18, 61, 27, 0.08);
}

.category-card {
    padding: 18px;
}

.category-card img {
    aspect-ratio: 1 / 0.78;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.category-card h3,
.product-card h3 {
    font-size: 22px;
    margin: 16px 0 6px;
}

.category-card p,
.product-card p {
    color: var(--muted);
    line-height: 1.55;
}

.testimonial-section {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid article {
    box-shadow: none;
    padding: 28px;
}

.testimonial-grid p {
    color: var(--muted);
    line-height: 1.7;
}

.testimonial-grid strong {
    color: var(--green-dark);
}

.product-card {
    overflow: hidden;
}

.product-card img {
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    width: 100%;
}

.product-card div {
    padding: 18px;
}

.product-card span,
.catalog-product-card span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-hero {
    background: linear-gradient(135deg, #ecf8e6, #ffffff);
    padding: 84px 0 56px;
}

.catalog-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: 300px 1fr;
}

.catalog-sidebar {
    padding: 22px;
    position: sticky;
    top: 108px;
}

.catalog-sidebar h2 {
    margin-top: 0;
}

.catalog-category {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
}

.catalog-products {
    display: grid;
    gap: 20px;
}

.catalog-product-card {
    display: grid;
    gap: 22px;
    grid-template-columns: 240px 1fr;
    padding: 18px;
}

.catalog-product-card img {
    aspect-ratio: 1 / 0.78;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.catalog-product-card h2 {
    margin: 8px 0;
}

.catalog-product-card p {
    color: var(--muted);
}

.catalog-product-card dl {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin: 18px 0 0;
}

.catalog-product-card dl div {
    background: var(--soft);
    border-radius: 8px;
    padding: 12px;
}

dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

dd {
    margin: 4px 0 0;
}

.empty-state {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    padding: 28px;
    text-align: center;
}

.site-footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 62px 0 0;
}

.footer-grid {
    display: grid;
    gap: 38px;
    grid-template-columns: 2fr 1fr 1fr;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    display: block;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 42px;
    padding: 18px;
    text-align: center;
}

@media (max-width: 1025px) {
    .site-logo img {
        max-width: 130px;
    }
}

@media (max-width: 1024px) {
    .site-slider {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .about-grid,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .header-inner {
        min-height: 76px;
    }

    main {
        padding-top: 76px;
    }

    .offcanvas {
        background: var(--white);
        display: block;
        height: 100vh;
        max-width: 330px;
        padding: 24px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        width: 86%;
        z-index: 80;
    }

    .offcanvas.open {
        transform: translateX(0);
    }

    .offcanvas img {
        max-width: 140px;
        width: 100%;
    }

    .offcanvas nav {
        display: grid;
        gap: 12px;
        margin-top: 28px;
    }

    .offcanvas-close {
        background: var(--orange);
        border: 0;
        border-radius: 8px;
        color: #2b1700;
        cursor: pointer;
        font-size: 28px;
        height: 44px;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 44px;
    }

    .offcanvas-backdrop {
        background: rgba(0, 0, 0, 0.38);
        display: block;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        transition: opacity 0.25s ease;
        z-index: 70;
    }

    .offcanvas-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-section {
        min-height: 680px;
    }

    .section {
        padding: 58px 0;
    }

    .section-head,
    .footer-grid,
    .testimonial-grid,
    .catalog-product-card,
    .catalog-product-card dl {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        display: grid;
    }

    .site-slider {
        grid-auto-columns: 86%;
    }

    .about-media {
        min-height: 320px;
    }

    .testimonial-grid {
        display: grid;
    }
}

/* Premium homepage polish */
body {
    overflow-x: hidden;
}

.site-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(18, 61, 27, 0.08);
}

.desktop-nav {
    background: #f4faef;
    border: 1px solid var(--line);
    border-radius: 999px;
    gap: 6px;
    padding: 6px;
}

.desktop-nav a {
    border-radius: 999px;
    padding: 10px 16px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    background: var(--white);
}

.header-cta,
.site-btn.primary {
    box-shadow: 0 12px 28px rgba(47, 143, 19, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-cta:hover,
.site-btn:hover {
    transform: translateY(-2px);
}

.hero-fallback {
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(255, 135, 12, 0.48),
            transparent 22%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(104, 193, 57, 0.42),
            transparent 26%
        ),
        linear-gradient(
            125deg,
            #092f17 0%,
            #155c25 44%,
            #315e13 66%,
            #c76b09 100%
        );
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 30, 14, 0.9), rgba(7, 30, 14, 0.38)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0 1px,
            transparent 1px 90px
        );
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(46px, 6.8vw, 92px);
}

.hero-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
    max-width: 680px;
}

.hero-metrics div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 16px;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 26px;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-top: 4px;
}

.hero-card {
    animation: floatCard 5s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
    min-height: 430px;
    padding: 34px;
    position: relative;
}

.hero-card img {
    height: 270px;
    margin: 36px auto 0;
    object-fit: contain;
}

.hero-card-badge {
    background: var(--orange);
    border-radius: 999px;
    color: #2b1700;
    font-weight: 900;
    left: 28px;
    padding: 12px 18px;
    position: absolute;
    top: 28px;
}

.growth-lines {
    bottom: 28px;
    display: grid;
    gap: 9px;
    left: 28px;
    position: absolute;
    right: 28px;
}

.growth-lines span {
    animation: growLine 2.8s ease-in-out infinite;
    background: linear-gradient(90deg, var(--green), var(--orange));
    border-radius: 999px;
    display: block;
    height: 8px;
}

.growth-lines span:nth-child(2) {
    animation-delay: 0.25s;
    width: 72%;
}

.growth-lines span:nth-child(3) {
    animation-delay: 0.5s;
    width: 48%;
}

.leaf {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 80% 0 80% 0;
    height: 90px;
    position: absolute;
    transform: rotate(35deg);
    width: 54px;
    z-index: 1;
}

.leaf-one {
    animation: drift 8s ease-in-out infinite;
    left: 7%;
    top: 18%;
}

.leaf-two {
    animation: drift 9s ease-in-out infinite reverse;
    bottom: 16%;
    right: 10%;
}

.about-section {
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(47, 143, 19, 0.08),
            transparent 28%
        ),
        var(--soft);
}

.about-media {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf3 100%);
    min-height: 460px;
}

.about-media img {
    height: 330px;
    margin: 38px auto;
    object-fit: contain;
    width: 90%;
}

.about-points strong {
    color: var(--orange);
    margin-right: 8px;
}

.category-section {
    background: linear-gradient(180deg, #f5faef 0%, #eef8e8 100%);
}

.product-showcase {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 135, 12, 0.08),
            transparent 24%
        ),
        var(--soft);
}

.category-card,
.product-card {
    overflow: hidden;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card-number {
    background: var(--green);
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 2;
    display: none;
}

.category-card img,
.product-card img {
    transition: transform 0.35s ease;
}

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

.testimonial-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf3 100%);
    overflow: hidden;
}

.client-marquee {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    margin: 6px 0 34px;
    overflow: hidden;
    padding: 20px 0;
}

.client-track {
    animation: marquee 24s linear infinite;
    display: flex;
    gap: 18px;
    width: max-content;
}

.client-logo {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    height: 96px;
    justify-content: center;
    padding: 18px;
    width: 210px;
}

.client-logo img {
    max-height: 66px;
    object-fit: contain;
}

.quote-mark {
    color: var(--orange);
    display: block;
    font-size: 58px;
    height: 36px;
    line-height: 0.9;
}

.testimonial-grid article {
    position: relative;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.testimonial-grid article:hover {
    border-color: rgba(47, 143, 19, 0.35);
}

.site-footer {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 135, 12, 0.16),
            transparent 24%
        ),
        var(--green-dark);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

@keyframes growLine {
    0%,
    100% {
        transform: scaleX(0.68);
        transform-origin: left;
    }
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0) rotate(35deg);
    }
    50% {
        transform: translateY(24px) rotate(52deg);
    }
}

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 740px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .client-logo {
        height: 82px;
        width: 170px;
    }
}

/* Home page restore */
body {
    overflow-x: hidden;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 233, 215, 0.92);
    box-shadow: 0 14px 36px rgba(18, 61, 27, 0.08);
}

.header-inner {
    min-height: var(--header-height);
}

.site-logo img {
    max-width: 150px;
}

.desktop-nav {
    align-items: center;
    background: #f4faef;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    gap: 4px;
    margin-left: auto;
    padding: 7px;
}

.desktop-nav a {
    border-radius: 999px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    padding: 12px 18px;
    position: relative;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.desktop-nav a::after,
.offcanvas nav a span::after {
    background: var(--orange);
    border-radius: 999px;
    bottom: 6px;
    content: "";
    height: 4px;
    left: 18px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
    width: calc(100% - 36px);
}

.desktop-nav a.active,
.desktop-nav a:hover {
    background: transparent;
    color: var(--green);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.desktop-nav:has(a:hover) a:not(:hover) {
    opacity: 0.58;
}

.desktop-nav:has(a:hover) a.active:not(:hover) {
    opacity: 0.72;
}

.header-cta,
.site-btn.primary {
    background: var(--green);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(47, 143, 19, 0.24);
    color: var(--white);
    min-height: 48px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-cta:hover,
.site-btn:hover {
    transform: translateY(-2px);
}

.home-hero {
    align-items: stretch;
    background: #071f0f;
    min-height: calc(100vh - var(--header-height));
}

.home-hero .hero-poster,
.home-hero .hero-video,
.home-hero .hero-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.home-hero .hero-poster {
    background-position: center;
    background-size: cover;
    opacity: 1;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.home-hero .hero-video {
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

.home-hero.is-video-ready .hero-video {
    opacity: 1;
}

.home-hero.is-video-ready .hero-poster {
    opacity: 0;
}

.home-hero .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 20, 8, 0.9) 0%,
            rgba(4, 28, 12, 0.68) 48%,
            rgba(4, 28, 12, 0.34) 100%
        ),
        radial-gradient(
            circle at 72% 28%,
            rgba(255, 135, 12, 0.2),
            transparent 34%
        );
    z-index: 1;
}

.hero-inner {
    align-items: center;
    display: flex;
    min-height: inherit;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 820px;
}

.hero-kicker {
    color: var(--orange);
    display: block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.46em;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.home-hero .hero-content h1 {
    color: var(--white);
    font-size: clamp(48px, 14vw, 90px);
    letter-spacing: 0;
    line-height: 0.86;
    margin: 0 0 26px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
    text-transform: uppercase;
}

.home-hero .hero-content h1 span {
    display: block;
}

.home-hero .orange-text {
    color: var(--orange);
}

.home-hero .hero-content p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.72;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: var(--white);
}

.section {
    padding: 86px 0;
}

.about-section {
    background: #ffffff;
}

.about-showcase {
    align-items: center;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
}

.about-copy h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    margin: 8px 0 24px;
    max-width: 620px;
}

.about-copy p {
    color: #455545;
    font-size: 17px;
    line-height: 1.82;
    margin: 0 0 18px;
    max-width: 700px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.site-btn.outline {
    background: var(--white);
    border: 1px solid #cfdcc8;
    color: var(--green-dark);
}

.about-collage {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.about-image-card,
.about-video-card {
    border-radius: 8px;
    overflow: hidden;
}

.about-image-card {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 20px 56px rgba(18, 61, 27, 0.1);
    display: flex;
    justify-content: center;
    min-height: 160px;
    padding: 24px;
}

.about-image-card img {
    height: 100%;
    max-height: 130px;
    object-fit: contain;
    width: 100%;
}

.about-nursery-card {
    padding: 0;
}

.about-nursery-card img {
    max-height: none;
    object-fit: cover;
}

.about-video-card {
    background: #092f17;
    border: 0;
    box-shadow: 0 28px 70px rgba(18, 61, 27, 0.18);
    cursor: pointer;
    grid-column: 1 / -1;
    min-height: 310px;
    padding: 0;
    position: relative;
}

.about-video-card img {
    filter: brightness(0.68);
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.about-play {
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    display: flex;
    height: 88px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
}

.about-play span {
    border-bottom: 14px solid transparent;
    border-left: 22px solid var(--green);
    border-top: 14px solid transparent;
    display: block;
    height: 0;
    margin-left: 6px;
    width: 0;
}

.about-video-card strong {
    bottom: 38px;
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.about-stat-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
}

.about-stat-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 52px rgba(18, 61, 27, 0.08);
    padding: 30px;
}

.about-stat-grid strong {
    color: #071f0f;
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 18px;
}

.about-stat-grid p {
    color: #536353;
    line-height: 1.65;
    margin: 0;
}

.category-section,
.product-showcase {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 135, 12, 0.08),
            transparent 26%
        ),
        #f1f8ec;
}

.section-head {
    align-items: end;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.05;
    margin: 0;
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.site-slider {
    display: grid;
    gap: 20px;
    grid-auto-columns: calc((100% - 60px) / 4);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.site-slider::-webkit-scrollbar {
    display: none;
}

.slider-card {
    scroll-snap-align: start;
}

.category-card,
.product-card,
.testimonial-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
}

.category-card {
    padding: 16px;
    position: relative;
}

.category-card img,
.product-card img {
    aspect-ratio: 1 / 0.72;
    border-radius: 6px;
    object-fit: cover;
    width: 100%;
}

.category-card h3,
.product-card h3 {
    color: #062312;
    font-size: 22px;
    margin: 16px 0 8px;
}

.category-card p,
.product-card p {
    color: #536353;
    line-height: 1.55;
    margin: 0;
}

.product-card div {
    padding: 18px;
}

.product-card span {
    color: var(--orange);
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.product-card p {
    display: -webkit-box;
    min-height: 3.1em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-more {
    color: var(--green);
    display: inline-block;
    font-weight: 900;
    margin-top: 18px;
}

.testimonial-section {
    background: #ffffff;
}

.testimonial-slider-head {
    display: flex;
    justify-content: flex-end;
    margin: -10px 0 18px;
}

.testimonial-grid {
    display: grid;
    gap: 20px;
}

.testimonial-slider {
    grid-auto-columns: calc((100% - 40px) / 3);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-grid article {
    padding: 30px;
}

.quote-mark {
    color: var(--orange);
    display: block;
    font-size: 52px;
    height: 38px;
    line-height: 0.9;
}

.testimonial-grid p {
    color: #536353;
    line-height: 1.78;
}

.testimonial-meta {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 24px;
}

.testimonial-meta strong,
.testimonial-meta small {
    display: block;
}

.testimonial-meta strong {
    color: var(--green-dark);
}

.testimonial-meta small {
    color: #536353;
    font-weight: 800;
    margin-top: 4px;
}

.testimonial-meta img {
    max-height: 34px;
    max-width: 82px;
    object-fit: contain;
}

.site-footer {
    background:
        linear-gradient(rgba(4, 34, 14, 0.88), rgba(4, 34, 14, 0.96)),
        url("/images/hero-nursery-poster.png") center / cover no-repeat;
    color: var(--white);
    padding: 86px 0 24px;
    text-align: center;
}

.footer-center {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.footer-logo-row img {
    margin: 0 auto 26px;
    width: 160px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    line-height: 1.9;
    margin: 0 auto;
    max-width: 820px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 32px;
}

.footer-menu a {
    color: var(--white);
    font-weight: 900;
}

.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 26px;
}

.footer-social a {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-size: 17px;
    height: 42px;
    justify-content: center;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
    width: 42px;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-divider {
    background: rgba(255, 255, 255, 0.18);
    height: 1px;
    margin-top: 46px;
    width: 100%;
}

.footer-bottom {
    border: 0;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    padding: 24px 0 0;
    text-align: center;
}

.video-modal {
    display: none;
}

.video-modal.open {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 120;
}

.video-modal-backdrop {
    background: rgba(0, 0, 0, 0.72);
    inset: 0;
    position: absolute;
}

.video-modal-dialog {
    background: #000;
    border-radius: 8px;
    max-width: 980px;
    overflow: hidden;
    position: relative;
    width: min(94vw, 980px);
    z-index: 2;
}

.video-modal-dialog video {
    display: block;
    width: 100%;
}

.video-modal-close {
    background: var(--orange);
    border: 0;
    border-radius: 8px;
    color: #2b1700;
    cursor: pointer;
    font-size: 28px;
    height: 44px;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 44px;
    z-index: 3;
}

@media (max-width: 1180px) {
    .about-showcase {
        gap: 44px;
        grid-template-columns: 1fr;
    }

    .about-copy h2,
    .about-copy p {
        max-width: none;
    }

    .site-slider {
        grid-auto-columns: calc((100% - 40px) / 3);
    }
}

@media (max-width: 900px) {
    .site-slider,
    .testimonial-slider {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .about-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        min-height: var(--header-height-mobile);
    }

    main {
        padding-top: var(--header-height-mobile);
    }

    .site-logo img {
        max-width: 118px;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .offcanvas {
        background: var(--white);
        display: block;
        height: 100vh;
        max-width: 380px;
        padding: 42px 32px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        width: 88%;
        z-index: 80;
    }

    .offcanvas.open {
        transform: translateX(0);
    }

    .offcanvas img {
        margin-bottom: 42px;
        max-width: 130px;
    }

    .offcanvas nav {
        display: grid;
        gap: 16px;
    }

    .offcanvas nav a {
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(18, 61, 27, 0.06);
        color: var(--green-dark);
        font-size: 14px;
        font-weight: 600;
        padding: 16px;
    }

    .offcanvas nav a span {
        display: inline-block;
        position: relative;
    }

    .offcanvas nav a span::after {
        bottom: -8px;
        left: 0;
        width: 100%;
    }

    .offcanvas nav a.active span::after,
    .offcanvas nav a:hover span::after {
        transform: scaleX(1);
    }

    .offcanvas nav:has(a:hover) a:not(:hover) {
        opacity: 0.55;
    }

    .offcanvas-backdrop {
        background: rgba(0, 0, 0, 0.38);
        display: block;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        transition: opacity 0.25s ease;
        z-index: 70;
    }

    .offcanvas-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    .home-hero {
        min-height: 720px;
    }

    .hero-kicker {
        font-size: 12px;
        letter-spacing: 0.22em;
        line-height: 1.8;
    }

    .home-hero .hero-content h1 {
        font-size: clamp(48px, 14vw, 64px);
    }

    .home-hero .hero-content p {
        font-size: 15px;
    }

    .section {
        padding: 64px 0;
    }

    .about-collage {
        grid-template-columns: 1fr;
    }

    .about-video-card {
        min-height: 250px;
    }

    .section-head {
        align-items: start;
        display: grid;
    }

    .site-slider,
    .testimonial-slider {
        grid-auto-columns: 86%;
    }

    .footer-menu {
        gap: 18px;
    }
}

/* Testimonial section fix */
.testimonial-section .old-testimonial-grid[hidden] {
    display: none !important;
}

.testimonial-section .testimonial-slider {
    display: grid !important;
    gap: 20px;
    grid-auto-columns: calc((100% - 40px) / 3);
    grid-auto-flow: column;
    grid-template-columns: none !important;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-section .testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-section .testimonial-slider > article {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    min-width: 0;
    scroll-snap-align: start;
    width: auto;
}

.testimonial-section .testimonial-slider p {
    display: -webkit-box;
    font-size: 16px;
    line-height: 1.72;
    margin: 18px 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.testimonial-section .testimonial-meta {
    margin-top: auto;
}

.testimonial-section .testimonial-meta img {
    flex: 0 0 auto;
}

@media (max-width: 1024px) {
    .testimonial-section .testimonial-slider {
        grid-auto-columns: calc((100% - 20px) / 2);
    }
}

@media (max-width: 640px) {
    .testimonial-section .testimonial-slider {
        grid-auto-columns: 86%;
    }
}

/* Final responsive slider and hero scale fixes */
@media (min-width: 1025px) {
    .home-hero .hero-content h1 {
        font-size: clamp(48px, 14vw, 90px);
        max-width: 980px;
    }

    .home-hero .hero-content p {
        max-width: 760px;
    }
}

.category-section .site-slider,
.product-showcase .site-slider,
.testimonial-section .testimonial-slider {
    align-items: stretch;
    grid-template-columns: none !important;
    overscroll-behavior-inline: contain;
}

.category-section .slider-card,
.product-showcase .slider-card,
.testimonial-section .slider-card {
    min-width: 0;
    width: auto;
}

@media (max-width: 1180px) and (min-width: 901px) {
    .category-section .site-slider,
    .product-showcase .site-slider,
    .testimonial-section .testimonial-slider {
        grid-auto-columns: calc((100% - 40px) / 3) !important;
    }
}

@media (max-width: 900px) and (min-width: 641px) {
    .category-section .site-slider,
    .product-showcase .site-slider,
    .testimonial-section .testimonial-slider {
        grid-auto-columns: calc((100% - 20px) / 2) !important;
    }
}

@media (max-width: 640px) {
    .category-section .section-head,
    .product-showcase .section-head,
    .testimonial-section .section-head {
        gap: 18px;
        margin-bottom: 22px;
    }

    .category-section .section-head h2,
    .product-showcase .section-head h2,
    .testimonial-section .section-head h2 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .category-section .site-slider,
    .product-showcase .site-slider,
    .testimonial-section .testimonial-slider {
        gap: 0 !important;
        grid-auto-columns: 100% !important;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .category-section .slider-card,
    .product-showcase .slider-card,
    .testimonial-section .slider-card {
        width: 100%;
    }

    .category-card,
    .product-card {
        padding: 16px;
    }

    .product-card {
        padding: 0;
    }

    .category-card img,
    .product-card img {
        aspect-ratio: 1 / 0.68;
    }

    .slider-controls {
        order: 2;
        justify-content: flex-end;
    }

    .slider-controls button {
        height: 40px;
        width: 40px;
        font-size: 26px;
    }
}

.home-hero {
    min-height: 640px;
}