/* ── Hero ─── */
.hero {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    min-height           : 100vh;
    margin-top           : var(--navbar-h);
}

.hero__content {
    background     : var(--green-dark);
    display        : flex;
    flex-direction : column;
    justify-content: center;
    padding        : var(--space-3xl) var(--space-2xl);
}

.hero__content h1 {
    color        : var(--white);
    margin-bottom: var(--space-md);
    line-height  : 1.1;
}

.hero__content h1 em {
    color     : var(--gold);
    font-style: italic;
}

.hero__content p {
    font-size    : var(--text-md);
    color        : rgba(255, 255, 255, 0.78);
    margin-bottom: var(--space-xl);
    max-width    : 460px;
    line-height  : 1.8;
}

.hero__actions {
    display  : flex;
    gap      : var(--space-sm);
    flex-wrap: wrap;
}

.hero__visual {
    position  : relative;
    overflow  : hidden;
    background: linear-gradient(145deg, var(--green-mid) 0%, #1a4a22 100%);
    min-height: 500px;
}

.hero__visual img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    position  : absolute;
    inset     : 0;
}

.hero__visual-placeholder {
    position       : absolute;
    inset          : 0;
    display        : flex;
    flex-direction : column;
    align-items    : center;
    justify-content: center;
    color          : rgba(255, 255, 255, 0.18);
    font-family    : var(--font-display);
    font-size      : var(--text-2xl);
    text-align     : center;
    padding        : var(--space-lg);
    gap            : var(--space-md);
}

/* ── Stats Bar ─── */
.stats-bar {
    background: var(--gold);
    padding   : var(--space-xl) 0;
}

.stats-bar__grid {
    display              : grid;
    grid-template-columns: repeat(4, 1fr);
    text-align           : center;
}

.stats-bar__item {
    padding: var(--space-sm) var(--space-lg);
}

.stats-bar__item+.stats-bar__item {
    border-left: 1px solid rgba(27, 92, 40, 0.18);
}

.stats-bar__number {
    font-family  : var(--font-display);
    font-size    : var(--text-4xl);
    color        : var(--green-dark);
    line-height  : 1;
    margin-bottom: 0.35rem;
}

.stats-bar__label {
    font-size     : var(--text-xs);
    font-weight   : 700;
    color         : var(--green-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity       : 0.8;
}

/* ── Focus Cards (Eggs · Broilers · Layers) ──────────────── */
.focus-grid {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : var(--space-lg);
}

.focus-card {
    background   : var(--white);
    border       : 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow     : hidden;
    transition   : var(--transition);
    box-shadow   : var(--shadow-sm);
}

.focus-card:hover {
    transform   : translateY(-6px);
    box-shadow  : var(--shadow-lg);
    border-color: var(--gold);
}

.focus-card__image {
    aspect-ratio   : 16/9;
    overflow       : hidden;
    background     : var(--green-light);
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 3.5rem;
}

.focus-card__image img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.focus-card:hover .focus-card__image img {
    transform: scale(1.05);
}

.focus-card__body {
    padding: var(--space-lg);
}

.focus-card__body h3 {
    color        : var(--green-dark);
    margin-bottom: var(--space-xs);
}

.focus-card__body p {
    font-size    : var(--text-sm);
    color        : var(--text-muted);
    margin-bottom: var(--space-md);
    line-height  : 1.7;
}

.focus-card__link {
    font-size  : var(--text-sm);
    font-weight: 600;
    color      : var(--gold-dark);
    display    : inline-flex;
    align-items: center;
    gap        : 0.4rem;
}

.focus-card__link:hover {
    color: var(--green-dark);
    gap  : 0.7rem;
}

/* ── Audience Grid (Who We Serve) ────── */
.audience-grid {
    display              : grid;
    grid-template-columns: repeat(4, 1fr);
    gap                  : var(--space-lg);
}

.audience-card {
    background   : var(--white);
    border       : 1px solid var(--border);
    border-radius: var(--radius-md);
    padding      : var(--space-xl) var(--space-lg);
    text-align   : center;
    transition   : var(--transition);
}

.audience-card:hover {
    border-color: var(--gold);
    box-shadow  : var(--shadow-md);
}

.audience-card__icon {
    width          : 62px;
    height         : 62px;
    border-radius  : 50%;
    background     : var(--green-light);
    display        : flex;
    align-items    : center;
    justify-content: center;
    margin         : 0 auto var(--space-md);
    font-size      : 1.6rem;
}

.audience-card h4 {
    font-family  : var(--font-body);
    font-weight  : 700;
    font-size    : var(--text-base);
    color        : var(--green-dark);
    margin-bottom: var(--space-xs);
}

.audience-card p {
    font-size  : var(--text-sm);
    color      : var(--text-muted);
    line-height: 1.65;
}

/* ── Initiatives Strip ─── */
.initiatives-strip {
    background: linear-gradient(135deg, #0f3d1a 0%, var(--green-dark) 60%, var(--green-mid) 100%);
}

.initiatives-strip__inner {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : var(--space-3xl);
    align-items          : center;
}

.initiatives-strip__text h2 {
    color        : var(--white);
    margin-bottom: var(--space-md);
}

.initiatives-strip__text p {
    color        : rgba(255, 255, 255, 0.75);
    font-size    : var(--text-md);
    margin-bottom: var(--space-xl);
    line-height  : 1.8;
}

.initiative-item {
    background   : rgba(255, 255, 255, 0.07);
    border       : 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding      : var(--space-md) var(--space-lg);
    display      : flex;
    align-items  : flex-start;
    gap          : var(--space-md);
    margin-bottom: var(--space-sm);
    transition   : var(--transition);
}

.initiative-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.initiative-item:last-child {
    margin-bottom: 0;
}

.initiative-item__icon {
    font-size  : 1.5rem;
    flex-shrink: 0;
    margin-top : 2px;
}

.initiative-item__text h4 {
    color        : var(--gold);
    font-family  : var(--font-body);
    font-weight  : 600;
    font-size    : var(--text-base);
    margin-bottom: 0.2rem;
}

.initiative-item__text p {
    color    : rgba(255, 255, 255, 0.68);
    font-size: var(--text-sm);
}

/* ── Investor CTA ─── */
.investor-cta {
    background: #111A12;
}

.investor-cta__inner {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    gap            : var(--space-xl);
}

.investor-cta__text h2 {
    color        : var(--white);
    margin-bottom: var(--space-sm);
}

.investor-cta__text p {
    color    : rgba(255, 255, 255, 0.68);
    font-size: var(--text-md);
    max-width: 540px;
}

/* ── Responsive: Home ──── */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* ── Hero ─────── */
    .hero {
        grid-template-columns: 1fr;
        min-height           : auto;
    }

    .hero__content {
        min-height: 80vh;
        padding   : var(--space-2xl) var(--space-lg);
    }

    .hero__visual {
        display   : block;
        height    : 320px;
        min-height: 320px;
        position  : relative;
        overflow  : hidden;
    }

    .hero__visual img {
        position  : absolute;
        inset     : 0;
        width     : 100%;
        height    : 100%;
        object-fit: cover;
    }

    .hero__visual-placeholder {
        position  : absolute;
        inset     : 0;
        min-height: unset;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
        width          : 100%;
    }

    /* ── Stats Bar ──────────────────────────────────────── */
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar__item+.stats-bar__item {
        border-left: none;
    }

    /* ── Focus Grid ─────────────────────────────────────── */
    .focus-grid {
        grid-template-columns: 1fr;
    }

    /* ── Audience Grid ──────────────────────────────────── */
    .audience-grid {
        grid-template-columns: 1fr;
    }

    /* ── Initiatives ────────────────────────────────────── */
    .initiatives-strip__inner {
        grid-template-columns: 1fr;
        gap                  : var(--space-xl);
    }

    /* ── Investor CTA ───────────────────────────────────── */
    .investor-cta__inner {
        flex-direction: column;
        text-align    : center;
    }

    /* ── Video ──────────────────────────────────────────── */
    .video-section {
        grid-template-columns: 1fr;
    }

    /* ── Carousel arrows ────────────────────────────────── */
    .carousel-btn {
        width : 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {

    .hero__content {
        min-height: 85vh;
        padding   : var(--space-xl) var(--space-sm);
    }

    .hero__visual {
        height    : 260px;
        min-height: 260px;
    }

    .stats-bar__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Reviews Carousel ─────────────────────────────────────── */
.carousel-wrap {
    display    : flex;
    align-items: center;
    gap        : var(--space-md);
}

.carousel {
    flex         : 1;
    overflow     : hidden;
    border-radius: var(--radius-md);
}

.carousel-track {
    display    : flex;
    transition : transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width : 100%;
    padding   : 0 var(--space-xs);
    box-sizing: border-box;
}

@media (min-width: 900px) {
    .carousel-slide {
        min-width: calc(100% / 3);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .carousel-slide {
        min-width: 50%;
    }
}

/* Review Card */
.review-card {
    background   : var(--white);
    border       : 1px solid var(--border);
    border-radius: var(--radius-md);
    padding      : var(--space-xl);
    height       : 100%;
    transition   : var(--transition);
    box-shadow   : var(--shadow-sm);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform : translateY(-3px);
}

.review-card__quote {
    font-family  : var(--font-display);
    font-size    : 3.5rem;
    color        : var(--gold);
    line-height  : 1;
    margin-bottom: var(--space-sm);
    opacity      : 0.55;
}

.review-card__text {
    font-size    : var(--text-base);
    color        : var(--text-body);
    line-height  : 1.8;
    margin-bottom: var(--space-lg);
    font-style   : italic;
}

.review-card__author {
    display    : flex;
    align-items: center;
    gap        : var(--space-sm);
    border-top : 1px solid var(--border);
    padding-top: var(--space-md);
}

.review-card__avatar {
    width          : 44px;
    height         : 44px;
    border-radius  : 50%;
    overflow       : hidden;
    background     : var(--green-dark);
    flex-shrink    : 0;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.review-card__avatar img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
}

.review-card__avatar span {
    color      : var(--gold);
    font-weight: 700;
    font-size  : var(--text-md);
}

.review-card__author strong {
    display    : block;
    font-size  : var(--text-sm);
    color      : var(--text-dark);
    font-weight: 700;
}

.review-card__author span {
    font-size: var(--text-xs);
    color    : var(--text-muted);
}

/* Arrows — fine, minimal design */
.carousel-btn {
    flex-shrink    : 0;
    width          : 38px;
    height         : 38px;
    border-radius  : 50%;
    border         : 1.5px solid var(--border);
    background     : var(--white);
    color          : var(--text-muted);
    display        : flex;
    align-items    : center;
    justify-content: center;
    cursor         : pointer;
    transition     : var(--transition);
    box-shadow     : var(--shadow-sm);
    align-self     : center;
}

.carousel-btn:hover {
    border-color: var(--green-dark);
    color       : var(--green-dark);
    box-shadow  : var(--shadow-md);
}

/* Dots */
.carousel-dots {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 6px;
    margin-top     : var(--space-lg);
}

.carousel-dot {
    width        : 7px;
    height       : 7px;
    border-radius: 50%;
    background   : var(--border);
    cursor       : pointer;
    transition   : var(--transition);
    border       : none;
    padding      : 0;
}

.carousel-dot.active {
    background   : var(--green-dark);
    width        : 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width : 32px;
        height: 32px;
    }
}

/* ── Video Section ────────────────────────────────────────── */
.video-section {
    display              : grid;
    grid-template-columns: 1fr 1.4fr;
    gap                  : var(--space-3xl);
    align-items          : center;
}

.video-section__player {
    position     : relative;
    border-radius: var(--radius-md);
    overflow     : hidden;
    aspect-ratio : 16/9;
    background   : var(--text-dark);
    box-shadow   : var(--shadow-lg);
}

.video-section__player iframe {
    position: absolute;
    inset   : 0;
    width   : 100%;
    height  : 100%;
    border  : none;
}

.video-placeholder {
    width          : 100%;
    height         : 100%;
    position       : absolute;
    inset          : 0;
    background     : linear-gradient(135deg, #0f3d1a, var(--green-dark));
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.video-placeholder__inner {
    text-align: center;
    color     : rgba(255, 255, 255, 0.7);
}

.video-play-btn {
    width          : 72px;
    height         : 72px;
    border-radius  : 50%;
    background     : rgba(201, 168, 76, 0.9);
    color          : var(--text-dark);
    display        : flex;
    align-items    : center;
    justify-content: center;
    font-size      : 1.5rem;
    margin         : 0 auto var(--space-md);
    padding-left   : 4px;
}

.video-placeholder__inner p {
    font-weight  : 600;
    color        : var(--white);
    margin-bottom: 0.25rem;
}

.video-placeholder__inner small {
    font-size: var(--text-xs);
    opacity  : 0.6;
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .video-section {
        grid-template-columns: 1fr;
    }
}