/* ═══════════════════════════════════════════
   VIP ACADEMY — Homepage Premium Wellness
   Sérénité · Espace · Atmosphère
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --gold: #C09144;
    --gold-light: #E6B860;
    --burgundy: #924D40;
    --terra: #D5A58E;
    --peach: #F6E3D6;
    --beige: #E6D7B2;
    --cream: #FFFDF4;
    --text: #5C4A3D;
    --text-light: #8B7B6E;
    --shadow-warm: rgba(146, 77, 64, 0.08);
    --radius: 24px;
    --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ── SECTION TAG avec ornements ── */
.hp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Ornements dorés autour du tag */
.hp-section-tag::before,
.hp-section-tag::after {
    content: '✦';
    font-size: 0.6rem;
    opacity: 0.5;
}

.hp-section-tag--light {
    color: rgba(255,255,255,0.7);
}

.hp-section-tag--light::before,
.hp-section-tag--light::after {
    color: rgba(255,255,255,0.4);
}

/* ── SÉPARATEUR DÉCORATIF supprimé ── */

/* ── BUTTONS ── */
.hp-btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease);
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.hp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.hp-btn:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(146, 77, 64, 0.2);
}

.hp-btn:hover::after {
    left: 150%;
}

.hp-btn--outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.hp-btn--outline:hover {
    background: var(--burgundy);
    color: white;
}

.hp-cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(146, 77, 64, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse at 70% 60%, rgba(192, 145, 68, 0.25) 0%, transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hp-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hp-hero__geo {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.1;
}

.hp-hero__geo--left {
    top: 15%;
    left: -5%;
    width: 200px;
    opacity: 0.06;
}

.hp-hero__geo--right {
    bottom: 10%;
    right: -5%;
    width: 200px;
    opacity: 0.06;
}

.hp-hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hp-hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
}

.hp-hero__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-top: 0.8rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.hp-hero__line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.hp-hero__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: line-shimmer 3s ease-in-out infinite;
}

@keyframes line-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hp-hero__sub {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    font-style: italic;
}

.hp-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.hp-hero__scroll:hover {
    color: white;
}

.hp-hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════
   MANIFESTE
   ═══════════════════════════════════════════ */
.hp-manifeste {
    padding: 5rem 2rem 3rem;
    background: var(--cream);
}

.hp-manifeste__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hp-manifeste__title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.hp-manifeste__title em {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-accent);
    position: relative;
}

.hp-manifeste__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.hp-manifeste__sep {
    display: none;
}

.hp-manifeste__layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    text-align: left;
    margin-top: 3rem;
}

.hp-manifeste__photo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 120px;
    align-self: start;
}

.hp-manifeste__photo img {
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid rgba(192, 145, 68, 0.2);
}

.hp-manifeste__text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
}

/* ═══════════════════════════════════════════
   ATMOSPHÈRE (images plein écran)
   ═══════════════════════════════════════════ */
.hp-atmosphere {
    position: relative;
    height: 55vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-atmosphere--alt {
    height: 40vh;
}

.hp-atmosphere__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hp-atmosphere__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(146,77,64,0.35) 0%, rgba(192,145,68,0.2) 100%);
}

.hp-atmosphere__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hp-atmosphere__content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hp-atmosphere__content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 1rem auto 0;
}

.hp-atmosphere__content p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
}

/* ═══════════════════════════════════════════
   TROIS PILIERS
   ═══════════════════════════════════════════ */
.hp-piliers {
    padding: 4rem 2rem;
    background: var(--peach);
}

.hp-piliers__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hp-piliers__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1.3;
    margin-bottom: 4rem;
}

.hp-piliers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hp-pilier-card {
    background: white;
    border: 1px solid rgba(192, 145, 68, 0.1);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.hp-pilier-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(192, 145, 68, 0.12),
        0 0 0 1px rgba(192, 145, 68, 0.15);
    border-color: rgba(192, 145, 68, 0.3);
}

.hp-pilier-card:hover .hp-pilier-card__title {
    text-shadow: 0 0 30px rgba(192, 145, 68, 0.3);
}

.hp-pilier-card__geo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    opacity: 0.04;
    pointer-events: none;
}

.hp-pilier-card__geo.rotate-180 {
    transform: translate(-50%, -50%) rotate(180deg);
}

.hp-pilier-card__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hp-pilier-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    line-height: 2.4;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   FONDATRICES
   ═══════════════════════════════════════════ */
.hp-fondatrices {
    padding: 4rem 2rem;
    background: var(--peach);
}

.hp-fondatrices__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hp-fondatrices__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 4rem;
}

.hp-fondatrices__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 1rem;
}

.hp-fondatrice {
    text-align: center;
}

.hp-fondatrice__img {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(192, 145, 68, 0.25);
    transition: all 0.5s var(--ease);
    position: relative;
    box-shadow: 0 0 0 8px rgba(192, 145, 68, 0.06), 0 0 0 16px rgba(192, 145, 68, 0.03);
}

.hp-fondatrice__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s var(--ease), filter 0.6s ease;
    filter: saturate(0.85);
}

.hp-fondatrice:hover .hp-fondatrice__img {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(192, 145, 68, 0.2);
}

.hp-fondatrice:hover .hp-fondatrice__img img {
    transform: scale(1.05);
    filter: saturate(1);
}

.hp-fondatrice h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 0.3rem;
}

.hp-fondatrice p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ═══════════════════════════════════════════
   OFFRES
   ═══════════════════════════════════════════ */
.hp-offres {
    padding: 4rem 2rem;
    background: var(--cream);
}

.hp-offres__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hp-offres__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 4rem;
}

.hp-offres__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hp-offre-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%);
    border: 2px solid rgba(192, 145, 68, 0.2);
    border-radius: var(--radius);
    padding: 3.5rem 2.5rem;
    position: relative;
    transition: all 0.3s var(--ease);
    box-shadow:
        0 15px 40px rgba(192, 145, 68, 0.12),
        0 0 0 1px rgba(192, 145, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hp-offre-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(192, 145, 68, 0.2),
        0 0 0 1px rgba(192, 145, 68, 0.15);
    border-color: var(--gold);
}

.hp-offre-card--featured {
    border-color: var(--gold);
    transform: scale(1.04);
}

.hp-offre-card--featured:hover {
    box-shadow:
        0 30px 70px rgba(192, 145, 68, 0.25),
        0 0 0 1px rgba(192, 145, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1.04) translateY(-6px);
    border-color: var(--gold-light);
}

.hp-offre-card--featured h3 {
    color: var(--burgundy);
    font-size: 1.8rem;
}

.hp-offre-card--featured p {
    color: var(--text);
}

.hp-offre-card--featured .hp-offre-card__cta {
    color: var(--burgundy);
    font-weight: 700;
}

.hp-offre-card__icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.hp-offre-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hp-offre-card--featured .hp-offre-card__icon {
    opacity: 0.5;
    width: 140px;
    height: 140px;
}

.hp-offre-card__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(192, 145, 68, 0.12) 0%, rgba(230, 184, 96, 0.15) 100%);
    border: 1px solid rgba(192, 145, 68, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.hp-offre-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.hp-offre-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    flex: 1;
}

.hp-offre-card__cta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.hp-offre-card:hover .hp-offre-card__cta {
    letter-spacing: 0.04em;
    gap: 0.6em;
    color: var(--burgundy);
}

/* ═══════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════ */
.hp-temoignages {
    padding: 4rem 2rem;
    background: var(--cream);
}

.hp-temoignages__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hp-temoignages__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 3rem;
}

.hp-temoignages__carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none;
}

.hp-temoignages__carousel::-webkit-scrollbar {
    display: none;
}

.hp-temoignage-card {
    background: white;
    border: 1px solid rgba(192, 145, 68, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    min-width: 330px;
    max-width: 370px;
    flex-shrink: 0;
    text-align: left;
    position: relative;
    transition: all 0.25s var(--ease);
    margin: 0;
    quotes: none;
}

.hp-temoignage-card::before {
    content: '\201C';
    position: absolute;
    top: 0.8rem;
    left: 1.5rem;
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

.hp-temoignage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hp-temoignage-card:hover::after {
    opacity: 1;
}

.hp-temoignage-card cite::before {
    content: '— ';
    opacity: 0.5;
}

.hp-temoignage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--shadow-warm);
}

.hp-temoignage-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hp-temoignage-card cite {
    display: block;
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 600;
}

.hp-temoignages__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    opacity: 0.25;
    transition: all 0.3s;
}

.testimonial-dot:first-child {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   PILIERS — éléments additionnels
   ═══════════════════════════════════════════ */
.hp-piliers__subtitle {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.hp-piliers__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 1rem;
    text-align: center;
}

.hp-piliers__cards-intro {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--burgundy);
    text-align: center;
    margin: 3rem 0 2rem;
}

.hp-piliers__quote {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    padding: 2rem;
    border-left: 3px solid var(--gold);
}

.hp-piliers__quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   OFFRES — sous-titre
   ═══════════════════════════════════════════ */
.hp-offres__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ═══════════════════════════════════════════
   FONDATRICES — description
   ═══════════════════════════════════════════ */
.hp-fondatrices__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ═══════════════════════════════════════════
   VIP MAG
   ═══════════════════════════════════════════ */
.hp-vipmag {
    padding: 4rem 2rem;
    background: var(--peach);
    text-align: center;
}

.hp-vipmag__inner {
    max-width: 700px;
    margin: 0 auto;
}

.hp-vipmag__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hp-vipmag__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════ */
.hp-newsletter {
    padding: 4rem 2rem;
    background: linear-gradient(160deg, #8B6B55 0%, #A67C52 100%);
    text-align: center;
}

.hp-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
}

.hp-newsletter__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hp-newsletter__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hp-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 420px;
    margin: 0 auto;
}

.hp-newsletter__form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

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

.hp-newsletter__form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.hp-newsletter__form button {
    padding: 1rem 2rem;
    background: white;
    color: var(--gold);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hp-newsletter__form button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192,145,68,0.15), transparent);
    transition: left 0.5s ease;
}

.hp-newsletter__form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    color: var(--burgundy);
}

.hp-newsletter__form button:hover::after {
    left: 150%;
}

/* ═══════════════════════════════════════════
   BANDEAU SÉPARATEUR
   ═══════════════════════════════════════════ */
.hp-bandeau {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--color-bg-main);
}

.hp-bandeau::before,
.hp-bandeau::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hp-bandeau::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hp-bandeau-icon {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

.hp-newsletter__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
}

.hp-newsletter__legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
[data-animate="fade"] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

[data-animate="fade"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   TYPEWRITER — Or élégant
   ═══════════════════════════════════════════ */
.hero-typewriter-wrapper {
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0.5rem auto;
    padding: 1rem 0;
    font-family: var(--font-heading);
    text-align: center;
    position: relative;
    color: #FFFFFF;
    min-height: 1.3em;
    line-height: 1.2;
}

.typewriter-text {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    text-shadow:
        0 0 2px rgba(255, 255, 255, 0.6),
        0 0 8px rgba(212, 168, 83, 0.5),
        0 0 20px rgba(192, 145, 68, 0.25);
    will-change: contents;
}

/* Reflet lumineux qui glisse sur le texte */
.typewriter-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 240, 200, 0.8) 50%,
        transparent 70%,
        transparent 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-sweep 5s ease-in-out infinite;
    will-change: background-position;
    pointer-events: none;
}

@keyframes shine-sweep {
    0%   { background-position: 250% center; }
    100% { background-position: -250% center; }
}

.typewriter-text::after {
    content: '|';
    position: absolute;
    margin-left: 0.1em;
    color: #FFFFFF;
    animation: blink 0.8s step-end infinite;
}

.typewriter-text.paused::after { opacity: 0; }

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hp-hero__eyebrow { font-size: 1.1rem; }
    .hp-hero__title { font-size: 1.8rem; }
    .hero-typewriter-wrapper { font-size: 3.5rem; }
    .hp-manifeste__title { font-size: 2.2rem; }
    .hp-piliers__title,
    .hp-fondatrices__title,
    .hp-offres__title,
    .hp-temoignages__title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .hp-hero { min-height: 80vh; }
    .hp-hero__bg { background-attachment: scroll; }
    .hp-atmosphere__bg { background-attachment: scroll; }
    .hp-hero__eyebrow { font-size: 1rem; }
    .hp-hero__title { font-size: 1.5rem; }
    .hero-typewriter-wrapper { font-size: 2.2rem; }

    .hp-offre-card--featured { transform: scale(1); }
    .hp-offre-card--featured:hover { transform: translateY(-6px); }

    .hp-manifeste__layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-manifeste__photo {
        flex-direction: row;
        justify-content: center;
    }

    .hp-manifeste__photo img {
        width: 140px;
        height: 140px;
    }

    .hp-manifeste,
    .hp-piliers,
    .hp-fondatrices,
    .hp-offres,
    .hp-temoignages { padding: 5rem 1.5rem; }

    .hp-manifeste__title { font-size: 1.8rem; }
    .hp-piliers__title,
    .hp-fondatrices__title,
    .hp-offres__title,
    .hp-temoignages__title { font-size: 2rem; }

    .hp-piliers__grid,
    .hp-offres__grid,
    .hp-fondatrices__grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .hp-atmosphere { height: 40vh; }
    .hp-atmosphere--alt { height: 30vh; }
    .hp-atmosphere__content h2 { font-size: 2rem; }

    .hp-newsletter__form { flex-direction: column; }
    .hp-newsletter__title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hp-hero__eyebrow { font-size: 0.85rem; }
    .hp-hero__title { font-size: 1.3rem; }
    .hero-typewriter-wrapper { font-size: 1.6rem; letter-spacing: 0.03em; }

    .hp-manifeste__title { font-size: 1.5rem; }
    .hp-piliers__title,
    .hp-fondatrices__title,
    .hp-offres__title,
    .hp-temoignages__title { font-size: 1.6rem; }

    .hp-fondatrice__img { width: 160px; height: 160px; }

    .hp-manifeste,
    .hp-piliers,
    .hp-fondatrices,
    .hp-offres,
    .hp-temoignages { padding: 4rem 1rem; }
}
