/* ============================================================
   VIBES 210 – vibes210.css
   Luxury Resort · Cap d'Agde · Cormorant + Montserrat
============================================================ */

:root {
    --noir:       #0a0806;
    --noir-2:     #111008;
    --noir-3:     #1a170f;
    --noir-4:     #222018;
    --or:         #c9a84c;
    --or-light:   #e8c97a;
    --or-pale:    #f5e9c8;
    --or-dark:    #8c6e2a;
    --ivoire:     #f8f3ea;
    --ivoire-2:   #ede5d4;
    --gris:       #9a9080;
    --transition: 0.4s ease;
}

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


/* ── Checkboxes thème Vibes ── */
.form-check-input {
    background-color: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(201,168,76,0.35) !important;
    border-radius: 2px !important;
    width: 1.1em !important;
    height: 1.1em !important;
}
.form-check-input:checked {
    background-color: var(--or-dark) !important;
    border-color: var(--or) !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='%230a0806' stroke-width='3' d='m6 10 3 3 5-6'/%3e%3c/svg%3e") !important;
}
.form-check-input:focus {
    border-color: var(--or) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--noir);
    color: var(--ivoire);
    overflow-x: hidden;
}

/* Typographie de base */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}
em { font-style: italic; color: var(--or); }

/* ============================================================
   ÉLÉMENTS COMMUNS
============================================================ */
.section-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    color: inherit;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.gold-rule {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--or-dark), var(--or-light), transparent);
    margin: 1.5rem 0 2rem;
}

.section-text {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(248,243,234,0.72);
    margin-bottom: 1.2rem;
}
.section-text strong { color: var(--ivoire); font-weight: 500; }

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--or-dark), var(--or), var(--or-light));
    background-size: 200% auto;
    color: var(--noir);
    font-family: 'Montserrat', 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-gold:hover {
    background-position: right center;
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--ivoire);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.95rem 2rem;
    border: 1px solid rgba(248,243,234,0.35);
    border-radius: 0;
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--or);
    color: var(--or);
}

/* Sections */
.section-dark  { padding: 8rem 0; background: var(--noir-2); }
.section-light { padding: 8rem 0; background: var(--ivoire); color: var(--noir); }
.section-light .section-title { color: var(--noir-2); }
.section-light .section-text  { color: rgba(10,8,6,0.65); }
.section-light .section-label { color: var(--or-dark); }
.section-light .gold-rule     { background: linear-gradient(90deg, var(--or-dark), var(--or), transparent); }
.section-light em              { color: var(--or-dark); }
.section-light strong          { color: var(--noir); font-weight: 600; }
.section-light .loc-item       { color: rgba(10,8,6,0.72); border-color: rgba(10,8,6,0.1); }
.section-light .loc-item i     { color: var(--or-dark); }

/* Fade-up */
.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.4rem 0;
    transition: background var(--transition), padding var(--transition);
}
#navbar.scrolled {
    background: rgba(10,8,6,0.97);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo img { height: 56px; transition: height var(--transition); }
#navbar.scrolled .nav-logo img { height: 42px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0; padding: 0;
}
.nav-links a {
    color: rgba(248,243,234,0.8);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--or);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--or); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--or) !important;
    color: var(--noir) !important;
    padding: 0.5rem 1.3rem !important;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--or-light) !important; }

.burger-btn {
    display: none;
    background: none;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--or);
    padding: 0.4rem 0.7rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--noir);
    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(--ivoire);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--or); }
.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(10,8,6,0.92) 0%, rgba(10,8,6,0.55) 60%, rgba(10,8,6,0.2) 100%),
        linear-gradient(to top, rgba(10,8,6,1) 0%, transparent 40%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--or);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero-title em { color: var(--or-light); }

.hero-sub {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(248,243,234,0.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Badges flottants */
.hero-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}
.hero-badge {
    background: rgba(10,8,6,0.75);
    border: 1px solid rgba(201,168,76,0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}
.hero-badge i, .hero-badge .hero-badge-num {
    color: var(--or);
    font-size: 1.6rem;
    line-height: 1;
}
.hero-badge-num sup { font-size: 0.9rem; }
.hero-badge-txt {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ivoire);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(201,168,76,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    animation: bounceDown 2.5s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   IMAGE FRAME (À propos)
============================================================ */
.img-frame {
    position: relative;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
}
.img-frame img {
    width: 100%; height: 520px;
    object-fit: cover;
    display: block;
    position: relative; z-index: 1;
}
.img-frame-deco {
    position: absolute;
    bottom: 0; right: 0;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border: 1px solid rgba(201,168,76,0.25);
    z-index: 0;
}

/* ============================================================
   SECTION PARALLAX
============================================================ */
.section-parallax {
    padding: 9rem 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.exception-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}
.exc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 1.2rem 1.5rem;
    min-width: 120px;
    transition: var(--transition);
}
.exc-item:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
}
.exc-item i { font-size: 1.5rem; color: var(--or); }
.exc-item span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,248,235,0.75);
    text-align: center;
}

/* ============================================================
   GALERIE APPARTEMENT
============================================================ */
.appart-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
}
.appart-main {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 480px;
}
.appart-thumb {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.appart-side {
    display: grid;
    grid-template-rows: 237px 237px;
    gap: 6px;
}
.appart-main img, .appart-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.appart-main:hover img, .appart-thumb:hover img { transform: scale(1.05); }

.gal-overlay {
    position: absolute; inset: 0;
    background: rgba(10,8,6,0);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.gal-overlay i { color: var(--or); font-size: 2rem; opacity: 0; transition: opacity var(--transition); }
.appart-main:hover .gal-overlay,
.appart-thumb:hover .gal-overlay { background: rgba(10,8,6,0.45); }
.appart-main:hover .gal-overlay i,
.appart-thumb:hover .gal-overlay i { opacity: 1; }

@media (max-width: 767px) {
    .appart-gallery { grid-template-columns: 1fr; height: auto; }
    .appart-main { height: 250px; }
    .appart-side { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
}

/* ============================================================
   ÉQUIPEMENTS
============================================================ */
.equip-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(10,8,6,0.08);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(10,8,6,0.75);
}
.equip-item i { color: var(--or-dark); font-size: 1.05rem; flex-shrink: 0; }

/* Plan */
.plan-wrap {
    position: relative;
    background: var(--ivoire-2);
    border: 1px solid rgba(10,8,6,0.1);
}
.plan-wrap img { width: 100%; display: block; }
.plan-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,8,6,0.7);
    color: var(--or-pale);
    text-align: center;
    padding: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================================
   ROOFTOP
============================================================ */
.rooftop-imgs {
    position: relative;
    height: 500px;
}
.rooftop-main {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.rooftop-inset {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 220px; height: 160px;
    object-fit: cover;
    border: 4px solid var(--noir-2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.rooftop-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.rt-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(248,243,234,0.8);
    letter-spacing: 0.05em;
}
.rt-feat i { color: var(--or); }

@media (max-width: 767px) {
    .rooftop-imgs { height: 280px; }
    .rooftop-inset { display: none; }
}

/* ============================================================
   VUES
============================================================ */
.section-vues { background: var(--noir); }
.vues-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 380px;
    gap: 4px;
}
.vue-large { grid-row: span 1; }
.vue-item {
    position: relative;
    overflow: hidden;
}
.vue-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.85);
}
.vue-item:hover img { transform: scale(1.05); filter: brightness(1); }
.vue-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,8,6,0.8));
    color: var(--or-pale);
    padding: 1.5rem 1rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--transition);
}
.vue-item:hover .vue-caption { opacity: 1; }

@media (max-width: 767px) {
    .vues-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
    .vue-large { grid-column: span 2; }
    .vue-caption { opacity: 1; }
}

/* ============================================================
   LOCALISATION
============================================================ */
.loc-items { margin-top: 1.5rem; }
.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(10,8,6,0.12);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(10,8,6,0.75);
}
.loc-item i { color: var(--or-dark); flex-shrink: 0; margin-top: 0.1rem; }

.map-wrap img {
    width: 100%;
    display: block;
}

/* ============================================================
   TARIFS
============================================================ */
.section-tarifs {
    padding: 8rem 0;
    background: var(--noir-3);
    background-image: url('img/trame-papierpeint.webp');
    background-blend-mode: overlay;
    background-size: cover;
}

.tarif-card {
    background: rgba(26,23,15,0.95);
    border: 1px solid rgba(201,168,76,0.18);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.tarif-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.tarif-featured {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.4);
}
.tarif-featured:hover { border-color: var(--or); }

.tarif-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or-dark), var(--or));
    color: var(--noir);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.25rem 1.2rem;
}

.tarif-icon {
    font-size: 2rem;
    color: var(--or);
    margin-bottom: 1.2rem;
}
.tarif-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--ivoire);
    margin-bottom: 0.5rem;
    font-weight: 300;
}
.tarif-desc {
    font-size: 0.82rem;
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-weight: 300;
}
.tarif-desc small { font-size: 0.75rem; }
.tarif-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--or);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.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(248,243,234,0.65);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
}
.tarif-includes li i { color: var(--or); 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(--or); }

/* ============================================================
   CONTACT / FORMULAIRE
============================================================ */
.contact-infos { margin-top: 2rem; }
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.3rem;
}
.ci-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(10,8,6,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--or-dark);
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(201,168,76,0.06);
}
.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-2);
    text-decoration: none;
    line-height: 1.5;
}
.ci-value:hover { color: var(--or-dark); }

.form-wrap-vr {
    background: var(--noir-3);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 2.5rem;
}

.vr-input {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(201,168,76,0.2) !important;
    color: var(--ivoire) !important;
    border-radius: 0 !important;
    padding: 0.85rem 1rem !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    transition: border-color var(--transition) !important;
}
.vr-input:focus {
    border-color: var(--or) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08) !important;
    background: rgba(255,255,255,0.07) !important;
}
.vr-input::placeholder { color: rgba(154,144,128,0.7) !important; }
.vr-input option { background: #1a170f; color: var(--ivoire); }
textarea.vr-input { resize: vertical; min-height: 120px; }

.vr-check-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gris);
    line-height: 1.5;
}
.vr-check-label a { color: var(--or); text-decoration: none; }
.vr-check-label a:hover { color: var(--or-light); }

/* ============================================================
   FOOTER
============================================================ */
#footer-vr {
    background: var(--noir);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 0 2rem;
}

.footer-desc {
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(248,243,234,0.4);
    line-height: 1.8;
    max-width: 280px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--or);
    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(248,243,234,0.45);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--or); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-contact a, .footer-contact span {
    color: rgba(248,243,234,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(--or); }
.footer-contact i { color: var(--or); flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom-vr {
    border-top: 1px solid rgba(201,168,76,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(248,243,234,0.2);
    margin: 0;
}
.footer-bottom-vr a { color: var(--or); text-decoration: none; }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox-vr {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,8,6,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: var(--or); font-size: 2.5rem; cursor: pointer;
}
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(10,8,6,0.7); border: 1px solid rgba(201,168,76,0.3);
    color: var(--or); 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(--or); color: var(--noir); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767px) {
    .section-dark, .section-light, .section-tarifs { padding: 5rem 0; }
    .section-parallax { padding: 5rem 0; background-attachment: scroll; }
    #hero .hero-bg { background-attachment: scroll; }
    .img-frame img { height: 320px; }
    .rooftop-imgs { height: 260px; }
    .form-wrap-vr { padding: 2rem 1.2rem; }
    .gold-rule { margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-gold, .hero-actions .btn-ghost { text-align: center; }
}

/* Anim entrée hero */
@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; }

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

.sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--noir-2);
    margin-bottom: 0.5rem;
    font-style: italic;
}
