/* ==========================================================================
   LES VERTUS DES SIMPLES — GEMMOTHÉRAPIE
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Split Screen
   -------------------------------------------------------------------------- */
.gemmo-hero {
    min-height: 85vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: var(--sage-light);
    overflow: hidden;
}

.gemmo-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 0 5%;
}

.gemmo-hero-text {
    color: var(--text-dark);
    z-index: 2;
}

.gemmo-hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.gemmo-hero-text em {
    display: block;
    color: var(--mauve-deep);
    font-style: italic;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.gemmo-hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.gemmo-hero-image {
    position: relative;
    height: 70vh;
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
}

.gemmo-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .gemmo-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .gemmo-hero-text p {
        margin: 0 auto 2.5rem;
    }
    
    .gemmo-hero-image {
        height: 50vh;
        border-radius: 150px 150px 0 0;
    }
}

/* --------------------------------------------------------------------------
   Introduction (L'Essence des Bourgeons)
   -------------------------------------------------------------------------- */
.intro-gemmo {
    padding: 8rem 8%;
    background: var(--cream);
}

.intro-gemmo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-gemmo-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.intro-gemmo-highlight {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.intro-gemmo-highlight p {
    font-weight: 500;
    color: var(--forest);
    margin: 0;
}

.intro-gemmo-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(13, 26, 17, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

@media (max-width: 900px) {
    .intro-gemmo-grid {
        grid-template-columns: 1fr;
    }
    .intro-gemmo-image {
        order: -1;
    }
}

/* --------------------------------------------------------------------------
   Processus de Fabrication (Timeline)
   -------------------------------------------------------------------------- */
.process-section {
    padding: 8rem 8%;
    background: var(--sage-light);
}

.process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: rgba(201, 169, 110, 0.3);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 20px;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    box-shadow: 0 0 0 8px var(--sage-light);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.step-content h3 {
    color: var(--forest);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-mid);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Bienfaits & Pour Qui (Grid)
   -------------------------------------------------------------------------- */
.gemmo-benefits {
    padding: 8rem 8%;
    background: var(--white);
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.gemmo-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(13, 26, 17, 0.05);
    border-radius: 8px;
    transition: var(--t-smooth);
}

.gemmo-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(201, 169, 110, 0.5);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.gemmo-card h3 {
    color: var(--forest);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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