/* ============================================================
   REVERENTIA - CSS Principal
   Theme sombre luxe noir/or pour parfumerie haut de gamme
   ============================================================ */

/* ===== FONT LOCALE : Vladimir (manuscrite) ===== */
@font-face {
    font-family: 'Vladimir';
    src: url('../fonts/vladimir.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ===== VARIABLES CSS ===== */
:root {
    /* Backgrounds (du plus sombre au plus clair) */
    --rev-black-deep:     #0A0A0A;
    --rev-black:          #111111;
    --rev-black-soft:     #1A1A1A;
    --rev-black-elevated: #222222;
    --rev-black-card:     #1E1E1E;

    /* Or */
    --rev-gold:           #eac880;
    --rev-gold-bright:    #f0d699;
    --rev-gold-dark:      #c4a85e;
    --rev-gold-muted:     rgba(234, 200, 128, 0.3);
    --rev-gold-glow:      rgba(234, 200, 128, 0.15);

    /* Texte — tout en or, cohérent avec le logo */
    --rev-text-primary:   #eac880;
    --rev-text-secondary: #c4a85e;
    --rev-text-muted:     #9a8a5e;

    /* Collections */
    --rev-bleu-saphir:    #1A3A6B;
    --rev-rouge-rubis:    #8B1A1A;
    --rev-vert-emeraude:  #1A5B3A;

    /* Typographie — Charte graphique REVERENTIA */
    --rev-font-heading:   'Bodoni Moda', 'Georgia', serif;
    --rev-font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --rev-font-handwriting: 'Vladimir', cursive;

    /* Espacements */
    --rev-space-xs:       0.5rem;
    --rev-space-sm:       1rem;
    --rev-space-md:       1.5rem;
    --rev-space-lg:       2rem;
    --rev-space-xl:       3rem;
    --rev-space-2xl:      5rem;
    --rev-space-3xl:      7.5rem;

    /* Transitions */
    --rev-transition:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --rev-transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Bordures */
    --rev-border:         1px solid rgba(234, 200, 128, 0.2);
    --rev-border-strong:  1px solid var(--rev-gold);

    /* Ombres */
    --rev-shadow-card:    0 4px 24px rgba(0, 0, 0, 0.5);
    --rev-shadow-gold:    0 0 30px rgba(234, 200, 128, 0.1);
}


/* ===== RESET & BASE ===== */
body.reverentia-body {
    background-color: var(--rev-black-deep);
    color: var(--rev-text-primary);
    font-family: var(--rev-font-body);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: var(--rev-gold);
    color: var(--rev-black-deep);
}

a {
    color: var(--rev-gold);
    text-decoration: none;
    transition: color var(--rev-transition);
}

a:hover {
    color: var(--rev-gold-bright);
}

img {
    max-width: 100%;
    height: auto;
}


/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--rev-font-heading);
    color: var(--rev-text-primary);
    font-weight: 400;
    font-variation-settings: 'opsz' 9; /* Bodoni Moda 9pt (taille optique brochure) */
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Grands titres en Bodoni Moda SemiBold */
h1, h2,
.h1, .h2 {
    font-weight: 600;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4, .h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.rev-text-gold {
    color: var(--rev-gold);
}

.rev-text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--rev-font-body);
    font-weight: 500;
    font-size: 0.75rem;
}

.rev-subtitle {
    font-family: var(--rev-font-heading);
    font-style: italic;
    color: var(--rev-gold);
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.1em;
}


/* ===== HEADER BAR ===== */
.rev-header__bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: transparent;
    transition: background-color var(--rev-transition),
                padding var(--rev-transition),
                box-shadow var(--rev-transition);
    border-bottom: 1px solid transparent;
    overflow: visible;
}

.rev-header__bar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-bottom-color: rgba(234, 200, 128, 0.5);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Left zone: burger + logo */
.rev-header__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.rev-header__logo-link {
    display: flex;
    align-items: flex-start;
}

.rev-logo {
    height: 55px;
    width: auto;
    transition: height var(--rev-transition);
}

.rev-header__bar.scrolled .rev-logo {
    height: 45px;
}

/* Burger button: 3 gold lines, no border, no box */
.rev-burger {
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

.rev-burger__line {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--rev-gold);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animate to X when menu is open */
.rev-burger.active .rev-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}
.rev-burger.active .rev-burger__line:nth-child(2) {
    opacity: 0;
}
.rev-burger.active .rev-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Center zone: brand name */
.rev-header__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.rev-header__brand {
    font-family: var(--rev-font-heading);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rev-gold);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--rev-transition);
    pointer-events: auto;
}

.rev-header__brand:hover {
    color: var(--rev-gold-bright);
}

/* Right zone: lang selector + search */
.rev-header__right {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 0.75rem;
}

/* Search button */
.rev-search-btn {
    background: none;
    border: none;
    color: var(--rev-gold);
    font-size: 0.9rem;
    padding: 0.3rem;
    cursor: pointer;
    transition: color var(--rev-transition);
    -webkit-tap-highlight-color: transparent;
}

.rev-search-btn:hover {
    color: var(--rev-gold-bright);
}

/* Language selector */
.rev-lang-selector {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(234, 200, 128, 0.3);
    color: var(--rev-text-primary);
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem;
    transition: border-color var(--rev-transition), color var(--rev-transition);
}

.rev-lang-selector:hover,
.rev-lang-selector:focus,
.rev-lang-selector.show {
    background: transparent;
    border-color: var(--rev-gold);
    color: var(--rev-gold);
    box-shadow: none;
}

.rev-lang-dropdown {
    background-color: rgba(10, 10, 10, 0.97);
    border: 1px solid rgba(234, 200, 128, 0.2);
    border-radius: 0;
    padding: 0.25rem 0;
    min-width: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rev-lang-dropdown .dropdown-item {
    color: var(--rev-text-secondary);
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    transition: color var(--rev-transition), background-color var(--rev-transition);
}

.rev-lang-dropdown .dropdown-item:hover,
.rev-lang-dropdown .dropdown-item:focus {
    background-color: rgba(234, 200, 128, 0.1);
    color: var(--rev-gold);
}

.rev-lang-dropdown .dropdown-item.active,
.rev-lang-dropdown .dropdown-item:active {
    background-color: rgba(234, 200, 128, 0.15);
    color: var(--rev-gold);
}


/* ===== SITE TRANSFORMANT — E-commerce caché par défaut ===== */
/* Les éléments .rev-ecom-only sont cachés tant que body n'a pas .ecom-active */
.rev-ecom-only { display: none !important; }
body.ecom-active .rev-ecom-only { display: flex !important; }
body.ecom-active li.rev-ecom-only { display: list-item !important; }

/* V1 — STORE DÉSACTIVÉ : filet de sécurité. Quand body.shop-disabled, on masque
   toute UI marchande même si un panier résiduel tentait de la révéler.
   Réactivable : retirer SHOP_ENABLED=false (ou passer à true) supprime la classe. */
body.shop-disabled .rev-ecom-only,
body.shop-disabled [data-drawer],
body.shop-disabled .rev-cart-btn { display: none !important; }

/* Panier header */
.rev-cart-btn {
    position: relative;
    color: var(--rev-gold);
    font-size: 1rem;
    padding: 0.3rem;
    transition: color var(--rev-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.rev-cart-btn:hover { color: var(--rev-gold-bright); }
.rev-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--rev-gold);
    color: var(--rev-black-deep);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== DRAWER ACHETER ===== */
.rev-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.rev-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.rev-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 90vw);
    background: var(--rev-black);
    border-left: 1px solid rgba(234,200,128,0.1);
    z-index: 1501;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.rev-drawer-overlay.open .rev-drawer {
    transform: translateX(0);
}
.rev-drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--rev-text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--rev-transition);
}
.rev-drawer__close:hover { color: var(--rev-gold); }

.rev-drawer__product {
    display: flex;
    gap: 1.25rem;
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: var(--rev-border);
}
.rev-drawer__product-img {
    width: 100px;
    flex-shrink: 0;
}
.rev-drawer__product-img img {
    width: 100%;
    height: auto;
}

.rev-format-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.rev-format-btn {
    background: var(--rev-black-soft);
    border: var(--rev-border);
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--rev-transition);
    color: var(--rev-gold);
}
.rev-format-btn:hover, .rev-format-btn.selected {
    border-color: var(--rev-gold);
    background: rgba(234,200,128,0.06);
}
.rev-format-btn .fb-size {
    font-family: var(--rev-font-heading);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}
.rev-format-btn .fb-type {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rev-text-secondary);
    display: block;
}

.rev-drawer__price {
    font-family: var(--rev-font-heading);
    font-size: 2rem;
    text-align: center;
    padding: 1rem 0;
    letter-spacing: 0.05em;
}

.rev-gift-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(234,200,128,0.06);
    font-size: 0.85rem;
    color: var(--rev-text-secondary);
    cursor: pointer;
}
.rev-gift-option input { accent-color: var(--rev-gold); width: 16px; height: 16px; }

.rev-drawer__note {
    font-size: 0.75rem;
    color: var(--rev-text-secondary);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}
.rev-drawer__cta { margin-top: auto; padding-top: 1.5rem; }

/* Bouton plein or */
.rev-btn-gold {
    display: inline-block;
    background: var(--rev-gold);
    color: var(--rev-black-deep);
    padding: 0.875rem 2.5rem;
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--rev-transition);
    text-decoration: none;
    text-align: center;
}
.rev-btn-gold:hover {
    background: var(--rev-gold-bright);
    color: var(--rev-black-deep);
}

/* ===== SECTIONS ===== */
.rev-section {
    padding: var(--rev-space-3xl) 0;
}

.rev-section--dark {
    background-color: var(--rev-black-deep);
}

.rev-section--soft {
    background-color: var(--rev-black-soft);
}

.rev-section--elevated {
    background-color: var(--rev-black);
}

.rev-section-header {
    text-align: center;
    margin-bottom: var(--rev-space-2xl);
}

.rev-section-header h2 {
    margin-bottom: var(--rev-space-sm);
}


/* ===== PAGE HEADER (pages internes) ===== */
.rev-page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--rev-black);
    background-image: url('../images/backgrounds/bg-gold-painting.jpg');
    background-image: image-set(
        url('../images/backgrounds/bg-gold-painting.avif') type('image/avif'),
        url('../images/backgrounds/bg-gold-painting.webp') type('image/webp'),
        url('../images/backgrounds/bg-gold-painting.jpg')  type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.rev-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

.rev-page-header__content {
    position: relative;
    z-index: 2;
    padding: var(--rev-space-3xl) var(--rev-space-md);
}

.rev-page-header__content h1 {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--rev-space-sm);
}


/* ===== BOUTONS ===== */
.rev-btn-gold {
    display: inline-block;
    font-family: var(--rev-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rev-gold);
    border: 1px solid var(--rev-gold);
    background: transparent;
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    transition: all var(--rev-transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.rev-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--rev-gold);
    transition: left var(--rev-transition);
    z-index: -1;
}

.rev-btn-gold:hover {
    color: var(--rev-black-deep);
    border-color: var(--rev-gold);
}

.rev-btn-gold:hover::before {
    left: 0;
}

.rev-btn-gold-filled {
    display: inline-block;
    font-family: var(--rev-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--rev-gold);
    color: var(--rev-black-deep);
    border: 1px solid var(--rev-gold);
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    transition: all var(--rev-transition);
    cursor: pointer;
}

.rev-btn-gold-filled:hover {
    background: var(--rev-gold-bright);
    color: var(--rev-black-deep);
}


/* ===== CARTES PRODUIT ===== */
.rev-product-card {
    background-color: var(--rev-black-card);
    border: var(--rev-border);
    border-radius: 0;
    overflow: hidden;
    transition: transform var(--rev-transition),
                box-shadow var(--rev-transition),
                border-color var(--rev-transition);
}

.rev-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rev-shadow-gold);
    border-color: var(--rev-gold-muted);
}

.rev-product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--rev-black);
}

.rev-product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rev-transition-slow);
}

.rev-product-card:hover .rev-product-img-wrapper img {
    transform: scale(1.05);
}

.rev-product-card .card-body {
    padding: var(--rev-space-lg);
    background-color: var(--rev-black-card);
}

.rev-collection-badge {
    display: inline-block;
    font-family: var(--rev-font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rev-gold);
    border: 1px solid var(--rev-gold-muted);
    padding: 0.25rem 0.75rem;
    margin-bottom: var(--rev-space-sm);
}

.rev-product-name {
    font-family: var(--rev-font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--rev-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.rev-product-tagline {
    font-family: var(--rev-font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--rev-text-secondary);
    margin-bottom: var(--rev-space-md);
}


/* ===== SEPARATEUR DECORATIF ===== */
.rev-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--rev-space-md);
    padding: var(--rev-space-xl) 0;
}

.rev-divider__line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rev-gold), transparent);
}

.rev-divider__icon {
    width: 24px;
    height: auto;
    opacity: 0.7;
}


/* ===== FORMULAIRES ===== */
.rev-form .form-control,
.rev-form .form-select {
    background-color: var(--rev-black-soft);
    border: var(--rev-border);
    color: var(--rev-text-primary);
    border-radius: 0;
    padding: 0.875rem 1.25rem;
    font-family: var(--rev-font-body);
    font-size: 0.9rem;
    transition: border-color var(--rev-transition), box-shadow var(--rev-transition);
}

.rev-form .form-control:focus,
.rev-form .form-select:focus {
    background-color: var(--rev-black-elevated);
    border-color: var(--rev-gold);
    box-shadow: 0 0 0 0.2rem var(--rev-gold-glow);
    color: var(--rev-text-primary);
}

.rev-form .form-control::placeholder {
    color: var(--rev-text-muted);
    font-style: italic;
}

.rev-form .form-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rev-text-secondary);
    margin-bottom: 0.5rem;
}

.rev-form .form-check-input {
    background-color: var(--rev-black-soft);
    border-color: rgba(234, 200, 128, 0.4);
    border-radius: 0;
}

.rev-form .form-check-input:checked {
    background-color: var(--rev-gold);
    border-color: var(--rev-gold);
}

.rev-form .form-check-label {
    font-size: 0.85rem;
    color: var(--rev-text-secondary);
}


/* ===== FOOTER ===== */
.rev-footer {
    background-color: var(--rev-black);
    border-top: var(--rev-border);
    padding: var(--rev-space-3xl) 0 var(--rev-space-lg);
}

.rev-footer__brand-name {
    font-family: var(--rev-font-heading);
    font-size: 1.5rem;
    color: var(--rev-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--rev-space-sm);
}

.rev-footer__tagline {
    font-family: var(--rev-font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--rev-text-secondary);
}

.rev-footer h5 {
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rev-gold);
    margin-bottom: var(--rev-space-md);
}

.rev-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rev-footer ul li {
    margin-bottom: 0.5rem;
}

.rev-footer ul li a {
    color: var(--rev-text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--rev-transition);
}

.rev-footer ul li a:hover {
    color: var(--rev-gold);
}

.rev-footer__signature {
    margin-top: var(--rev-space-2xl);
    text-align: center;
}
.rev-footer__latin {
    font-family: var(--rev-font-handwriting);
    color: var(--rev-gold);
    font-size: clamp(1.4rem, 2.3vw, 1.9rem);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.02em;
}

.rev-footer__bottom {
    border-top: var(--rev-border);
    margin-top: var(--rev-space-lg);
    padding-top: var(--rev-space-lg);
    text-align: center;
}

.rev-footer__bottom p {
    font-size: 0.8rem;
    color: var(--rev-text-muted);
    margin: 0;
}

.rev-footer .rev-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: var(--rev-border);
    color: var(--rev-text-secondary);
    font-size: 1rem;
    transition: all var(--rev-transition);
    margin-right: 0.5rem;
}

.rev-footer .rev-social-link:hover {
    color: var(--rev-gold);
    border-color: var(--rev-gold);
}


/* ===== BREADCRUMB ===== */
.rev-breadcrumb {
    padding: var(--rev-space-sm) 0;
}

.rev-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.rev-breadcrumb .breadcrumb-item,
.rev-breadcrumb .breadcrumb-item a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rev-text-muted);
}

.rev-breadcrumb .breadcrumb-item a:hover {
    color: var(--rev-gold);
}

.rev-breadcrumb .breadcrumb-item.active {
    color: var(--rev-text-secondary);
}

.rev-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--rev-text-muted);
    content: "/";
}


/* ===== TIMELINE (page histoire) ===== */
.rev-timeline {
    position: relative;
    padding: var(--rev-space-xl) 0;
}

.rev-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--rev-gold), transparent);
    transform: translateX(-50%);
}

.rev-timeline-item {
    position: relative;
    margin-bottom: var(--rev-space-2xl);
}

.rev-timeline-item__dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--rev-gold);
    transform: translateX(-50%) rotate(45deg);
}

.rev-timeline-item__content {
    width: 45%;
    padding: var(--rev-space-lg);
    background: var(--rev-black-card);
    border: var(--rev-border);
}

.rev-timeline-item:nth-child(odd) .rev-timeline-item__content {
    margin-left: 0;
}

.rev-timeline-item:nth-child(even) .rev-timeline-item__content {
    margin-left: auto;
}

.rev-timeline-item__year {
    font-family: var(--rev-font-heading);
    font-size: 2rem;
    color: var(--rev-gold);
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .rev-timeline::before {
        left: 20px;
    }

    .rev-timeline-item__dot {
        left: 20px;
    }

    .rev-timeline-item__content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }
}


/* ===== PARALLAX CTA ===== */
.rev-cta-section {
    position: relative;
    padding: var(--rev-space-3xl) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rev-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.rev-cta-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (max-width: 767.98px) {
    .rev-cta-section {
        background-attachment: scroll;
    }
}


/* ===== CRAFTSMANSHIP (2 colonnes) ===== */
.rev-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.rev-split-section__image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.rev-split-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--rev-space-3xl);
}

@media (max-width: 991.98px) {
    .rev-split-section {
        grid-template-columns: 1fr;
    }
}


/* ===== CONTACT INFO ===== */
.rev-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--rev-space-md);
    margin-bottom: var(--rev-space-lg);
}

.rev-contact-info-item i {
    color: var(--rev-gold);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.rev-contact-info-item p {
    margin: 0;
    color: #a4a4a4;
    font-size: 0.9rem;
}
.rev-contact-info-item p a {
    color: #a4a4a4;
}
.rev-contact-info-item p a:hover {
    color: #fff;
}

.rev-contact-info-item strong {
    color: var(--rev-text-primary);
}

/* Pas de divider sous le formulaire de la page Contact */
.page-contact .rev-divider {
    display: none;
}

/* Honeypot anti-bot : hors flux ET hors lecture assistive */
.rev-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Conteneur Turnstile : invisible par defaut, CF le rend visible si challenge */
#cf-turnstile {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 1050;
}
#cf-turnstile:empty { display: none; }

/* ===== TOASTS (charte gold/dark) ===== */
.rev-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: calc(100vw - 48px);
}
.rev-toast {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-width: 280px;
    max-width: 420px;
    padding: 0.95rem 1.1rem;
    background-color: var(--rev-black-card);
    color: #f5f0eb;
    border: 1px solid rgba(234, 200, 128, 0.28);
    border-left-width: 3px;
    border-radius: 4px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.2);
    font-family: var(--rev-font-body);
    font-size: 0.92rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    pointer-events: auto;
}
.rev-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.rev-toast--success { border-left-color: var(--rev-gold); }
.rev-toast--error   { border-left-color: #b85151; }
.rev-toast__icon {
    flex-shrink: 0;
    line-height: 1;
    font-size: 1.15rem;
    margin-top: 0.05rem;
}
.rev-toast--success .rev-toast__icon { color: var(--rev-gold); }
.rev-toast--error   .rev-toast__icon { color: #d97a7a; }
.rev-toast__msg {
    flex: 1 1 auto;
    word-wrap: break-word;
}
.rev-toast__close {
    background: none;
    border: none;
    color: rgba(245, 240, 235, 0.55);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.1rem;
    margin: -0.1rem -0.2rem -0.1rem 0;
    transition: color var(--rev-transition);
}
.rev-toast__close:hover { color: var(--rev-gold); }


/* ===== MAP ===== */
.rev-map {
    filter: grayscale(100%) invert(92%) contrast(83%);
    border: var(--rev-border);
    width: 100%;
    height: 300px;
}


/* ===== FEATURES (3 colonnes) ===== */
.rev-feature {
    text-align: center;
    padding: var(--rev-space-xl);
}

.rev-feature__icon {
    width: 48px;
    height: auto;
    margin-bottom: var(--rev-space-md);
    opacity: 0.8;
}

.rev-feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--rev-space-sm);
}

.rev-feature p {
    color: #a4a4a4;
    font-size: 0.9rem;
}


/* ===== BACK TO TOP ===== */
.rev-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rev-black-elevated);
    border: var(--rev-border);
    color: var(--rev-gold);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--rev-transition);
    z-index: 1000;
}

.rev-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.rev-back-to-top:hover {
    background: var(--rev-gold);
    color: var(--rev-black-deep);
}


/* ===== MENTIONS LEGALES ===== */
.rev-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.rev-legal-content h2 {
    font-size: 1.5rem;
    color: var(--rev-gold);
    margin-top: var(--rev-space-2xl);
    margin-bottom: var(--rev-space-md);
    padding-bottom: var(--rev-space-sm);
    border-bottom: var(--rev-border);
}

.rev-legal-content h3 {
    font-size: 1.1rem;
    color: var(--rev-text-primary);
    margin-top: var(--rev-space-lg);
    margin-bottom: var(--rev-space-sm);
}

.rev-legal-content p {
    color: var(--rev-text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}


/* ===== COLLECTION BADGES ===== */
.rev-collection-badge[data-collection="bleu-saphir"] {
    color: #6B8EC2;
    border-color: rgba(107, 142, 194, 0.3);
}

.rev-collection-badge[data-collection="rouge-rubis"] {
    color: #C27070;
    border-color: rgba(194, 112, 112, 0.3);
}

.rev-collection-badge[data-collection="vert-emeraude"] {
    color: #5B9B6E;
    border-color: rgba(91, 155, 110, 0.3);
}

.rev-collection-badge--lg {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
    letter-spacing: 0.2em;
}

/* ===== PRODUCT LINK ===== */
.rev-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rev-product-link:hover {
    color: inherit;
    text-decoration: none;
}


/* ===== FRAGRANCE PAGE ===== */
.rev-fragrance-hero {
    position: relative;
    min-height: clamp(320px, 45vw, 600px);
    display: flex;
    align-items: center;
    padding: calc(80px + var(--rev-space-xl)) 0 var(--rev-space-xl);
    overflow: hidden;
    background-color: var(--rev-black-deep);
}

.rev-fragrance-hero__banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rev-fragrance-hero__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rev-fragrance-hero__overlay {
    display: none;
}

.rev-fragrance-hero > .container {
    position: relative;
    z-index: 2;
}

.rev-fragrance-hero__content {
    max-width: 550px;
    margin-left: 50%;
    padding: var(--rev-space-xl) 0;
}

.rev-fragrance-hero__name {
    font-family: var(--rev-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--rev-text-primary);
    letter-spacing: 0.1em;
    margin: var(--rev-space-md) 0 var(--rev-space-sm);
}

.rev-fragrance-hero__ref {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--rev-text-muted);
    text-transform: uppercase;
    margin-bottom: var(--rev-space-lg);
}

.rev-fragrance-hero__tagline {
    font-family: var(--rev-font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--rev-gold);
}

.rev-fragrance-hero__buy {
    margin-top: var(--rev-space-lg);
}

.rev-fragrance-hero__buy:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Note cards */
.rev-note-card {
    text-align: center;
    padding: var(--rev-space-lg);
    border: var(--rev-border);
    background: var(--rev-black-soft);
    height: 100%;
}

.rev-note-card__level {
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rev-gold);
    margin-bottom: var(--rev-space-sm);
}

.rev-note-card__icon {
    margin-bottom: var(--rev-space-sm);
}

.rev-note-card__text {
    color: var(--rev-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Gallery */
.rev-gallery-item {
    overflow: hidden;
    border: var(--rev-border);
}

.rev-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--rev-transition-slow);
}

.rev-gallery-item:hover img {
    transform: scale(1.03);
}

/* ===== PAGE PRODUIT - FOND COLLECTION ===== */
.page-fragrance {
    background-color: var(--rev-page-bg, var(--rev-black-deep));
}

.page-fragrance .rev-section--dark,
.page-fragrance .rev-section--elevated {
    background-color: transparent;
}

.page-fragrance .rev-note-card {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(234, 200, 128, 0.15);
}

/* ===== PHOTO PRODUIT - HOVER ===== */
.rev-fragrance-photo {
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

/* <picture> transparent : l'<img> reste l'enfant effectif (layout inchange) */
.rev-fragrance-photo picture,
.rev-gallery-item picture { display: contents; }

.rev-fragrance-photo__default,
.rev-fragrance-photo__hover {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.6s ease;
}

.rev-fragrance-photo__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.rev-fragrance-photo:hover .rev-fragrance-photo__default {
    opacity: 0;
}

.rev-fragrance-photo:hover .rev-fragrance-photo__hover {
    opacity: 1;
}


/* ============================================================
   FICHE PRODUIT V2 — media vertical (sticky) + editorial
   ============================================================ */
/* Degrade noir en haut (sous le header) pour lisibilite des icones sur l'artwork clair */
body.page-fragrance::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1029;
    pointer-events: none;
}

.rev-pp__split {
    display: grid;
    grid-template-columns: 45% 55%;
}

/* Colonne media : plein cadre, sticky, packshot centre */
.rev-pp__media {
    position: relative;
    border-right: 1px solid rgba(234, 200, 128, 0.15);
}
.rev-pp__media-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.rev-pp__tableau {
    display: block;
    width: 100%;
    height: 100%;
}
.rev-pp__tableau img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rev-pp__packshot {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 66%;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.55));
}
.rev-pp__packshot picture { display: contents; }
.rev-pp__packshot img {
    width: 100%;
    height: auto;
    display: block;
    transform-origin: center center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Survol : zoom du packshot 100% -> 200% */
.rev-pp__media-inner:hover .rev-pp__packshot img {
    transform: scale(2);
}

/* Colonne editoriale */
.rev-pp__content {
    max-width: 720px;
    padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
}
.rev-pp__name {
    font-family: var(--rev-font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 1rem 0 0.3rem;
}
.rev-pp__ref {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rev-text-muted);
    margin: 0;
}
.rev-pp__tagline {
    font-family: var(--rev-font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--rev-gold);
    margin: 1rem 0 1.5rem;
}
.rev-pp__rule {
    width: 60px;
    height: 1px;
    background: var(--rev-gold);
    margin: 1.5rem 0 2rem;
}
.rev-pp__desc {
    color: #a4a4a4;
    line-height: 1.95;
    font-size: 1.02rem;
}
.rev-pp__conclusion {
    font-family: var(--rev-font-heading);
    font-style: italic;
    color: var(--rev-gold);
    line-height: 1.8;
    margin-top: 1.5rem;
}
.rev-pp__arch-title {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.5rem;
}
.rev-pp__arch {
    color: #a4a4a4;
    line-height: 1.9;
    font-style: italic;
    font-size: 0.95rem;
}
.rev-pp__notes {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    border-top: 1px solid rgba(234, 200, 128, 0.15);
}
.rev-pp__notes li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(234, 200, 128, 0.15);
}
.rev-pp__lvl {
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rev-gold);
    padding-top: 0.15rem;
}
.rev-pp__val {
    color: #a4a4a4;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Galerie dans la colonne editoriale */
.rev-pp__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}
.rev-pp__gallery-item {
    overflow: hidden;
    border: var(--rev-border);
}
.rev-pp__gallery-item picture { display: contents; }
.rev-pp__gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--rev-transition-slow);
}
.rev-pp__gallery-item:hover img { transform: scale(1.03); }

/* ===== LIGHTBOX (visualisation image au clic) ===== */
[data-lightbox] { cursor: zoom-in; }
.rev-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4vh 4vw;
    background: rgba(10, 10, 10, 0.93);
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.rev-lightbox.is-open {
    display: flex;
    opacity: 1;
}
.rev-lightbox__img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    border: var(--rev-border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}
.rev-lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.6rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: color var(--rev-transition), transform var(--rev-transition);
    z-index: 1;
}
.rev-lightbox__close:hover {
    color: #fff;
    transform: scale(1.15);
}

/* <= 900px : une colonne (media en haut, texte dessous) */
@media (max-width: 900px) {
    .rev-pp__split { grid-template-columns: 1fr; }
    .rev-pp__media { border-right: none; }
    .rev-pp__media-inner {
        position: static;
        height: auto;
        aspect-ratio: 2 / 3;
        max-width: 460px;
        margin: 0 auto;
    }
    .rev-pp__content {
        max-width: 640px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
    }
    .rev-pp__notes li { grid-template-columns: 100px 1fr; }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .rev-section {
        padding: var(--rev-space-2xl) 0;
    }

    .rev-split-section__content {
        padding: var(--rev-space-xl);
    }
}

@media (max-width: 767.98px) {
    .rev-section {
        padding: var(--rev-space-xl) 0;
    }

    .rev-page-header {
        min-height: 40vh;
    }

    .rev-footer {
        text-align: center;
    }

    .rev-split-section__content {
        padding: var(--rev-space-lg);
    }

    .rev-fragrance-hero {
        padding-top: calc(70px + var(--rev-space-xl));
        text-align: center;
    }

    .rev-fragrance-hero__content {
        max-width: 100%;
        margin-left: 0;
    }

    /* Header responsive mobile */
    .rev-header__bar {
        padding: 0.75rem 1rem;
    }

    .rev-header__bar.scrolled {
        padding: 0.4rem 1rem;
    }

    .rev-logo {
        height: 45px;
    }

    .rev-header__bar.scrolled .rev-logo {
        height: 36px;
    }

    .rev-header__brand {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .rev-search-btn {
        font-size: 0.85rem;
    }
}


/* ============================================================
   HISTOIRE DE LA MAISON — optimisations UI (scop&eacute;es)
   Charte : noir/or, Bodoni Moda / Vladimir, animations reveal
   ============================================================ */

/* D — Convictions : principes (non chronologiques), pas de frise temporelle */
.rev-convictions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--rev-space-lg);
}
.rev-conviction {
    position: relative;
    padding: var(--rev-space-xl);
    background: var(--rev-black-card);
    border: var(--rev-border);
    transition: border-color var(--rev-transition), transform var(--rev-transition);
}
.rev-conviction:hover {
    border-color: rgba(234, 200, 128, 0.45);
    transform: translateY(-3px);
}
.rev-conviction h3 {
    font-size: 1.3rem;
    margin-bottom: var(--rev-space-sm);
}
.rev-conviction p {
    color: #a4a4a4;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}
@media (max-width: 767.98px) {
    .rev-convictions {
        grid-template-columns: 1fr;
    }
}

/* C — Valeurs cardinales : rythme (filets or, hauteurs &eacute;galis&eacute;es, hover ic&ocirc;ne) */
.rev-cardinals .rev-feature {
    position: relative;
    height: 100%;
}
.rev-cardinals .rev-feature__icon {
    transition: transform var(--rev-transition), opacity var(--rev-transition);
}
.rev-cardinals .rev-feature:hover .rev-feature__icon {
    transform: translateY(-4px) scale(1.06);
    opacity: 1;
}
@media (min-width: 992px) {
    .rev-cardinals > [class*="col-"] + [class*="col-"] .rev-feature::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12%;
        bottom: 12%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--rev-gold-muted), transparent);
    }
}

/* B — Humanisme : combler le vide (signature Vladimir + image Ken Burns) */
.page-histoire .rev-split-section {
    min-height: 520px;
}
.rev-histoire-signature {
    position: relative;
    font-family: var(--rev-font-handwriting);
    color: var(--rev-gold);
    font-size: 2.1rem;
    line-height: 1.2;
    margin: var(--rev-space-xl) 0 0;
    padding-top: var(--rev-space-md);
}
.rev-histoire-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 1px;
    background: var(--rev-gold);
}
.rev-histoire-humanism__img {
    position: relative;
    overflow: hidden;
}
.rev-histoire-humanism__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--rev-hum-img);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: revKenBurns 24s ease-in-out infinite alternate;
}
.rev-histoire-humanism__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0) 32%);
    pointer-events: none;
}
@keyframes revKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
@media (max-width: 991.98px) {
    .page-histoire .rev-split-section {
        min-height: auto;
    }
    .rev-histoire-humanism__img {
        min-height: 360px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .rev-histoire-humanism__img::before {
        animation: none;
        transform: none;
    }
}


/* ===== AURA — Page manifeste ===== */
.page-aura__cross {
    width: 36px;
    height: 36px;
    opacity: 0.75;
}
.page-aura__manifesto {
    font-family: var(--rev-font-heading);
    font-style: italic;
    color: var(--rev-gold);
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    letter-spacing: 0.03em;
    line-height: 1.7;
}
.page-aura__manifesto p {
    margin: 0.35rem 0;
}
.page-aura__text {
    color: #a4a4a4;
    line-height: 1.95;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
/* Signature latine centree sur la page aura (override pos:left du modele histoire) */
.page-aura .rev-histoire-signature {
    display: inline-block;
    text-align: center;
    margin-top: var(--rev-space-2xl);
    padding-top: var(--rev-space-md);
}
.page-aura .rev-histoire-signature::before {
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767.98px) {
    .page-aura__manifesto { font-size: 1.3rem; line-height: 1.65; }
    .page-aura__cross { width: 28px; height: 28px; }
}


/* ===== FAQ — Accordeons native <details>/<summary> ===== */
.rev-faq {
    max-width: 800px;
    margin: 0 auto;
}
.rev-faq__item {
    border-bottom: 1px solid rgba(234, 200, 128, 0.18);
    padding: 0;
}
.rev-faq__item:first-child {
    border-top: 1px solid rgba(234, 200, 128, 0.18);
}
.rev-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.2rem, 2.5vh, 1.8rem) 0;
    cursor: pointer;
    list-style: none;
    transition: color var(--rev-transition);
    font-family: var(--rev-font-heading);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--rev-text-primary);
    line-height: 1.4;
}
.rev-faq__question::-webkit-details-marker { display: none; }
.rev-faq__question::marker                { display: none; content: ''; }
.rev-faq__question:hover {
    color: var(--rev-gold-bright);
}
.rev-faq__q-text {
    flex: 1 1 auto;
}
.rev-faq__chevron {
    flex: 0 0 auto;
    color: var(--rev-gold);
    font-size: 0.95rem;
    transition: transform var(--rev-transition);
    display: inline-flex;
}
.rev-faq__item[open] .rev-faq__chevron {
    transform: rotate(180deg);
}
.rev-faq__item[open] .rev-faq__question {
    color: var(--rev-gold);
}
.rev-faq__answer {
    padding: 0 0 clamp(1.5rem, 3vh, 2rem);
    color: #a4a4a4;
    font-family: var(--rev-font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 700px;
}
.rev-faq__answer strong {
    color: var(--rev-gold);
    font-weight: 500;
}
.rev-faq__answer p { margin: 0 0 0.8rem; }
.rev-faq__answer p:last-child { margin-bottom: 0; }
/* Liens hypertextes vers les pages mentionnees */
.rev-faq__link,
.rev-faq__answer a {
    color: var(--rev-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(234, 200, 128, 0.35);
    transition: color var(--rev-transition), border-color var(--rev-transition);
    font-weight: 500;
}
.rev-faq__link:hover,
.rev-faq__answer a:hover {
    color: var(--rev-gold-bright);
    border-bottom-color: var(--rev-gold-bright);
}

/* ============================================
   PAGE PRESSE (presse.php)
   ============================================ */
.page-presse .rev-page-header__content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.rev-press__quote {
    font-family: var(--rev-font-display);
    font-style: italic;
    color: var(--rev-gold);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-top: 1.5rem;
    opacity: 0.85;
}
.rev-press__intro {
    color: #a4a4a4;
    font-family: var(--rev-font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Cartes assets dossier presse */
.rev-press__assets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .rev-press__assets {
        grid-template-columns: repeat(3, 1fr);
    }
}
.rev-press__asset {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(234, 200, 128, 0.15);
    border-radius: 4px;
    transition: border-color var(--rev-transition), background var(--rev-transition), transform var(--rev-transition);
    position: relative;
    overflow: hidden;
}
.rev-press__asset:not(.is-disabled):hover {
    border-color: rgba(234, 200, 128, 0.45);
    background: rgba(234, 200, 128, 0.04);
    transform: translateY(-2px);
}
.rev-press__asset.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.rev-press__asset-icon {
    font-size: 1.75rem;
    color: var(--rev-gold);
    line-height: 1;
}
.rev-press__asset-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rev-press__asset-title {
    font-family: var(--rev-font-display);
    font-size: 1.1rem;
    color: var(--rev-cream, #f5f0eb);
    letter-spacing: 0.02em;
}
.rev-press__asset-desc {
    color: #a4a4a4;
    font-family: var(--rev-font-body);
    font-size: 0.9rem;
    line-height: 1.65;
}
.rev-press__asset-status {
    margin-top: 0.5rem;
    display: inline-block;
    font-family: var(--rev-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rev-gold);
    border: 1px solid rgba(234, 200, 128, 0.4);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    align-self: flex-start;
}

/* Note finale + lien inline */
.rev-press__note {
    color: #a4a4a4;
    font-family: var(--rev-font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.rev-press__inline-link {
    color: var(--rev-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(234, 200, 128, 0.35);
    transition: color var(--rev-transition), border-color var(--rev-transition);
}
.rev-press__inline-link:hover {
    color: var(--rev-gold-bright);
    border-bottom-color: var(--rev-gold-bright);
}

/* ============================================
   BADGE "DEV" — Marque les pages WIP dans le menu/footer
   Visible UNIQUEMENT sur preprod (SHOW_WIP=true).
   Genere par PHP via rev_wip_badge($slug).
   ============================================ */
.rev-wip-badge {
    display: inline-block;
    margin-left: 0.55em;
    padding: 0.18em 0.55em;
    font-family: var(--rev-font-body);
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rev-gold);
    background: rgba(234, 200, 128, 0.08);
    border: 1px solid rgba(234, 200, 128, 0.4);
    border-radius: 2px;
    vertical-align: middle;
    line-height: 1;
    user-select: none;
    transition: opacity var(--rev-transition);
    opacity: 0.78;
}
.rev-wip-badge:hover { opacity: 1; }
/* Specifique footer (smaller text base) : reduit le badge legerement */
.rev-footer .rev-wip-badge {
    font-size: 0.62em;
    padding: 0.15em 0.5em;
    margin-left: 0.45em;
}
