    /* ── RESET & VARIABLES ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #F5EDE0;
      --parchment: #EDE0C8;
      --limestone: #C8B89A;
      --stone: #9B8B72;
      --deep: #6B5440;
      --earth: #3A2416;
      --dark: #1A0A03;
      --sage: #72876A;
      --gold: #A8800A;
      --goldl: #C9A84C;
      --terra: #A8602A;
      --white: #FDFAF5;
    }
    html, body { overflow-x: hidden; }
    html { scroll-behavior: smooth; font-size: 17px; }
    body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--earth); font-weight: 300; }
    img { display: block; max-width: 100%; }

    /* ── NAVIGATION ── */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      min-height: 72px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 52px; transition: background .5s, box-shadow .5s;
      background: rgba(26,10,3,.97); box-shadow: 0 1px 0 rgba(255,255,255,.06);
    }
    #mainNav.scrolled { background: rgba(26,10,3,.97); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
    .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-logo img { width: 40px; height: 40px; border-radius: 50%; opacity: .9; }
    .nav-logo-main { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; font-weight: 300; color: var(--white); display: block; }
    .nav-logo-sub { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--goldl); display: block; }
    .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
    .nav-links a { color: rgba(255,255,255,.90); text-decoration: none; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; transition: color .25s; white-space: nowrap; }
    .nav-links a:hover { color: var(--goldl); }
    .nav-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.78); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; font-family: 'Jost', sans-serif; white-space: nowrap; transition: color .25s; padding: 0; }
    .nav-btn:hover { color: var(--goldl); }
    .nav-cta { border: 1px solid rgba(255,255,255,.35) !important; padding: 8px 20px !important; }
    .nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }
    .nav-cta-btn { border: 1px solid rgba(255,255,255,.35); padding: 8px 20px; }
    .nav-cta-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 26px; height: 1.5px; background: var(--white); }
    .lang-switch { color: rgba(255,255,255,.82); text-decoration: none; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; border: 1px solid rgba(255,255,255,.40); padding: 5px 10px; border-radius: 2px; transition: all .25s; margin-left: 8px; }
    .lang-switch:hover { color: var(--goldl); border-color: var(--goldl); }

    /* ── HERO ── */
    .hero {
      position: relative; height: 100vh; min-height: 680px;
      display: flex; align-items: flex-end; overflow: hidden;
      background: var(--dark);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('DJI_0391.JPG');
      background-image: image-set(url('DJI_0391.webp') type('image/webp'), url('DJI_0391.JPG') type('image/jpeg'));
      background-size: cover; background-position: center 55%;
      animation: slow-zoom 22s ease-in-out infinite alternate;
    }
    @keyframes slow-zoom { from { transform: scale(1.0); } to { transform: scale(1.07); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(20,8,2,.90) 0%, rgba(20,8,2,.4) 45%, rgba(20,8,2,.08) 100%);
    }
    .hero-content {
      position: relative; width: 100%; padding: 0 52px 80px;
      display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
    }
    .hero-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; animation: fadeup 1s ease .3s both; }
    .hero-label-line { width: 36px; height: 1px; background: rgba(255,255,255,.55); }
    .hero-label span { font-size: .74rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.92); font-weight: 500; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
    h1.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,7vw,6rem); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.05; animation: fadeup 1s ease .5s both; }
    .hero-sub { font-size: .76rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.70); margin-top: 14px; animation: fadeup 1s ease .7s both; }
    .hero-right { text-align: right; min-width: 280px; animation: fadeup 1s ease .9s both; }
    .hero-desc { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1rem,1.5vw,1.2rem); color: rgba(255,255,255,.88); line-height: 1.8; margin-bottom: 28px; max-width: 340px; margin-left: auto; }
    .btn-gold { display: inline-block; background: var(--gold); color: var(--white); padding: 14px 36px; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; text-decoration: none; border: 1px solid var(--gold); transition: all .3s; }
    .btn-gold:hover { background: transparent; }
    @keyframes fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* ── LAYOUT ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 52px; }
    .container-wide { max-width: 1440px; margin: 0 auto; padding: 0 52px; }
    section { padding: 110px 0; scroll-margin-top: 80px; }
    .eyebrow { font-size: .74rem; letter-spacing: .32em; text-transform: uppercase; color: var(--terra); font-weight: 500; margin-bottom: 12px; }
    .eyebrow-gold { color: var(--goldl); }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.15; color: var(--earth); }
    .section-title em { font-style: italic; }
    .title-light { color: var(--white); }
    .rule { width: 44px; height: 1px; background: var(--gold); margin: 22px 0; }
    .rule-center { margin: 22px auto; }
    .body-text { font-size: 1.05rem; line-height: 1.88; color: var(--deep); font-weight: 300; }
    .body-light { color: var(--limestone); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }

    /* ── INTRO ── */
    .intro { background: var(--white); }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
    .intro-media { position: relative; }
    .intro-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
    .intro-img-over { position: absolute; width: 52%; aspect-ratio: 16/10; object-fit: cover; bottom: -32px; right: -32px; border: 8px solid var(--white); }
    .intro-badge {
      position: absolute; top: 28px; left: -28px;
      width: 104px; height: 104px; background: var(--earth); border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 3px;
    }
    .intro-badge-year { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--goldl); line-height: 1; }
    .intro-badge-label { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--limestone); line-height: 1.4; }
    .intro-text { padding-left: 8px; }
    .history-box { margin-top: 32px; padding: 26px 28px; background: var(--cream); border-left: 2px solid var(--gold); }
    .history-box p { font-size: .96rem; line-height: 1.85; color: var(--deep); }

    /* ── EXCLUSIVE BANNER ── */
    .exclusive { background: var(--earth); padding: 80px 0; }
    .exclusive-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 60px; align-items: center; }
    .exc-left { text-align: right; }
    .exc-right { text-align: left; }
    .exc-center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .exc-line { width: 1px; height: 72px; background: linear-gradient(to bottom, transparent, var(--goldl), transparent); }
    .exc-icon { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .exc-icon svg { width: 22px; height: 22px; color: var(--goldl); }
    .exc-headline { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--white); font-weight: 300; line-height: 1.4; margin-bottom: 10px; }
    .exc-body { font-size: .93rem; color: var(--limestone); line-height: 1.78; }

    /* ── SPECS ── */
    .specs { background: var(--cream); }
    .specs-header { text-align: center; margin-bottom: 64px; }
    .specs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
    .spec-item { background: var(--white); padding: 44px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: background .3s; cursor: default; }
    .spec-item:hover { background: var(--earth); }
    .spec-item:hover .spec-num, .spec-item:hover .spec-ico { color: var(--goldl); }
    .spec-item:hover .spec-lbl { color: var(--limestone); }
    .spec-ico { color: var(--sage); width: 30px; height: 30px; transition: color .3s; fill: none; stroke: currentColor; stroke-width: 1.3; }
    .spec-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--earth); line-height: 1; transition: color .3s; }
    .spec-unit { font-size: .72rem; color: var(--stone); }
    .spec-lbl { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--deep); font-weight: 500; transition: color .3s; }

    /* ── PHOTO MOSAIC ── */
    .espaces { background: var(--white); }
    .espaces-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 52px; }
    .mosaic { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 380px 260px 300px; gap: 8px; }
    .mc { position: relative; overflow: hidden; background: var(--parchment); cursor: pointer; }
    .mc-1 { grid-column: span 8; }
    .mc-2 { grid-column: span 4; grid-row: span 2; }
    .mc-3 { grid-column: span 4; }
    .mc-4 { grid-column: span 4; }
    .mc-5 { grid-column: span 4; }
    .mc-6 { grid-column: span 4; }
    .mc-7 { grid-column: span 4; }
    .mc img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
    .mc:hover img { transform: scale(1.05); }
    .mc-caption { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,2,.82) 0%, rgba(20,8,2,.01) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
    .mc-name { font-family: 'Cormorant Garamond', serif; color: var(--white); font-size: 1.3rem; font-weight: 400; margin-bottom: 4px; }
    .mc-1 .mc-name { font-size: 1.9rem; }
    .mc-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s, opacity .4s; }
    .mc:hover .mc-desc { max-height: 56px; opacity: 1; }


    /* ── SITUATION ── */
    .situation { padding: 0; }
    .sit-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
    .sit-photo { position: relative; overflow: hidden; background: var(--dark); }
    .sit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
    .sit-caption { position: absolute; bottom: 28px; left: 28px; background: rgba(20,8,2,.82); backdrop-filter: blur(8px); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
    .sit-caption svg { width: 16px; height: 16px; color: var(--goldl); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; }
    .sit-caption span { font-size: .80rem; color: var(--limestone); }
    .sit-content { background: var(--dark); padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
    .sit-list { list-style: none; margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
    .sit-list li { display: flex; flex-direction: column; gap: 3px; }
    .sit-list li::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); margin-bottom: 6px; }
    .sit-list li strong { font-size: .9rem; font-weight: 500; color: var(--white); }
    .sit-list li span { font-size: .86rem; color: var(--limestone); }
    .sit-tags-wrap { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); }
    .sit-tags-label { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--limestone); margin-bottom: 12px; font-weight: 500; }
    .sit-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .sit-tag { font-size: .76rem; color: var(--limestone); border: 1px solid rgba(255,255,255,.22); padding: 5px 13px; }

    /* ── DISPO BAR ── */
    .dispo { background: var(--earth); padding: 68px 0; }
    .dispo-inner { display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; }
    .dispo-item { text-align: center; }
    .dispo-ico { width: 32px; height: 32px; color: var(--goldl); margin: 0 auto 14px; fill: none; stroke: currentColor; stroke-width: 1.3; }
    .dispo-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); font-weight: 300; margin-bottom: 4px; }
    .dispo-lbl { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--limestone); font-weight: 500; }
    .dispo-sep { width: 1px; height: 56px; background: rgba(255,255,255,.1); }

    /* ── CONTACT ── */
    .contact { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
    .contact-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--deep); line-height: 1.8; margin: 18px 0 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 20px; }
    .c-detail { display: flex; gap: 14px; align-items: flex-start; }
    .c-detail svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; fill: none; stroke: currentColor; stroke-width: 1.5; }
    .c-detail-text { font-size: .95rem; color: var(--deep); line-height: 1.65; }
    .c-detail-text strong { color: var(--earth); font-weight: 500; display: block; margin-bottom: 2px; }
    .c-detail-text a { color: var(--deep); text-decoration: none; transition: color .2s; }
    .c-detail-text a:hover { color: var(--terra); }
    .contact-form { display: flex; flex-direction: column; gap: 18px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--deep); font-weight: 500; }
    .form-group input, .form-group select, .form-group textarea {
      background: var(--cream); border: 1px solid var(--parchment); color: var(--earth);
      padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 300;
      outline: none; transition: border-color .25s; width: 100%;
    }
    .form-group select { appearance: none; cursor: pointer; }
    .form-group textarea { min-height: 110px; resize: vertical; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
    .form-submit {
      align-self: flex-start; background: var(--gold); color: var(--white);
      border: 1px solid var(--gold); padding: 14px 44px;
      font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
      cursor: pointer; font-family: 'Jost', sans-serif; transition: all .3s;
    }
    .form-submit:hover { background: var(--earth); border-color: var(--earth); }

    /* ── FOOTER ── */
    footer { background: var(--dark); padding: 52px; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 36px; }
    .footer-brand { display: flex; align-items: center; gap: 14px; }
    .footer-brand img { width: 44px; height: 44px; border-radius: 50%; opacity: .7; }
    .footer-brand-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,.75); }
    .footer-brand-text small { display: block; font-style: normal; font-family: 'Jost', sans-serif; font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; }
    .footer-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .footer-nav a { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .footer-nav a:hover { color: rgba(255,255,255,.88); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: .76rem; color: rgba(255,255,255,.45); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: .76rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-legal a:hover { color: rgba(255,255,255,.78); }

    /* ── VIDEO ── */
    .video-section { background: var(--dark); padding: 88px 0; }
    .video-header { text-align: center; margin-bottom: 44px; }
    .video-header .eyebrow { color: var(--goldl); }
    .video-header .section-title { color: var(--white); }
    .video-wrap { position: relative; width: 100%; max-width: 920px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; box-shadow: 0 28px 80px rgba(0,0,0,.7); cursor: pointer; }
    .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .video-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
    .video-wrap:hover .video-thumb { transform: scale(1.03); }
    .video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
    .video-play-btn { width: 80px; height: 80px; background: rgba(168,128,10,.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s; box-shadow: 0 6px 32px rgba(0,0,0,.5); }
    .video-wrap:hover .video-play-btn { transform: scale(1.12); background: var(--gold); }
    .video-play-btn svg { width: 32px; height: 32px; fill: var(--white); margin-left: 5px; }
    .video-cta { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(20,8,2,.7); color: rgba(255,255,255,.88); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; padding: 7px 18px; border-radius: 2px; white-space: nowrap; pointer-events: none; }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      #mainNav { padding: 0 28px; flex-wrap: wrap; }
      .nav-links { display: none; width: 100%; flex-direction: column; gap: 0; background: rgba(18,14,10,.97); padding: 12px 0 18px; }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 10px 28px; font-size: .65rem; }
      .nav-cta { border: none !important; }
      .hamburger { display: flex; }
      .container, .container-wide { padding: 0 28px; }
      section { padding: 80px 0; }
      .hero-content { padding: 0 28px 60px; flex-direction: column; align-items: flex-start; }
      .hero-right { text-align: left; }
      .hero-desc { margin-left: 0; }
      .intro-grid { grid-template-columns: 1fr; gap: 56px; }
      .intro-img-over { display: none; }
      .intro-badge { left: 0; }
      .intro-text { padding-left: 0; }
      .exclusive-inner { grid-template-columns: 1fr; text-align: center; }
      .exc-left, .exc-right { text-align: center; }
      .exc-center { flex-direction: row; justify-content: center; }
      .exc-line { width: 60px; height: 1px; }
      .specs-grid { grid-template-columns: repeat(2,1fr); }
      .espaces-header { grid-template-columns: 1fr; gap: 24px; }
      .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .mc-1, .mc-2, .mc-3, .mc-4, .mc-5, .mc-6, .mc-7 { grid-column: span 2; min-height: 240px; }
      .sit-grid { grid-template-columns: 1fr; }
      .sit-photo { min-height: 320px; }
      .sit-content { padding: 56px 36px; }
      .sit-list { grid-template-columns: 1fr; }
      .dispo-inner { gap: 40px; }
      .dispo-sep { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 52px; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 40px 28px; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .footer-nav { justify-content: center; }
      .footer-bottom { flex-direction: column; align-items: center; }
    }
    @media (max-width: 600px) {
      h1.hero-title { font-size: 2.8rem; }
      .specs-grid { grid-template-columns: 1fr 1fr; }
      .mosaic { grid-template-columns: 1fr; }
      .mc-1, .mc-2, .mc-3, .mc-4, .mc-5, .mc-6, .mc-7 { grid-column: span 1; }
    }

    /* ── GALERIE / VISITE UNIFIÉE ── */
    .galerie { background: var(--dark); padding: 100px 0 120px; }

    .visite-head { text-align: center; margin-bottom: 72px; }
    .visite-head .rule { width: 44px; height: 1px; background: var(--gold); margin: 18px auto; }
    .visite-head .eyebrow { color: var(--goldl); }
    .visite-head .section-title { color: var(--white); }

    /* ── Groupe ── */
    .vg { margin-bottom: 72px; }
    .vg:last-child { margin-bottom: 0; }
    .vg-header {
      display: flex; align-items: baseline; justify-content: space-between;
      flex-wrap: wrap; gap: 8px 24px; margin-bottom: 20px; padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .vg-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300; font-style: italic; color: var(--white);
    }
    .vg-count { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); white-space: normal; text-align: right; }

    /* ── Grille de cartes ── */
    .vg-grid { display: grid; gap: 3px; }
    .vg-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .vg-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
    .vg-grid.cols-3-ext { grid-template-columns: repeat(3, 1fr); }

    /* ── Carte ── */
    .vg-card {
      position: relative; overflow: hidden; aspect-ratio: 4/3;
      background: var(--earth); cursor: pointer; outline: none;
    }
    .vg-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .65s ease, filter .65s ease; filter: brightness(.78);
    }
    .vg-card:hover img, .vg-card.active img { transform: scale(1.06); filter: brightness(.5); }
    .vg-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(20,8,2,.85) 0%, rgba(20,8,2,.05) 55%);
      transition: background .4s;
    }
    .vg-card.active .vg-card-overlay { background: linear-gradient(to top, rgba(168,128,10,.45) 0%, rgba(168,128,10,.08) 100%); }
    .vg-card.active::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--goldl); pointer-events: none; }
    .vg-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; }
    .vg-card-eyebrow { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--goldl); font-weight: 500; margin-bottom: 4px; opacity: .85; }
    .vg-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 4px; }
    .vg-card-spec { font-size: .74rem; color: rgba(255,255,255,.55); line-height: 1.4; max-height: 0; overflow: hidden; transition: max-height .35s ease, opacity .35s ease; opacity: 0; }
    .vg-card:hover .vg-card-spec, .vg-card.active .vg-card-spec { max-height: 44px; opacity: 1; }
    .vg-card-close {
      position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border-radius: 50%;
      background: rgba(201,168,76,.9); display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .25s;
    }
    .vg-card-close svg { width: 14px; height: 14px; color: #fff; }
    .vg-card.active .vg-card-close { opacity: 1; }

    /* ── Tiroir ── */
    .vg-drawer { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4,0,.2,1); }
    .vg-drawer.open { max-height: 2000px; }
    .vg-drawer-inner { padding: 3px 0; border-top: 2px solid var(--goldl); }
    .drawer-header {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 20px; padding: 22px 28px 18px; background: rgba(255,255,255,.03);
    }
    .drawer-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--white); }
    .drawer-header p { font-size: .88rem; color: var(--limestone); line-height: 1.7; margin-top: 6px; max-width: 680px; }
    .drawer-close-btn {
      flex-shrink: 0; background: none; border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.5); padding: 7px 14px; font-size: .7rem;
      letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
      font-family: 'Jost', sans-serif; transition: all .2s; white-space: nowrap; margin-top: 4px;
    }
    .drawer-close-btn:hover { border-color: var(--goldl); color: var(--goldl); }

    /* ── Grille photos dans tiroir ── */
    .gallery-grid { display: grid; gap: 3px; padding: 3px; }
    .gallery-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
    .g-item { position: relative; overflow: hidden; background: var(--earth); cursor: pointer; aspect-ratio: 4/3; }
    .g-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
    .g-item:hover img { transform: scale(1.05); }
    .g-item-overlay { position: absolute; inset: 0; background: rgba(20,8,2,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
    .g-item:hover .g-item-overlay { background: rgba(20,8,2,.35); }
    .g-zoom-icon { width: 28px; height: 28px; color: #fff; opacity: 0; transition: opacity .3s; }
    .g-item:hover .g-zoom-icon { opacity: 1; }
    .g-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px; background: linear-gradient(to top, rgba(20,8,2,.8), transparent); font-size: .74rem; color: rgba(255,255,255,.75); opacity: 0; transition: opacity .3s; letter-spacing: .06em; }
    .g-item:hover .g-caption { opacity: 1; }

    /* ── Vidéo ── */
    .vg-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 20px 0; }
    .video-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 2px; cursor: pointer; box-shadow: 0 12px 48px rgba(0,0,0,.4); }
    .video-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .video-wrap:hover img { transform: scale(1.03); }
    .video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
    .video-play-circle { width: 72px; height: 72px; background: rgba(168,128,10,.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s; box-shadow: 0 6px 28px rgba(0,0,0,.5); }
    .video-wrap:hover .video-play-circle { transform: scale(1.1); background: var(--gold); }
    .video-play-circle svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
    .video-label { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: rgba(20,8,2,.65); color: rgba(255,255,255,.8); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; padding: 6px 16px; white-space: nowrap; }

    /* ── LIGHTBOX ── */
    .lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(10,4,1,.96); cursor: zoom-out; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
    .lightbox.open { display: flex; }
    .lightbox-wrap { display: flex; flex-direction: column; align-items: center; max-height: 95vh; }
    .lb-room-info { text-align: center; padding: 0 20px 14px; max-width: 720px; display: none; }
    .lb-room-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem,2.5vw,1.7rem); font-weight: 300; color: #fff; letter-spacing: .04em; margin-bottom: 5px; }
    .lb-room-desc { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.7; letter-spacing: .04em; }
    .lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 88vh; }
    .lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
    .lb-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; opacity: .7; transition: opacity .2s; }
    .lb-close:hover { opacity: 1; }
    .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; width: 44px; height: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; font-size: 1.1rem; }
    .lb-nav:hover { background: rgba(168,128,10,.7); }
    .lb-prev { left: -56px; }
    .lb-next { right: -56px; }
    @media (max-width: 768px) {
      .lb-prev { left: 8px; }
      .lb-next { right: 8px; }
      .lb-nav { background: rgba(0,0,0,.45); width: 38px; height: 38px; font-size: 1rem; }
    }
    .lb-caption { position: absolute; bottom: -32px; left: 0; right: 0; text-align: center; font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .08em; }
    .lb-counter { position: absolute; top: -34px; left: 0; font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .2em; }

    @media (max-width: 1024px) {
      .vg-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 720px) {
      .vg-grid.cols-3, .vg-grid.cols-3-ext { grid-template-columns: repeat(2, 1fr); }
      .vg-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid.grid-3, .gallery-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
      .g-item.wide { grid-column: span 2; }
      .vg-video-grid { grid-template-columns: 1fr; }
      .lb-prev { left: 4px; }
      .lb-next { right: 4px; }
      .lightbox-img-wrap { max-width: 100vw; max-height: 60vh; }
      .lightbox-img-wrap img { max-width: 100vw; max-height: 60vh; }
      .lb-room-desc { display: none; }
      .lb-room-info { padding-bottom: 8px; }
    }
    @media (max-width: 480px) {
      .vg-grid.cols-3, .vg-grid.cols-3-ext, .vg-grid.cols-5 { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
    }


    /* ── PLATEFORMES DE RÉSERVATION ── */
    .booking-platforms { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
    .booking-platforms-label { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
    .booking-links { display: flex; gap: 12px; flex-wrap: wrap; }
    .platform-btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 10px 18px; border-radius: 3px; text-decoration: none;
      font-size: .62rem; font-weight: 600; letter-spacing: .08em;
      transition: transform .2s, box-shadow .2s;
    }
    .platform-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
    .platform-btn svg { flex-shrink: 0; }
    .platform-btn.airbnb { background: #FF5A5F; color: #fff; }
    .platform-btn.vrbo   { background: #1C6ADB; color: #fff; }
    .platform-btn.figaro { background: #1B2A4A; color: #fff; font-family: Georgia, serif; font-style: italic; letter-spacing: .04em; }
    .platform-btn.perigord { background: var(--sage); color: #fff; }
    .booking-direct-note { margin-top: 12px; font-size: .56rem; color: var(--stone); letter-spacing: .06em; font-style: italic; }
    .booking-direct-note span { color: var(--goldl); }

    /* ── TESTIMONIALS ─────────────────────────────── */
    .temoignages { padding: var(--section-pad) 0; background: #f0ebe0; }
    .temoignages-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
    .temoignages-header { text-align: center; margin-bottom: 56px; }
    .temoignages-header .eyebrow { color: var(--gold); }
    .temoignages-header .section-title { color: #1e160d; margin: 10px 0 18px; }
    .temoignages-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto; }
    .temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .temoignage-card {
      background: #fff;
      border: 1px solid rgba(168,128,10,.18);
      border-bottom: 3px solid rgba(168,128,10,.3);
      padding: 28px 24px 22px;
      position: relative;
      transition: border-color .3s, transform .3s, box-shadow .3s;
      display: flex; flex-direction: column;
      box-shadow: 0 2px 16px rgba(60,35,10,.07);
    }

    a.temoignage-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
    a.temoignage-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    .temoignage-card:hover { border-color: rgba(168,128,10,.45); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(60,35,10,.13); }
    .temoignage-deco { position: absolute; top: 14px; right: 18px; font-family: 'Cormorant Garamond',serif; font-size: 5rem; line-height: 1; color: rgba(168,128,10,.13); pointer-events: none; user-select: none; }
    .temoignage-stars { color: var(--gold); font-size: .7rem; letter-spacing: 4px; margin-bottom: 14px; }
    .temoignage-quote { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 500; line-height: 1.65; color: #2c2012; font-style: italic; flex: 1; margin-bottom: 22px; }
    .temoignage-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(168,128,10,.15); padding-top: 16px; }
    .temoignage-name { font-family: 'Jost',sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
    .temoignage-origin { font-size: .6rem; letter-spacing: .06em; color: #8a7060; margin-top: 3px; }
    .temoignage-meta { text-align: right; }
    .temoignage-platform { font-family: 'Jost',sans-serif; font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: #b0956a; }
    .temoignage-date { font-size: .58rem; color: #8a7060; margin-top: 3px; }

    /* ── SERVICES ── */
    .services-section { background: var(--white); padding: var(--section-pad) 0; border-top: 1px solid rgba(0,0,0,.05); }
    .services-intro-text { font-size: 1rem; color: var(--stone); line-height: 1.72; max-width: 580px; margin: 20px auto 0; text-align: center; }
    .services-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 52px; }
    .service-item { text-align: center; padding: 32px 20px; border-left: 1px solid rgba(0,0,0,.06); }
    .service-item:first-child { border-left: none; }
    .service-rule { width: 28px; height: 1px; background: var(--gold); margin: 0 auto 18px; }
    .service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--earth); font-weight: 400; line-height: 1.3; margin-bottom: 5px; }
    .service-sub { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(3,1fr); } .service-item:nth-child(4) { border-left: none; } }
    @media (max-width: 560px) { .services-grid { grid-template-columns: repeat(2,1fr); } .service-item:nth-child(3) { border-left: none; } }

    @media (max-width: 900px) { .temoignages-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 560px) { .temoignages-grid { grid-template-columns: 1fr; } }

    /* ── Leaflet map ── */
    .sit-map-wrap { width: 65%; height: 380px; position: relative; margin: 40px auto 0; border: 1px solid rgba(200,168,75,.18); border-radius: 2px; }
    #chateau-map { width: 100%; height: 100%; }
    .leaflet-popup-content-wrapper { background: #1a120a; border: 1px solid rgba(200,168,75,.5); border-radius: 3px; box-shadow: 0 4px 24px rgba(0,0,0,.5); padding: 0; }
    .leaflet-popup-tip { background: #1a120a; }
    .leaflet-popup-content { margin: 12px 16px; }
    .lp-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: #e8d9bf; letter-spacing: .04em; }
    .lp-sub  { font-size: .72rem; color: rgba(200,168,75,.8); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
    .cm-wrap { display: flex; flex-direction: column; align-items: center; }
    .cm-badge { background: #c8a84b; color: #1a120a; font-family: 'Cormorant Garamond', serif; font-size: .85rem; font-weight: 600; letter-spacing: .05em; white-space: nowrap; padding: 4px 10px 3px; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,.45); }
    .cm-pin { width: 2px; height: 12px; background: #c8a84b; }
    .cm-dot { width: 8px; height: 8px; border-radius: 50%; background: #c8a84b; margin-top: -1px; box-shadow: 0 0 0 2px #fff; }
    .poi-wrap { display: flex; flex-direction: column; align-items: center; }
    .poi-dot { width: 7px; height: 7px; border-radius: 50%; background: #c8a84b; box-shadow: 0 0 0 2px rgba(200,168,75,.35); }
    .poi-label { font-size: .62rem; color: #1a120a; background: rgba(255,255,255,.88); padding: 1px 5px; border-radius: 2px; white-space: nowrap; margin-top: 2px; font-weight: 600; letter-spacing: .03em; }
    @media (max-width: 900px) { .sit-map-wrap { width: 90%; height: 280px; } }
