/* ============================================================
   VIBES 110 – vibes110.css
   Thème CLAIR · Bleu méditerranéen #0497d0 · Playfair + Jost
============================================================ */

:root {
    --blanc:       #ffffff;
    --blanc-2:     #f4f9fc;
    --blanc-3:     #e8f3f9;
    --blanc-4:     #d4e9f5;
    --bleu:        #0497d0;
    --bleu-light:  #38b5e4;
    --bleu-pale:   #c4e6f5;
    --bleu-dark:   #0476a8;
    --bleu-deeper: #034f75;
    --noir:        #0d1e2a;
    --noir-2:      #122535;
    --gris:        #6a8a9a;
    --gris-2:      #9ab0bc;
    --gris-3:      #c5d8e2;
    --transition:  0.4s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.form-check-input {
    background-color: rgba(4,151,208,0.06) !important;
    border: 1px solid rgba(4,151,208,0.4) !important;
    border-radius: 2px !important;
    width: 1.1em !important; height: 1.1em !important;
}
.form-check-input:checked {
    background-color: var(--bleu) !important;
    border-color: var(--bleu-dark) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-width='3' d='m6 10 3 3 5-6'/%3e%3c/svg%3e") !important;
}
.form-check-input:focus {
    border-color: var(--bleu) !important;
    box-shadow: 0 0 0 3px rgba(4,151,208,0.15) !important;
}

body {
    font-family: 'Jost', 'Montserrat', sans-serif;
    background-color: var(--blanc);
    color: var(--noir);
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', 'Cormorant Garamond', serif; font-weight: 400; }
em { font-style: italic; color: var(--bleu); }

/* ============================================================  COMMUNS ============================================================ */
.section-label {
    display: block; font-family: 'Jost', sans-serif;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--bleu); margin-bottom: 1rem;
}
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.05; color: inherit; margin-bottom: 0.5rem; font-weight: 400; }
.bleu-rule { width: 50px; height: 2px; background: linear-gradient(90deg, var(--bleu), var(--bleu-light), transparent); margin: 1.5rem 0 2rem; }
.section-text { font-size: 0.92rem; font-weight: 300; line-height: 1.9; color: rgba(13,30,42,0.62); margin-bottom: 1.2rem; }
.section-text strong { color: var(--noir); font-weight: 600; }

.btn-bleu {
    display: inline-block;
    background: linear-gradient(135deg, var(--bleu-dark), var(--bleu), var(--bleu-light));
    background-size: 200% auto; color: #fff;
    font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 1rem 2.2rem; border: none; border-radius: 0; cursor: pointer; text-decoration: none;
    transition: background-position var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-bleu:hover { background-position: right center; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(4,151,208,0.35); }

.btn-ghost {
    display: inline-block; background: transparent; color: var(--bleu-dark);
    font-family: 'Jost', sans-serif; font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 0.95rem 2rem; border: 2px solid var(--bleu); border-radius: 0;
    text-decoration: none; transition: var(--transition);
}
.btn-ghost:hover { background: var(--bleu); color: #fff; }

.section-white  { padding: 8rem 0; background: var(--blanc); }
.section-light  { padding: 8rem 0; background: var(--blanc-2); }
.section-blue   { padding: 8rem 0; background: var(--bleu-deeper); color: #fff; }
.section-blue .section-title { color: #fff; }
.section-blue .section-text  { color: rgba(255,255,255,0.72); }
.section-blue .section-label { color: var(--bleu-pale); }
.section-blue .bleu-rule     { background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2), transparent); }
.section-blue em              { color: var(--bleu-pale); }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================  NAVBAR ============================================================ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    padding: 1.2rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.hero-mode .nav-links a  { color: rgba(255,255,255,0.9); }
#navbar.hero-mode .nav-links a:hover,
#navbar.hero-mode .nav-links a.active { color: #fff; }
#navbar.hero-mode .nav-links a::after { background: rgba(255,255,255,0.8); }
#navbar.hero-mode .burger-btn { border-color: rgba(255,255,255,0.5); color: #fff; }

#navbar.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(4,151,208,0.12);
    box-shadow: 0 2px 20px rgba(13,30,42,0.08);
}
#navbar.scrolled .nav-links a  { color: var(--noir-2); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--bleu); }
#navbar.scrolled .nav-links a::after { background: var(--bleu); }

.nav-logo img { height: 52px; transition: height var(--transition); }
#navbar.scrolled .nav-logo img { height: 40px; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; margin: 0; padding: 0; }
.nav-links a {
    color: var(--noir-2); text-decoration: none;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    transition: color var(--transition); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--bleu); transition: width var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--bleu) !important; color: #fff !important; padding: 0.5rem 1.4rem !important; font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bleu-dark) !important; color: #fff !important; }

.burger-btn { display: none; background: none; border: 2px solid rgba(4,151,208,0.4); color: var(--bleu); padding: 0.4rem 0.7rem; font-size: 1.2rem; cursor: pointer; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--blanc); z-index: 9998; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--noir); text-decoration: none; font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 400; font-style: italic; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--bleu); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--gris); font-size: 2rem; cursor: pointer; }

@media (max-width: 991px) { .nav-links { display: none !important; } .burger-btn { display: block; } }

/* ============================================================  HERO ============================================================ */
#hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('img/immeuble-crepuscule.webp'); background-size: cover; background-position: center 30%; background-attachment: fixed; transform: scale(1.05); transition: transform 8s ease; }
body.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(3,79,117,0.9) 0%, rgba(3,79,117,0.55) 55%, rgba(3,79,117,0.15) 100%),
                linear-gradient(to top, rgba(3,79,117,0.98) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bleu-pale); margin-bottom: 1.8rem; }
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--bleu-pale); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; line-height: 1; color: #fff; margin-bottom: 2rem; }
.hero-title em { color: var(--bleu-pale); font-style: italic; }
.hero-sub { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.72); max-width: 460px; line-height: 1.9; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.8); }
.hero-badge-wrap { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.7rem; font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; }
.hero-badge i { color: var(--bleu-pale); font-size: 1rem; }

/* ============================================================  PAGE HERO ============================================================ */
.page-hero { position: relative; padding: 14rem 0 7rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; background-attachment: fixed; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3,79,117,0.5) 0%, rgba(3,79,117,0.82) 60%, rgba(3,79,117,0.98) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bleu-pale); margin-bottom: 1.5rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 25px; height: 1px; background: var(--bleu-pale); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400; color: #fff; line-height: 1.05; margin-bottom: 1.2rem; }
.page-hero h1 em { color: var(--bleu-pale); }
.page-hero-sub { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.9; }

/* ============================================================  IMAGES ============================================================ */
.img-frame { position: relative; overflow: hidden; box-shadow: 0 12px 40px rgba(4,151,208,0.1); }
.img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.8s ease; }
.img-frame:hover img { transform: scale(1.04); }
.img-frame::after { content: ''; position: absolute; inset: 0; border: 3px solid rgba(4,151,208,0.12); pointer-events: none; }

.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; bottom: 1rem; right: 1rem; background: rgba(4,151,208,0.92); color: #fff; padding: 0.4rem 0.8rem; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }

/* ============================================================  FEATURES ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--blanc-4); border: 1px solid var(--blanc-4); }
.feat-item { background: var(--blanc); padding: 1.8rem; display: flex; align-items: flex-start; gap: 1rem; transition: background var(--transition); }
.feat-item:hover { background: var(--blanc-2); }
.feat-icon { font-size: 1.4rem; color: var(--bleu); flex-shrink: 0; margin-top: 0.1rem; }
.feat-label { font-size: 0.84rem; font-weight: 600; color: var(--noir); margin-bottom: 0.2rem; }
.feat-desc  { font-size: 0.76rem; color: var(--gris); font-weight: 300; }

/* ============================================================  PARALLAX ============================================================ */
.section-parallax { position: relative; padding: 10rem 0; overflow: hidden; }
.parallax-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.parallax-overlay { position: absolute; inset: 0; background: rgba(3,79,117,0.84); }
.parallax-content { position: relative; z-index: 2; }
.parallax-stat { text-align: center; padding: 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 400; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ============================================================  TARIFS ============================================================ */
.section-tarifs { padding: 8rem 0; background: var(--blanc-2); }
.tarif-card { position: relative; border: 2px solid var(--blanc-4); padding: 2.5rem 2rem; display: flex; flex-direction: column; background: var(--blanc); transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); height: 100%; }
.tarif-card:hover { border-color: var(--bleu); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(4,151,208,0.15); }
.tarif-featured { background: var(--bleu-deeper); border-color: var(--bleu); color: #fff; }
.tarif-featured .tarif-label { color: #fff; }
.tarif-featured .tarif-desc  { color: rgba(255,255,255,0.65); }
.tarif-featured .tarif-includes li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.tarif-featured:hover { border-color: var(--bleu-light); }
.tarif-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--bleu-dark), var(--bleu)); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 1.4rem; white-space: nowrap; }
.tarif-icon { font-size: 2rem; color: var(--bleu); margin-bottom: 1.2rem; }
.tarif-featured .tarif-icon { color: var(--bleu-pale); }
.tarif-label { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; color: var(--noir); margin-bottom: 0.5rem; font-weight: 400; }
.tarif-desc { font-size: 0.82rem; color: var(--gris); line-height: 1.6; margin-bottom: 1.2rem; font-weight: 300; }
.tarif-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--bleu); margin-bottom: 1.5rem; font-weight: 400; }
.tarif-featured .tarif-price { color: var(--bleu-pale); }
.tarif-includes { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.tarif-includes li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 300; color: rgba(13,30,42,0.65); padding: 0.4rem 0; border-bottom: 1px solid rgba(4,151,208,0.08); }
.tarif-includes li i { color: var(--bleu); font-size: 0.9rem; }
.tarif-note { text-align: center; margin-top: 2.5rem; font-size: 0.78rem; color: var(--gris); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.tarif-note i { color: var(--bleu); }

/* ============================================================  CALENDRIER PUBLIC ============================================================ */
.cal-widget { background: var(--blanc); border: 2px solid var(--blanc-4); padding: 2rem; box-shadow: 0 4px 20px rgba(4,151,208,0.08); }
.cal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cal-nav button { background: none; border: 2px solid var(--blanc-4); color: var(--bleu); padding: 0.3rem 0.7rem; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cal-nav button:hover { background: var(--bleu); color: #fff; border-color: var(--bleu); }
.cal-month-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--noir); letter-spacing: 0.05em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-name { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bleu); text-align: center; padding: 0.3rem 0 0.6rem; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 400; transition: background 0.2s; border-radius: 2px; }
.cal-day.disponible { color: var(--noir); }
.cal-day.reserve { background: rgba(4,151,208,0.1); color: rgba(13,30,42,0.3); text-decoration: line-through; cursor: not-allowed; }
.cal-day.bloque  { background: rgba(180,50,50,0.08); color: rgba(180,50,50,0.5); cursor: not-allowed; }
.cal-legend { display: flex; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.cal-legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--gris); }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cal-dot.disponible { background: rgba(13,30,42,0.12); border: 1px solid rgba(13,30,42,0.2); }
.cal-dot.reserve { background: rgba(4,151,208,0.3); }
.cal-dot.bloque  { background: rgba(180,50,50,0.3); }

/* ============================================================  CONTACT ============================================================ */
.form-wrap-vr { background: var(--blanc-2); border: 2px solid var(--blanc-4); padding: 3rem 2.5rem; }
.vr-input { background: var(--blanc) !important; border: 2px solid var(--blanc-4) !important; color: var(--noir) !important; border-radius: 0 !important; padding: 0.85rem 1rem !important; font-family: 'Jost', sans-serif !important; font-size: 0.85rem !important; font-weight: 400 !important; transition: border-color var(--transition) !important; }
.vr-input:focus { border-color: var(--bleu) !important; box-shadow: 0 0 0 3px rgba(4,151,208,0.1) !important; background: var(--blanc) !important; }
.vr-input::placeholder { color: var(--gris-2) !important; }
.vr-input option { background: var(--blanc); color: var(--noir); }
textarea.vr-input { resize: vertical; min-height: 120px; }
.vr-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bleu-dark); margin-bottom: 0.4rem; display: block; }
.vr-check-label { font-size: 0.78rem; font-weight: 300; color: var(--gris); line-height: 1.5; }
.vr-check-label a { color: var(--bleu); text-decoration: none; }
.vr-check-label a:hover { color: var(--bleu-dark); }
.contact-infos { margin-top: 2rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; }
.ci-icon { width: 42px; height: 42px; border: 2px solid var(--blanc-4); display: flex; align-items: center; justify-content: center; color: var(--bleu); font-size: 1rem; flex-shrink: 0; background: rgba(4,151,208,0.05); }
.ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gris); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.88rem; font-weight: 500; color: var(--noir); text-decoration: none; line-height: 1.5; }
.ci-value:hover { color: var(--bleu); }

/* ============================================================  FOOTER ============================================================ */
#footer-vr { background: var(--bleu-deeper); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; }
.footer-desc { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; font-weight: 400; color: var(--bleu-pale); margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.83rem; font-weight: 300; transition: color var(--transition); }
.footer-nav a:hover { color: var(--bleu-pale); }
.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.83rem; font-weight: 300; display: flex; align-items: flex-start; gap: 0.6rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--bleu-pale); }
.footer-contact i { color: var(--bleu-light); flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom-vr { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom-vr p { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin: 0; }
.footer-bottom-vr a { color: var(--bleu-pale); text-decoration: none; }

/* ============================================================  LIGHTBOX ============================================================ */
.lightbox-vr { display: none; position: fixed; inset: 0; background: rgba(3,79,117,0.97); z-index: 99999; align-items: center; justify-content: center; }
.lightbox-vr.open { display: flex; }
.lightbox-vr img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lb-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(3,79,117,0.7); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 1.4rem; padding: 0.8rem 1rem; cursor: pointer; transition: var(--transition); }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: var(--bleu); }

/* ============================================================  ALERT ============================================================ */
.alert-session { position: fixed; top: 80px; right: 1.5rem; z-index: 9990; min-width: 280px; padding: 1rem 1.5rem; border-left: 3px solid var(--bleu); background: var(--blanc); color: var(--noir); box-shadow: 0 8px 30px rgba(4,151,208,0.18); font-size: 0.83rem; animation: slideIn 0.4s ease; }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

/* ============================================================  RESPONSIVE ============================================================ */
@media (max-width: 767px) {
    .section-white, .section-light, .section-blue, .section-tarifs { padding: 5rem 0; }
    .section-parallax { padding: 5rem 0; }
    .section-parallax .parallax-bg, #hero .hero-bg, .page-hero-bg { background-attachment: scroll; }
    .img-frame img { height: 320px; }
    .form-wrap-vr { padding: 2rem 1.2rem; }
    .hero-actions { flex-direction: column; }
}

@keyframes heroFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { animation: heroFadeIn 1s ease 0.3s both; }
.hero-title   { animation: heroFadeIn 1s ease 0.5s both; }
.hero-sub     { animation: heroFadeIn 1s ease 0.7s both; }
.hero-actions { animation: heroFadeIn 1s ease 0.9s both; }
.hero-badge-wrap { animation: heroFadeIn 1s ease 1.1s both; }

body { opacity: 0; transition: opacity 0.4s ease; }
body.loaded { opacity: 1; }

/* ============================================================
   CORRECTIONS VISIBILITÉ
   - body ne se cache plus (évite le blanc si JS lent/bloqué)
   - fade-up : fallback CSS si IntersectionObserver ne se déclenche pas
============================================================ */

/* Écrase l'ancienne règle opacity:0 */
body { opacity: 1 !important; }

/* Fallback : les sections .fade-up deviennent visibles après 1.2s même sans JS */
@keyframes fadeUpFallback {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUpFallback 0.8s ease 1.2s both;
}
.fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
    transition: none !important;
}
