/* ----- Accent terracotta dans le titre ----- */
.hero-title-accent {
    color: var(--wp--preset--color--terracotta);
}


/* ============================================
   HERO
   ============================================ */

/* ----- Portrait ----- */
.coiffure-hero-portrait {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 500px;
}

/* Portrait hero — page coiffure */
.coiffure-hero-portrait img {
    border-radius: 220px 220px 120px 120px;
    box-shadow: 0 40px 80px rgba(93, 78, 71, 0.15);
    height: 600px;           /* ← à supprimer */
    width: 100%;
    object-fit: cover;
    object-position: 10%;
    display: block;
}

/* Cercle bas-gauche */
.coiffure-hero-portrait::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 130px;
    height: 130px;
    border: 1px solid var(--wp--preset--color--rose-poudre);
    border-radius: 50%;
    opacity: 0.55;
    z-index: 5;
    pointer-events: none;
}



/* ============================================
   SECTION INFOS PRATIQUES
   ============================================ */

.infos-pratiques {
    background-color: var(--wp--preset--color--brun-profond);
    background-image:
         radial-gradient(circle, rgba(212, 168, 154, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 8rem) !important;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Ligne verticale */
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--wp--preset--color--terracotta),
        transparent
    );
    opacity: 0.4;
}

.timeline-step {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
    position: relative;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

/* Cercle numéroté */
.timeline-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196, 123, 107, 0.2);
    border: 1px solid rgba(196, 123, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--wp--preset--color--terracotta);
}

.timeline-content {
    padding-top: 0.6rem;
}

/* Badge durée */
.timeline-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wp--preset--color--terracotta);
    background: rgba(196, 123, 107, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-family: var(--wp--preset--font-family--display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--wp--preset--color--cream);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: rgba(253, 248, 243, 0.75);
    line-height: 1.8;
}



/* ============
   RESPONSIVE 
   ============*/

/* ----- Mobile standard (369 – 768px) ----- */
@media (max-width: 768px) {
    .coupe-energetique img,
    .coupe-fortifiante img {
        width: 70% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
}

