/* ==========================================================
   ECO-BAG CUSTOM THEME
   Main Stylesheet
   ========================================================== */


/* ==========================================================
   1. GLOBAL
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #2e7d32;
}

h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 32px;
    text-align: center;
}

a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}


/* ==========================================================
   2. HEADER
   ========================================================== */

.site-header {
    background: #e6d2a2;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo img {
    display: block;
    width: auto;
    max-height: 120px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-nav a {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #1b5e20;
}


/* ==========================================================
   3. GLOBAL BUTTON
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: #2e7d32;
    border-radius: 30px;

    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);

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

.btn:hover,
.btn:focus {
    background: #256628;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.btn:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.3);
    outline-offset: 4px;
}


/* ==========================================================
   4. HOMEPAGE HERO
   ========================================================== */

.hero {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #e6d2a2 0%,
            #f5f0e6 100%
        );
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

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

.hero h1 {
    margin-top: 0;
    margin-bottom: 20px;

    color: #1b5e20;

    font-size: 44px;
    line-height: 1.2;
}

.hero p {
    margin-bottom: 25px;

    color: #444;

    font-size: 18px;
    line-height: 1.55;
}


/* ==========================================================
   HOMEPAGE PRODUCT IMAGE
   ========================================================== */

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 0;
    margin: 0;

    /* Image artwork already contains the visual backdrop */
    background: transparent;
    border: 0;
    border-radius: 0;

    overflow: visible;
}


/* ---------- Product Image ---------- */

.hero-image img,
.hero-image .hero-product-image {
    display: block;

    width: 100%;
    max-width: 460px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;

    /*
     * Pivot from the top centre so the movement
     * behaves like a naturally hanging bag.
     */
    transform-origin: 50% 8%;

    animation:
        eco-bag-swing 6s
        ease-in-out
        infinite;

    /*
     * Very subtle depth only.
     * The artwork already contains its own shadow.
     */
    filter:
        drop-shadow(
            0 16px 18px rgba(0, 0, 0, 0.07)
        );

    will-change: transform;
}


/* ==========================================================
   GENTLE BAG SWING
   ========================================================== */

@keyframes eco-bag-swing {

    0% {
        transform:
            rotate(-1.2deg)
            translateY(0);
    }

    25% {
        transform:
            rotate(0deg)
            translateY(-2px);
    }

    50% {
        transform:
            rotate(1.2deg)
            translateY(0);
    }

    75% {
        transform:
            rotate(0deg)
            translateY(-2px);
    }

    100% {
        transform:
            rotate(-1.2deg)
            translateY(0);
    }
}


/* ==========================================================
   HOVER
   Pause rather than exaggerate the animation
   ========================================================== */

.hero-image:hover img,
.hero-image:hover .hero-product-image {
    animation-play-state: paused;
}


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

@media (max-width: 900px) {

    .hero-image img,
    .hero-image .hero-product-image {
        max-width: 400px;
    }

}


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

@media (max-width: 768px) {

    .hero-image {
        width: 100%;
        margin-top: 10px;
    }

    .hero-image img,
    .hero-image .hero-product-image {
        width: min(100%, 360px);
        max-width: 360px;
    }

}


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

@media (max-width: 480px) {

    .hero-image img,
    .hero-image .hero-product-image {
        width: min(100%, 310px);
        max-width: 310px;
    }

}


/* ==========================================================
   ACCESSIBILITY
   Respect user's reduced-motion preference
   ========================================================== */

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

    .hero-image img,
    .hero-image .hero-product-image {
        animation: none;
        transform: none;
        will-change: auto;
    }

}


/* ==========================================================
   5. HOMEPAGE SECTIONS
   ========================================================== */

section {
    padding: 60px 0;
}


/* ==========================================================
   6. HOMEPAGE BENEFITS
   ========================================================== */

.benefits-grid {
    display: grid;

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

    gap: 30px;
}

.benefit-item {
    padding: 30px;

    background: #fff;

    border-radius: 12px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);

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

.benefit-item:hover {
    transform: translateY(-5px);
}


/* ==========================================================
   7. HOMEPAGE CLIENTS
   ========================================================== */

.clients {
    background: #f9f9f9;
}

.clients-row {
    display: flex;
    align-items: center;

    gap: 30px;

    overflow-x: auto;
}

.client {
    flex: 0 0 auto;
}

.client img {
    display: block;

    width: auto;
    max-height: 60px;

    opacity: 0.6;

    filter: grayscale(100%);

    transition:
        opacity 0.3s ease,
        filter 0.3s ease;
}

.client img:hover {
    opacity: 1;
    filter: grayscale(0%);
}


/* ==========================================================
   8. HOMEPAGE FAQ
   ========================================================== */

.faq-item {
    margin-bottom: 20px;
}


/* ==========================================================
   9. HOMEPAGE CTA
   ========================================================== */

.cta {
    padding: 50px 20px;

    background: #2e7d32;

    color: #fff;

    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
    color: #fff;
}

.cta .btn {
    background: #fff;
    color: #2e7d32;
}

.cta .btn:hover,
.cta .btn:focus {
    background: #f1f1f1;
    color: #1b5e20;
}


/* ==========================================================
   10. BRANDED ECO BAGS
   ========================================================== */

.branded-page {
    --eco-green: #2e7d32;
    --eco-green-dark: #1b5e20;
    --eco-cream: #e6d2a2;
    --eco-cream-light: #faf6ec;
    --eco-text: #333;
    --eco-muted: #626262;
    --eco-border: #e8e8e3;
}


/* Prevent global section rule from controlling
   the branded page section spacing. */

.branded-page section {
    padding: 0;
}

.branded-page h1,
.branded-page h2,
.branded-page h3 {
    color: var(--eco-green);
}

.branded-page p {
    margin-top: 0;
}

.branded-content-narrow {
    max-width: 960px;
}


/* ==========================================================
   11. BRANDED HERO
   ========================================================== */

.branded-hero {
    position: relative;

    padding: 75px 0 85px !important;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e6d2a2 0%,
            #f2e4c2 48%,
            #faf7ef 100%
        );
}

.branded-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(300px, 0.95fr);

    gap: 70px;

    align-items: center;
}

.branded-hero-content {
    max-width: 590px;
}

.branded-page .eyebrow {
    margin: 0 0 12px;

    color: var(--eco-green);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;

    text-transform: uppercase;
}

.branded-hero h1 {
    margin: 0 0 20px;

    color: var(--eco-green-dark);

    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.08;

    letter-spacing: -0.025em;
}

.branded-lead {
    max-width: 570px;

    margin: 0 0 16px;

    color: var(--eco-text);

    font-size: 19px;
    line-height: 1.65;
}

.branded-hero-content > p:not(.eyebrow):not(.branded-lead) {
    max-width: 550px;

    margin: 0 0 28px;

    color: var(--eco-muted);

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   12. BRANDED HERO PRODUCT
   ========================================================== */

.branded-hero-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 470px;
}

.branded-hero-image::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

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

    border-radius: 50%;
}

.branded-hero-image img {
    position: relative;
    z-index: 1;

    display: block;

    width: auto;
    max-width: 330px;
    max-height: 500px;
    height: auto;

    object-fit: contain;

    transform-origin: 50% 5%;

    filter:
        drop-shadow(
            0 18px 18px rgba(0, 0, 0, 0.13)
        );

    animation:
        ecoBagSwing 6.5s ease-in-out infinite;
}

@keyframes ecoBagSwing {

    0%,
    100% {
        transform: rotate(-1.1deg);
    }

    50% {
        transform: rotate(1.1deg);
    }
}


/* ==========================================================
   13. BRANDED BUTTONS
   ========================================================== */

.branded-page .btn {
    min-height: 50px;

    padding: 13px 28px;

    border: 2px solid var(--eco-green);
    border-radius: 999px;

    background: var(--eco-green);

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(46, 125, 50, 0.2);
}

.branded-page .btn:hover,
.branded-page .btn:focus {
    background: var(--eco-green-dark);
    border-color: var(--eco-green-dark);

    color: #fff;
}


/* ==========================================================
   14. BRANDED SECTION HEADINGS
   ========================================================== */

.branded-page .section-heading {
    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}

.branded-page .section-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.2;

    text-align: center;
}

.branded-page .section-heading p {
    margin: 0 auto;

    color: var(--eco-muted);

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================================
   15. BRANDED BENEFITS
   ========================================================== */

.branded-benefits {
    padding: 85px 0 !important;

    background: #fff;
}

.branded-benefits-grid {
    display: grid;

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

    gap: 25px;
}

.branded-benefit {
    padding: 32px 28px;

    background: #fff;

    border: 1px solid var(--eco-border);
    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.055);

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

.branded-benefit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.075);
}

.branded-benefit h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.35;
}

.branded-benefit p {
    margin: 0;

    color: var(--eco-muted);

    line-height: 1.7;
}


/* ==========================================================
   16. BRANDED BUSINESS USES
   ========================================================== */

.branded-uses {
    padding: 85px 0 !important;

    background: #f7f7f5;
}

.branded-uses > .container > h2 {
    max-width: 760px;

    margin: 0 auto 16px;

    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.2;

    text-align: center;
}

.branded-uses > .container > p {
    max-width: 720px;

    margin: 0 auto 42px;

    color: var(--eco-muted);

    font-size: 17px;
    line-height: 1.7;

    text-align: center;
}

.branded-use-grid {
    display: grid;

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

    gap: 22px;
}

.branded-use-grid > div {
    padding: 27px 28px;

    background: #fff;

    border: 1px solid var(--eco-border);
    border-left: 4px solid var(--eco-green);

    border-radius: 9px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.04);
}

.branded-use-grid h3 {
    margin: 0 0 9px;

    font-size: 19px;
    line-height: 1.35;
}

.branded-use-grid p {
    margin: 0;

    color: var(--eco-muted);

    line-height: 1.7;
}


/* ==========================================================
   17. ECO / LOCAL POSITIONING
   ========================================================== */

.branded-local {
    padding: 85px 0 !important;

    background: var(--eco-cream-light);
}

.branded-local-inner {
    max-width: 850px;

    text-align: center;
}

.branded-local .eyebrow {
    text-align: center;
}

.branded-local h2 {
    max-width: 720px;

    margin: 0 auto 20px;

    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.2;

    text-align: center;
}

.branded-local p:not(.eyebrow) {
    max-width: 760px;

    margin: 0 auto 16px;

    color: var(--eco-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* ==========================================================
   18. BRANDED FAQ / AEO
   ========================================================== */

.branded-faq {
    padding: 85px 0 !important;

    background: #fff;
}

.branded-faq .section-heading {
    margin-bottom: 35px;
}

.branded-faq .faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.branded-faq .faq-item {
    margin: 0;

    padding: 24px 0;

    border-bottom: 1px solid var(--eco-border);
}

.branded-faq .faq-item:first-child {
    border-top: 1px solid var(--eco-border);
}

.branded-faq .faq-item h3 {
    margin: 0 0 9px;

    font-size: 18px;
    line-height: 1.4;
}

.branded-faq .faq-item p {
    margin: 0;

    color: var(--eco-muted);

    line-height: 1.7;
}


/* ==========================================================
   19. BRANDED FINAL CTA
   ========================================================== */

.branded-cta {
    padding: 75px 20px !important;

    background: var(--eco-green);

    text-align: center;
}

.branded-cta .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.branded-cta h2 {
    margin: 0 0 15px;

    color: #fff;

    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.2;

    text-align: center;
}

.branded-cta p:not(.eyebrow) {
    max-width: 650px;

    margin: 0 auto 26px;

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

    font-size: 17px;
    line-height: 1.7;
}

.branded-page .btn-light {
    background: #fff;
    border-color: #fff;

    color: var(--eco-green-dark);

    box-shadow: none;
}

.branded-page .btn-light:hover,
.branded-page .btn-light:focus {
    background: var(--eco-cream-light);
    border-color: var(--eco-cream-light);

    color: var(--eco-green-dark);
}


/* ==========================================================
   20. FOOTER
   ========================================================== */

.site-footer {
    padding: 20px 0;

    background: #222;

    color: #fff;

    text-align: center;
}


/* ==========================================================
   21. TABLET
   ========================================================== */

@media (max-width: 900px) {

    .branded-hero {
        padding:
            65px 0 70px !important;
    }

    .branded-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.8fr);

        gap: 40px;
    }

    .branded-hero-image {
        min-height: 400px;
    }

    .branded-hero-image::before {
        width: 300px;
        height: 300px;
    }

    .branded-hero-image img {
        max-width: 280px;
        max-height: 430px;
    }

    .branded-benefits-grid {
        gap: 18px;
    }

    .branded-benefit {
        padding: 26px 22px;
    }
}


/* ==========================================================
   22. MOBILE
   ========================================================== */

@media (max-width: 768px) {

    .container {
        width: 88%;
    }


    /* Header */

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        max-height: 95px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;

        gap: 12px;
    }


    /* Homepage */

    .hero {
        padding: 55px 0;
    }

    .hero-grid {
        flex-direction: column;

        gap: 35px;

        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }


    /* Branded hero */

    .branded-hero {
        padding:
            55px 0 65px !important;
    }

    .branded-hero-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .branded-hero-content {
        max-width: none;

        text-align: center;
    }

    .branded-page .eyebrow {
        text-align: center;
    }

    .branded-hero h1 {
        font-size:
            clamp(36px, 10vw, 46px);
    }

    .branded-lead {
        margin-right: auto;
        margin-left: auto;

        font-size: 18px;
    }

    .branded-hero-content >
    p:not(.eyebrow):not(.branded-lead) {
        margin-right: auto;
        margin-left: auto;
    }

    .branded-hero-image {
        min-height: 0;
    }

    .branded-hero-image::before {
        width: 270px;
        height: 270px;
    }

    .branded-hero-image img {
        max-width: 290px;
        max-height: 420px;
    }


    /* Branded sections */

    .branded-benefits,
    .branded-uses,
    .branded-local,
    .branded-faq {
        padding:
            65px 0 !important;
    }

    .branded-benefits-grid,
    .branded-use-grid {
        grid-template-columns: 1fr;
    }

    .branded-benefit {
        padding: 27px 24px;
    }

    .branded-use-grid > div {
        padding: 25px 24px;
    }

    .branded-cta {
        padding:
            65px 20px !important;
    }
}


/* ==========================================================
   23. SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .branded-hero h1 {
        font-size: 36px;
    }

    .branded-hero-image img {
        max-width: 260px;
    }

    .branded-page .btn {
        width: 100%;
        max-width: 320px;
    }

    .branded-page .section-heading h2,
    .branded-uses > .container > h2,
    .branded-local h2,
    .branded-cta h2 {
        font-size: 29px;
    }
}


/* ==========================================================
   24. ACCESSIBILITY
   ========================================================== */

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

    html {
        scroll-behavior: auto;
    }

    .btn,
    .hero-image img,
    .benefit-item,
    .branded-benefit {
        transition: none;
    }

    .branded-hero-image img {
        animation: none;
    }

    .btn:hover,
    .hero-image img:hover,
    .benefit-item:hover,
    .branded-benefit:hover {
        transform: none;
    }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page {
    --contact-green: #2e7d32;
    --contact-green-dark: #1b5e20;
    --contact-cream: #e6d2a2;
    --contact-cream-light: #f7f0df;
    --contact-text: #333333;
    --contact-muted: #666666;
    --contact-border: #e5e5e5;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}


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

.contact-hero {
    padding: 80px 0 70px;

    background:
        linear-gradient(
            135deg,
            #e6d2a2 0%,
            #f5f0e6 100%
        );
}

.contact-hero-inner {
    max-width: 760px;
    text-align: center;
}

.contact-eyebrow {
    margin: 0 0 14px;

    color: var(--contact-green);
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0 0 22px;

    color: var(--contact-green-dark);

    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.1;

    letter-spacing: -0.02em;
}

.contact-lead {
    max-width: 680px;
    margin: 0 auto;

    color: #444444;

    font-size: 19px;
    line-height: 1.7;
}


/* ==========================================================
   CONTACT CONTENT
   ========================================================== */

.contact-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 70px;

    align-items: start;
}


/* ==========================================================
   CONTACT DETAILS
   ========================================================== */

.contact-details {
    padding-top: 20px;
}

.contact-details h2 {
    margin: 0 0 20px;

    color: var(--contact-green-dark);

    font-size: 34px;
    line-height: 1.2;

    text-align: left;
}

.contact-details > p:not(.contact-eyebrow) {
    margin: 0 0 32px;

    color: var(--contact-muted);

    font-size: 17px;
    line-height: 1.75;
}


/* ---------- Email Card ---------- */

.contact-email-card {
    padding: 26px 28px;

    background: var(--contact-cream-light);

    border-left:
        4px solid
        var(--contact-green);

    border-radius: 8px;
}

.contact-label {
    display: block;

    margin-bottom: 8px;

    color: var(--contact-muted);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-email-card a {
    color: var(--contact-green-dark);

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;
}

.contact-email-card a:hover {
    text-decoration: underline;
}


/* ==========================================================
   FORM CARD
   ========================================================== */

.contact-form-card {
    padding: 42px;

    background: #ffffff;

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

    border-radius: 14px;

    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, 0.07);
}

.contact-form-card h2 {
    margin: 0 0 12px;

    color: var(--contact-green-dark);

    font-size: 30px;
    line-height: 1.25;

    text-align: left;
}

.contact-form-intro {
    margin: 0 0 30px;

    color: var(--contact-muted);

    line-height: 1.7;
}


/* ==========================================================
   FORM FIELDS
   ========================================================== */

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--contact-text);

    font-size: 15px;
    font-weight: 600;
}

.form-field .optional {
    color: var(--contact-muted);

    font-size: 13px;
    font-weight: 400;
}

.form-field input,
.form-field textarea {
    display: block;

    width: 100%;

    padding: 13px 15px;

    border:
        1px solid
        #cccccc;

    border-radius: 7px;

    background: #ffffff;
    color: var(--contact-text);

    font: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input {
    min-height: 48px;
}

.form-field textarea {
    min-height: 150px;

    line-height: 1.6;

    resize: vertical;
}


/* ---------- Focus ---------- */

.form-field input:focus,
.form-field textarea:focus {
    border-color:
        var(--contact-green);

    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(46, 125, 50, 0.14);
}


/* ==========================================================
   SUBMIT BUTTON
   ========================================================== */

.contact-submit {
    border: 0;
    cursor: pointer;

    font-family: inherit;
    font-size: 15px;
}


/* ==========================================================
   FORM MESSAGES
   ========================================================== */

.contact-message {
    margin: 0 0 28px;
    padding: 16px 18px;

    border-radius: 7px;

    line-height: 1.6;
}

.contact-message-success {
    background: #edf7ee;
    border: 1px solid #b8dabb;

    color: #1b5e20;
}

.contact-message-error {
    background: #fff2f2;
    border: 1px solid #e6baba;

    color: #8a2424;
}


/* ==========================================================
   HONEYPOT
   ========================================================== */

.contact-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;
}


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

@media (max-width: 800px) {

    .contact-hero {
        padding: 65px 0;
    }

    .contact-section {
        padding: 65px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-details {
        padding-top: 0;
    }

    .contact-form-card {
        padding: 32px;
    }

}


@media (max-width: 480px) {

    .contact-hero {
        padding: 55px 0;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-lead {
        font-size: 17px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-details h2 {
        font-size: 30px;
    }

    .contact-form-card {
        padding: 26px 20px;
    }

    .contact-submit {
        width: 100%;
    }

}

/* ==========================================================
   ECO NEWS / POSTS PAGE
   ========================================================== */

.eco-news-page {
    --eco-green: #2e7d32;
    --eco-green-dark: #1f5f25;
    --eco-cream: #e6d2a2;
    --eco-cream-light: #f8f2e4;
    --eco-text: #333333;
    --eco-muted: #686868;
    --eco-border: #e6e6e6;
}

.eco-news-page *,
.eco-news-page *::before,
.eco-news-page *::after {
    box-sizing: border-box;
}


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

.news-hero {
    padding: 80px 0 75px;

    background:
        linear-gradient(
            135deg,
            #ead7a7 0%,
            #f5ead1 55%,
            #faf7ef 100%
        );

    text-align: center;
}

.news-hero-inner {
    max-width: 800px;
}

.news-hero .eyebrow {
    margin: 0 0 14px;

    color: var(--eco-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.news-hero h1 {
    margin: 0 0 20px;

    color: var(--eco-green-dark);

    font-size: clamp(42px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.news-hero-intro {
    max-width: 700px;
    margin: 0 auto;

    color: #454545;

    font-size: 19px;
    line-height: 1.7;
}


/* ===== NEWS ARCHIVE ===== */

.news-archive {
    padding: 90px 0;
    background: #ffffff;
}

.news-grid {
    display: grid;

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

    gap: 32px;
}


/* ===== ARTICLE CARD ===== */

.news-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--eco-border);
    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.055);

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

.news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.09);
}


/* ===== FEATURED IMAGE ===== */

.news-card-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--eco-cream-light);
}

.news-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.035);
}


/* ===== CARD CONTENT ===== */

.news-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 28px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 14px;

    color: var(--eco-muted);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.news-card-title {
    margin: 0 0 15px;

    text-align: left;

    font-size: 24px;
    line-height: 1.3;
}

.news-card-title a {
    color: var(--eco-green-dark);
    text-decoration: none;

    transition: color 0.2s ease;
}

.news-card-title a:hover,
.news-card-title a:focus {
    color: var(--eco-green);
}

.news-card-excerpt {
    margin-bottom: 22px;

    color: var(--eco-muted);

    font-size: 15px;
    line-height: 1.7;
}

.news-card-excerpt p {
    margin: 0;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    color: var(--eco-green);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}

.news-read-more span {
    transition: transform 0.2s ease;
}

.news-read-more:hover span {
    transform: translateX(4px);
}

.news-read-more:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.25);
    outline-offset: 4px;
}


/* ===== PAGINATION ===== */

.news-pagination {
    margin-top: 60px;
}

.news-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 44px;
    min-height: 44px;

    padding: 8px 14px;

    border: 1px solid var(--eco-border);
    border-radius: 8px;

    background: #ffffff;

    color: var(--eco-green-dark);

    font-weight: 700;
    text-decoration: none;
}

.news-pagination .page-numbers.current {
    background: var(--eco-green);
    border-color: var(--eco-green);

    color: #ffffff;
}

.news-pagination a.page-numbers:hover {
    background: var(--eco-cream-light);
    border-color: var(--eco-green);
}


/* ===== EMPTY STATE ===== */

.news-empty {
    max-width: 680px;
    margin: 0 auto;

    padding: 55px 35px;

    background: var(--eco-cream-light);

    border-radius: 14px;

    text-align: center;
}

.news-empty h2 {
    margin: 0 0 15px;

    color: var(--eco-green-dark);
}

.news-empty p {
    margin: 0;

    color: var(--eco-muted);

    font-size: 17px;
    line-height: 1.7;
}


/* ===== NEWS CTA ===== */

.news-cta {
    padding: 75px 20px;

    background: var(--eco-green);

    text-align: center;
}

.news-cta-inner {
    max-width: 760px;
}

.news-cta .eyebrow {
    margin: 0 0 12px;

    color: #dcefdc;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-cta h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
}

.news-cta p {
    max-width: 620px;
    margin: 0 auto 28px;

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

    font-size: 17px;
    line-height: 1.7;
}

.news-cta .btn-light {
    background: #ffffff;
    color: var(--eco-green-dark);
}

.news-cta .btn-light:hover {
    background: var(--eco-cream-light);
    color: var(--eco-green-dark);
}


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

@media (max-width: 900px) {

    .news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

}


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

@media (max-width: 767px) {

    .news-hero {
        padding: 60px 0;
    }

    .news-hero h1 {
        font-size: 40px;
    }

    .news-hero-intro {
        font-size: 17px;
    }

    .news-archive {
        padding: 65px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-content {
        padding: 24px;
    }

    .news-card-title {
        font-size: 22px;
    }

    .news-cta {
        padding: 65px 20px;
    }

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

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

    .news-card,
    .news-card-image img,
    .news-read-more span {
        transition: none;
    }

    .news-card:hover,
    .news-card:hover .news-card-image img {
        transform: none;
    }

}