/* ============================================
   GEE'S NATURALS — HOME PAGE STYLES
   ============================================ */

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-content {
    padding: 4rem var(--gutter) 4rem calc(var(--gutter) + max(0px, (100vw - var(--max-width)) / 2));
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-green);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--color-green);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-green);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.hero-visual {
    height: 100%;
    min-height: 100vh;
    background: var(--color-green-light);
    position: relative;
    overflow: hidden;
}

.hero-visual-inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.hero-img-block {
    overflow: hidden;
    background: var(--color-bg-alt);
}

.hero-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-img-block:hover img {
    transform: scale(1.05);
}

.hero-img-block:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.hero-img-block:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.hero-img-block:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.8s 0.6s ease both;
}

.hero-badge-icon {
    font-size: 1.5rem;
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

.hero-badge-sub {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* ---- MARQUEE ---- */
.marquee-section {
    background: var(--color-green);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---- FEATURES ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---- FEATURED PRODUCTS ---- */
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

/* ---- STORY SECTION ---- */
.story-section {
    background: var(--color-bg-alt);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-images {
    position: relative;
    height: 500px;
}

.story-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--color-bg-alt);
}

.story-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem 0;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.story-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.story-value-icon {
    width: 40px;
    height: 40px;
    background: var(--color-green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.story-value-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.story-value-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ---- TESTIMONIALS ---- */
.testimonials-marquee-container {
    padding: 1rem 0 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: testimonials-scroll 80s linear infinite;
    padding: 1rem;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--color-amber);
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-green);
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
    background: var(--color-green);
    color: white;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 0.875rem 1.75rem;
    background: white;
    color: var(--color-green);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--color-amber-light);
    transform: translateY(-2px);
}

/* ---- RESPONSIVE HOME ---- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: calc(var(--nav-height) + 2rem) var(--gutter) 2rem;
    }

    .hero-visual {
        min-height: 50vw;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .story-images {
        height: 300px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

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