/* CSS Variables for Brand Colors */
:root {
    --primary-green: #007B3E;
    --accent-red: #ED1F24;
    --accent-gold: #FFD700;
    --light-green: #e8f5e8;
    --text-dark: #1a3509;
    --text-medium: #4a5f2a;
    --text-light: #5a6b3a;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4.5vw, 2rem);
}

.section {
    padding: 3rem 0;
}

.section--muted {
    background: #f9fdf9;
}

.section--light {
    background: #ffffff;
}

.leadership-team,
.collaborative-approach,
.support-team,
.recent-discoveries {
    scroll-margin-top: 80px;
}

.section-title {
    font-size: clamp(2rem, 1.7rem + 1.2vw, 2.6rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.section-title--left {
    text-align: left;
}

.text-accent {
    color: var(--accent-red);
}

.lead {
    font-size: 1.3rem;
    color: #4a5f2a;
    margin-bottom: 2rem;
    font-weight: 500;
}

.section-callout {
    text-align: center;
    margin: 3rem 0;
}

.section-subtitle {
    color: #1a3509;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.list-checks li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #5a6b3a;
}

.list-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.btn--full {
    width: 100%;
    text-align: center;
}

/* Dramatic Hero Section */
.hero-dramatic {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 70px;
    padding: 1.75rem 0 3rem;
    background: linear-gradient(180deg, rgba(248, 255, 254, 0.95) 0%, rgba(232, 245, 232, 0.95) 100%);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.hero-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.hero-content-centered {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-content--center {
    text-align: center;
    align-items: center;
}

.hero-image-section {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0, 123, 62, 0.18);
}

.hero-bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero--simple {
    margin-top: 70px;
    padding: 2.5rem 0 3.5rem;
    background: linear-gradient(180deg, rgba(248, 255, 254, 0.95) 0%, rgba(232, 245, 232, 0.95) 100%);
}

.hero--simple .hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    gap: 1.25rem;
}

.hero-content--center {
    text-align: center;
}


.hero-title-dramatic {
    font-size: clamp(1.95rem, 1.45rem + 2.5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.highlight-red {
    color: #ED1F24;
    font-weight: 600;
}

.hero-description-dramatic {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
    margin: 0 auto 1rem;
    line-height: 1.65;
    color: var(--text-medium);
    max-width: 44ch;
}

.hero-supporting {
    margin: 0 auto;
    font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    color: var(--text-light);
    max-width: 44ch;
}

.hero-supporting--center {
    margin: 1.5rem auto;
    text-align: center;
}

.hero-description--narrow {
    max-width: 640px;
    margin: 0 auto;
}

.hero-buttons-dramatic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.btn-primary-dramatic,
.btn-secondary-dramatic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    width: 100%;
}

.btn-primary-dramatic {
    background: #ED1F24;
    color: #fff;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid #ED1F24;
    transition: all 0.3s;
    text-shadow: none;
    box-shadow: 0 10px 26px rgba(237, 31, 36, 0.3);
}

.btn-primary-dramatic:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #1a3509;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary-dramatic {
    background: transparent;
    color: var(--primary-green);
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid var(--primary-green);
    transition: all 0.3s;
    text-shadow: none;
}

.btn-secondary-dramatic:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: #1a3509;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 123, 62, 0.2);
    box-shadow: 0 14px 28px rgba(0, 123, 62, 0.16);
    animation: bounce 2s infinite;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--accent-red);
    animation-play-state: paused;
    box-shadow: 0 20px 45px rgba(237, 31, 36, 0.25);
}

.hero-scroll-indicator:hover .scroll-arrow {
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 3rem 0 4rem;
        text-align: left;
    }

    .hero::before {
        display: block;
    }

    .hero-content-centered {
        align-items: flex-start;
        text-align: left;
    }

    .hero-dramatic {
        min-height: calc(100vh - 70px);
        padding: 2.5rem 0 4rem;
    }

    .hero-inner {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
        gap: 2.5rem;
        align-items: center;
        padding: 0 2rem;
    }

    .hero-content-centered {
        max-width: clamp(520px, 44vw, 720px);
    }

    .hero-title-dramatic {
        font-size: clamp(2.4rem, 2rem + 1vw, 3rem);
        font-weight: 300;
        letter-spacing: 0.8px;
    }

    .hero-description-dramatic {
        font-size: 1.15rem;
        margin: 0 0 1.5rem;
        max-width: 560px;
    }

    .hero-supporting {
        margin-top: 0.5rem;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.05rem;
        max-width: 520px;
    }

    .hero-image-section {
        min-height: 380px;
        border-radius: 20px;
        box-shadow: 0 26px 54px rgba(0, 123, 62, 0.2);
    }

    .hero-buttons-dramatic {
        flex-direction: row;
        gap: 1.5rem;
        width: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .btn-primary-dramatic,
    .btn-secondary-dramatic {
        width: auto;
        padding: 1.1rem 2.6rem;
        font-size: 1.1rem;
    }

    .hero-scroll-indicator {
        bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 4.5rem 0;
    }

    .hero-inner {
        gap: 3rem;
    }

    .hero-image-section {
        min-height: 480px;
    }
}

/* Original Hero Section */
.hero {
    margin-top: 70px;
    padding: 2.5rem 0 3.25rem;
    background: linear-gradient(180deg, rgba(248, 255, 254, 0.95) 0%, rgba(232, 245, 232, 0.95) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 20%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 62, 0.03));
    pointer-events: none;
    display: none;
}

.hero-title {
    font-size: clamp(1.9rem, 1.6rem + 1.6vw, 3rem);
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 0 auto 1.25rem;
    line-height: 1.2;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-top: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 31, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}


.section-heading {
    max-width: 760px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.05rem, 1.8rem + 1vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-heading p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.credibility-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8ec 100%);
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
}

.credibility-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.credibility-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--light-green);
    box-shadow: 0 12px 30px rgba(0, 123, 62, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.credibility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 123, 62, 0.12);
}

.credibility-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.credibility-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.credibility-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
}

.credibility-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.how-it-works {
    background: white;
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
    background: #f9fdf9;
    border: 1px solid var(--light-green);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 123, 62, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 123, 62, 0.12);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.steps-cta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.steps-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.enablement-section {
    background: white;
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
}

.enablement-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.enablement-card {
    background: #f9fdf9;
    border: 1px solid var(--light-green);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enablement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 123, 62, 0.1);
}

.enablement-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.enablement-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.enablement-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.commercial-intros {
    background: #f9fdf9;
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.intro-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 123, 62, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 62, 0.08);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 123, 62, 0.18);
}

.intro-card-image, .category-card-image, .feature-card-image {
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.intro-card-image {
    aspect-ratio: 1;
    height: 200px;
}

.intro-card-image img, .category-card-image img, .feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.support-team-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--light-green) 0%, #d4e7c5 100%);
    border-radius: 16px;
}

.intro-card, .category-card--split, .feature-card {
    overflow: visible;
}

.intro-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.intro-card-body h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.5rem;
}

.intro-card-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.intro-card-highlights li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-light);
    line-height: 1.5;
}

.intro-card-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.intro-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq {
    background: linear-gradient(135deg, #f4fbf2 0%, #fefefe 100%);
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--light-green);
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 123, 62, 0.08);
    text-align: left;
}

.faq-item h3 {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
}

.faq-toggle span:first-child {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle:focus-visible {
    outline: 2px solid var(--accent-red);
    outline-offset: 6px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 123, 62, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-green);
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-icon::before {
    content: '+';
    font-size: 1.2rem;
    line-height: 1;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    background: rgba(0, 123, 62, 0.16);
}

.faq-toggle[aria-expanded="true"] .faq-icon::before {
    content: '−';
}

.faq-content {
    margin-top: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-content p {
    margin: 0;
}

/* Features Section */
.features {
    padding: clamp(3.25rem, 2.5rem + 2vw, 5rem) 0;
    background: white;
}

.features--muted {
    background: #f9fdf9;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}


.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.features--spotlight .feature-card-grid {
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 48px rgba(0, 123, 62, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 123, 62, 0.18);
}

.feature-card-image {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
}

.feature-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-body {
    padding: 2rem 2.25rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card-body h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.45rem;
}

.feature-card-body p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.65;
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 123, 62, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-card--accent .feature-card-body {
    background: linear-gradient(135deg, rgba(26, 53, 9, 0.95), rgba(45, 80, 22, 0.95));
    color: #e8f5e8;
}

.feature-card--accent .feature-card-body h3 {
    color: #FFD700;
}

.feature-card--accent .feature-card-body p {
    color: #f2fff2;
}

.feature-card--accent .feature-card-icon {
    background: rgba(255, 215, 0, 0.18);
    color: #FFD700;
}

@media (max-width: 768px) {
    .feature-card-body {
        padding: 2rem;
    }
}



.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f9fdf9;
    border: 1px solid var(--light-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 123, 62, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid--list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature--list {
    background: #ffffff;
}

.feature--list h4 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.story-section {
    padding: clamp(3.5rem, 2.8rem + 3vw, 6rem) 0;
    background: #ffffff;
    position: relative;
}

/* Story Layout */
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-highlight {
    background: #f9fdf9;
    padding: 2rem;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 2rem;
}

.story-copy {
    display: flex;
    flex-direction: column;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: clamp(240px, 45vh, 360px);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 123, 62, 0.2);
}

.story-credit {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-credit p {
    margin: 0;
    line-height: 1.2;
    color: #1a3509;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #4a5f2a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.text-muted {
    color: #7c9456;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .story-credit {
        position: static;
        margin: 1.25rem 0 0;
    }

    .story-highlight {
        margin-bottom: 1.5rem;
    }
}

/* CTA Section */
.cta {
    padding: 2.5rem 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--primary-green));
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--accent-red);
    border-color: var(--accent-red);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cta .btn-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: #f8fffe;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--light-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid var(--light-green);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Product Grid */
.product-categories {
    padding: 3rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-grid--listing {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 123, 62, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 123, 62, 0.16);
}

.category-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    position: relative;
    padding-left: 15px;
}

.category-card li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

.category-card li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 123, 62, 0.08);
    border-top: 4px solid var(--primary-green);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 123, 62, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.category-grid--feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.25rem;
    margin-bottom: 3rem;
}

.category-card--split {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.2fr);
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 123, 62, 0.14);
}

.category-card-image {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.category-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-grid--feature .category-card-image {
    min-height: 100%;
    height: 100%;
}

.category-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
}

.category-card--split .category-card-body {
    background: #fff;
    padding: 2.5rem 2.75rem;
}

.category-card--listing .category-card-body {
    padding: 2.25rem 2.5rem;
}

@media (max-width: 992px) {
    .category-card--split {
        grid-template-columns: 1fr;
    }

    .category-card-body {
        padding: 2rem;
    }

    .category-grid--feature .category-card-image {
        height: clamp(220px, 60vw, 360px);
    }
}

@media (max-width: 768px) {
    .category-card--split .category-card-image {
        min-height: 240px;
    }
}

/* Responsive Design */

@media (max-width: 480px) {
    .hero-title,
    .hero-title-dramatic {
        font-size: 1.85rem;
    }

    .nav-logo h1 {
        font-size: 1.55rem;
        letter-spacing: 2px;
    }

    .nav-tagline {
        font-size: 0.62rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 123, 62, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4.5vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-wordmark {
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
    align-items: flex-start;
}
.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-logo h1 {
    font-family: "Oswald", sans-serif;
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.nav-tagline {
    font-size: 0.66rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    display: block;
    line-height: 1;
    margin-top: -0.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-cta {
    display: none;
}

.nav-cta-button {
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 999px;
}

@media (min-width: 992px) {
    .nav-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 1.5rem 3rem;
        gap: 1.25rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 0.25rem 0;
        display: inline-block;
    }

    .nav-toggle {
        display: flex;
    }
}
