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

/* --------------------------------------------------------------------------
   Hero Asymmetrical & Floating Frames
   -------------------------------------------------------------------------- */
.aroma-hero {
    min-height: 90vh;
    padding-top: 120px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aroma-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(155, 126, 164, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(143, 169, 140, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.aroma-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    z-index: 2;
}

.aroma-hero-content {
    color: var(--cream);
    text-align: left;
}

.aroma-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--cream);
}

.aroma-hero-content em {
    display: block;
    color: var(--gold-bright);
    font-style: italic;
    font-size: 0.8em;
}

.aroma-hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(250, 248, 243, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Floating Visuals */
.aroma-hero-visual {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-frame {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.8s var(--ease-out);
}

.floating-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.primary-frame {
    width: 65%;
    height: 80%;
    left: 0;
    top: 5%;
    z-index: 2;
}

.secondary-frame {
    width: 55%;
    height: 65%;
    right: 0;
    bottom: 5%;
    z-index: 1;
    border-color: rgba(201, 169, 110, 0.2);
}

.aroma-hero-visual:hover .primary-frame {
    transform: translateY(-15px) scale(1.02);
}

.aroma-hero-visual:hover .secondary-frame {
    transform: translateY(15px) translateX(10px) scale(0.98);
}

/* --------------------------------------------------------------------------
   Introduction & Histoire
   -------------------------------------------------------------------------- */
.intro-section {
    padding: 8rem 8%;
    background: var(--cream);
    text-align: center;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
}

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

.history-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(13, 26, 17, 0.1);
}

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

/* --------------------------------------------------------------------------
   Extraits (Cartes)
   -------------------------------------------------------------------------- */
.extracts-section {
    padding: 8rem 8%;
    background: var(--sage-light);
}

.extracts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
}

.extract-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--t-smooth);
}

.extract-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.extract-card h3 {
    color: var(--forest);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

/* --------------------------------------------------------------------------
   Hydrolats
   -------------------------------------------------------------------------- */
.hydrolats-section {
    padding: 8rem 8%;
    background: var(--sage-light);
    color: var(--text-dark);
    border-top: 1px solid rgba(155, 126, 164, 0.12);
    border-bottom: 1px solid rgba(155, 126, 164, 0.12);
}

.hydrolats-section .section-header h2 {
    color: var(--forest);
}

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

.benefit-card {
    background: var(--white);
    border: 1px solid rgba(143, 169, 140, 0.2);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(13, 26, 17, 0.02);
}

.benefit-card h4 {
    color: var(--mauve-deep);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(155, 126, 164, 0.2);
    padding-bottom: 0.5rem;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card ul li {
    margin-bottom: 1.5rem;
}

.benefit-card ul li strong {
    display: block;
    color: var(--forest);
    margin-bottom: 0.3rem;
}

.benefit-card ul li p {
    color: var(--text-mid);
    font-size: 0.95rem;
}
