    /* ── TOKENS ──────────────────────────────────────────────────────────── */
    :root {
      --dark:   #0b1f22;
      --deep:   #061419;
      --turq:   #00b3b8;
      --turq2:  #007f83;
      --sand:   #f5ead7;
      --gold:   #c48a36;
      --gold2:  #e8a840;
      --white:  #fff;
      --muted:  #6b7d7e;
      --light:  #f6fbfb;
      --line:   rgba(0,0,0,.08);
      /* ── PALETTE UNIFIÉE — sections « Nos villas » & « Proximités » ──────── */
      --vr-ocean:      #0B4B4E;   /* titres — teal foncé          */
      --vr-ocean-soft: #14545F;   /* profondeur dégradés / médias */
      --vr-turq:       #0A868D;   /* boutons — turquoise          */
      --vr-gold:       #B2925B;   /* accents — or                 */
      --vr-sand:       #EFF7F7;   /* fond menthe pâle             */
      --vr-ink:        #22302F;   /* texte principal              */
      --vr-card:       #FFFFFF;   /* cartes                       */
    }

    /* ── RESET ───────────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      color: var(--dark);
      background: #fbfaf6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── TOPBAR ──────────────────────────────────────────────────────────── */
    .top {
      position: fixed; z-index: 100;
      top: 0; left: 0; right: 0;
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 5vw;
      transition: background .4s, padding .4s;
    }
    .top.scrolled {
      background: rgba(11,31,34,.96);
      backdrop-filter: blur(12px);
      padding: 14px 5vw;
      box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .brand {
      display: inline-flex;
      align-items: center;
    }
    .brand img {
      height: 46px;
      width: auto;
      display: block;
    }
    nav { display: flex; gap: 28px; align-items: center; }
    nav a {
      color: rgba(255,255,255,.85);
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .04em;
      transition: color .2s;
    }
    nav a:hover { color: var(--gold2); }
    .pill {
      background: var(--gold);
      color: white !important;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: .85rem !important;
      transition: background .2s, transform .2s !important;
    }
    .pill:hover { background: var(--gold2) !important; transform: translateY(-1px); }

    /* ── HERO ────────────────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('assets/img/ameli-06.webp') center/cover no-repeat;
      transform: scale(1.05);
      filter: saturate(1.15) brightness(.75);
      transition: transform 8s ease;
    }
    .hero:hover .hero-bg { transform: scale(1.08); }
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      background: var(--deep);
      filter: saturate(1.15) brightness(.75);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(6,20,25,.78) 0%,
        rgba(6,20,25,.45) 50%,
        rgba(6,20,25,.15) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      width: min(1160px, 90vw);
      margin: 0 auto;
      padding: 120px 0 80px;
      color: white;
    }
    .eyebrow {
      font-family: Arial, sans-serif;
      color: var(--gold2);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: .22em;
      font-size: .78rem;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(3rem, 7.5vw, 7.5rem);
      line-height: .9;
      font-weight: 400;
      font-style: italic;
      max-width: 820px;
      margin-bottom: 28px;
    }
    .hero h1 em { color: var(--gold2); font-style: normal; }
    .hero-sub {
      font-family: Arial, sans-serif;
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      line-height: 1.6;
      max-width: 580px;
      color: rgba(255,255,255,.85);
      margin-bottom: 38px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--turq);
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 16px 28px;
      border-radius: 999px;
      transition: background .2s, transform .2s;
      letter-spacing: .02em;
    }
    .btn-primary:hover { background: var(--turq2); transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.12);
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 16px 28px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.3);
      backdrop-filter: blur(8px);
      transition: background .2s, transform .2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

    /* ── BOUTONS DOUBLES (fiches condos) ──────────────────────────────────── */
    .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-outline {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: transparent;
      color: var(--turq2);
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 16px 28px;
      border-radius: 999px;
      border: 2px solid var(--turq);
      transition: background .2s, color .2s, transform .2s;
    }
    .btn-outline:hover { background: var(--turq); color: white; transform: translateY(-2px); }
    .btn-ghost-light {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--light);
      color: var(--dark);
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 16px 28px;
      border-radius: 999px;
      border: 1px solid var(--line);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .btn-ghost-light:hover { background: #e9f3f3; transform: translateY(-2px); }
    /* Fiches condos : boutons empilés verticalement et centrés */
    #ayook .btn-row, #ameli .btn-row {
      flex-direction: column;
      align-items: center;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      z-index: 2; text-align: center; color: rgba(255,255,255,.6);
      font-family: Arial, sans-serif; font-size: .75rem; letter-spacing: .1em;
      animation: bounce 2.2s infinite;
    }
    .scroll-hint::after {
      content: "↓"; display: block; font-size: 1.4rem; margin-top: 4px;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTIONS ────────────────────────────────────────────────────────── */
    section { padding: 90px 5vw; }
    .wrap { max-width: 1180px; margin: 0 auto; }

    .section-label {
      font-family: Arial, sans-serif;
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: .18em;
      font-size: .78rem;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(2.2rem, 4.5vw, 4.5rem);
      line-height: .95;
      font-weight: 400;
      font-style: italic;
      margin-bottom: 20px;
    }
    .section-lead {
      font-family: Arial, sans-serif;
      font-size: 1.1rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 780px;
    }

    /* ── PROPERTY CARDS ──────────────────────────────────────────────────── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 44px;
    }
    .prop-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 12px 50px rgba(11,31,34,.1);
      border: 1px solid var(--line);
      transition: transform .3s, box-shadow .3s;
    }
    .prop-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 70px rgba(11,31,34,.18);
    }
    .prop-card img {
      width: 100%; height: 260px; object-fit: cover;
      transition: transform .5s;
    }
    .prop-card:hover img { transform: scale(1.04); }

    /* ── SECTION #proprietes : grille 2 colonnes centrée + en-tête centré ─── */
    #proprietes .cards-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    #proprietes .prop-card img { height: 320px; }
    #proprietes .section-label,
    #proprietes .section-title,
    #proprietes .section-lead { text-align: center; }
    #proprietes .section-lead { margin-left: auto; margin-right: auto; }
    .card-img-wrap { overflow: hidden; }
    .card-body { padding: 26px; }
    .card-tag {
      font-family: Arial, sans-serif;
      color: var(--gold);
      font-weight: 900;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .card-body h3 {
      font-size: 1.6rem;
      font-style: italic;
      margin: 10px 0 12px;
    }
    .card-body p {
      font-family: Arial, sans-serif;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .card-features {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
    }
    .card-features span {
      background: var(--light);
      color: var(--dark);
      border-radius: 999px;
      padding: 6px 12px;
      font-family: Arial, sans-serif;
      font-size: .82rem;
      font-weight: 700;
    }
    .card-btn {
      display: inline-flex;
      background: var(--dark);
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .88rem;
      padding: 12px 22px;
      border-radius: 999px;
      transition: background .2s;
    }
    .card-btn:hover { background: var(--turq); }

    /* ── À PROXIMITÉ (Tulum) ──────────────────────────────────────────────── */
    .nearby-section { padding: 90px 5vw; background: var(--sand); }
    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 44px;
    }
    .nearby-grid .prop-card img { height: 200px; }
    .nearby-grid .card-body { padding: 22px; }
    .nearby-grid .card-body h3 { font-size: 1.4rem; }
    @media (max-width: 1024px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px)  { .nearby-grid { grid-template-columns: 1fr; } }

    /* ── AU CŒUR DE TOUT / PROXIMITÉS (#proximites) ───────────────────────── */
    #proximites {
      background: var(--vr-sand);
      color: var(--vr-ink);
      padding: 5rem 1.5rem 5.5rem;
      font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    }
    #proximites .prox-inner { max-width: 1100px; margin: 0 auto; }

    /* — En-tête de section — */
    #proximites .prox-eyebrow {
      display: block;
      letter-spacing: .28em;
      text-transform: uppercase;
      font-size: .78rem;
      color: var(--vr-gold);
      margin-bottom: .75rem;
      text-align: center;
    }
    #proximites h2 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 400;
      text-align: center;
      margin: 0 0 1rem;
      color: var(--vr-ocean);
    }
    #proximites .prox-intro {
      max-width: 640px;
      margin: 0 auto 3rem;
      text-align: center;
      line-height: 1.7;
      font-size: 1.05rem;
    }

    /* — Grille de cartes — */
    .prox-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
      gap: 1.5rem;
    }
    .prox-card {
      background: var(--vr-card);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(14, 59, 67, .10);
      display: flex;
      flex-direction: column;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .prox-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(14, 59, 67, .16);
    }
    .prox-media {
      position: relative;
      aspect-ratio: 16 / 9;
      background: var(--vr-ocean-soft);
    }
    .prox-media img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* — Badge de temps : l'élément signature de la section — */
    .prox-time {
      position: absolute;
      bottom: .85rem; left: .85rem;
      background: var(--vr-ocean);
      color: #fff;
      font-size: .82rem;
      letter-spacing: .05em;
      padding: .4rem .85rem;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.25);
    }
    .prox-time svg { width: 14px; height: 14px; flex: none; }
    .prox-time strong { font-weight: 600; }

    .prox-body { padding: 1.25rem 1.35rem 1.5rem; }
    .prox-body h3 {
      margin: 0 0 .45rem;
      font-family: Georgia, serif;
      font-weight: 500;
      font-size: 1.18rem;
      color: var(--vr-ocean);
    }
    .prox-body p {
      margin: 0;
      font-size: .95rem;
      line-height: 1.6;
      color: #4a5654;
    }
    .prox-season {
      display: inline-block;
      margin-top: .7rem;
      font-size: .8rem;
      color: var(--vr-gold);
      border: 1px solid var(--vr-gold);
      border-radius: 999px;
      padding: .25rem .7rem;
    }

    /* — Sous-titre du 2e niveau — */
    .prox-tier {
      margin: 3.2rem 0 1.4rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .prox-tier::before, .prox-tier::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(14, 59, 67, .18);
    }
    .prox-tier span {
      font-family: Georgia, serif;
      font-size: 1.25rem;
      color: var(--vr-ocean);
      white-space: nowrap;
    }

    /* — Note + CTA — */
    .prox-note {
      margin-top: 2.4rem;
      text-align: center;
      font-size: .85rem;
      color: #6b7674;
    }
    .prox-cta {
      display: block;
      width: max-content;
      margin: 2rem auto 0;
      background: var(--vr-turq);
      color: #fff;
      text-decoration: none;
      padding: .9rem 2.2rem;
      border-radius: 999px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: .85rem;
      transition: background .2s ease;
    }
    .prox-cta:hover { background: #086b70; }

    /* — Rendu mobile : 1 colonne garantie, aucun débordement jusqu'à 320px — */
    @media (max-width: 560px) {
      #proximites { padding: 3.5rem 1.1rem 4rem; }
      .prox-grid { grid-template-columns: 1fr; }
      .prox-tier span { white-space: normal; text-align: center; font-size: 1.1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .prox-card, .prox-card:hover { transition: none; transform: none; }
    }

    /* ── PROPERTY DETAIL ─────────────────────────────────────────────────── */
    .property-section { background: var(--light); }
    .property-section:nth-of-type(even) { background: white; }
    .prop-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 44px;
      align-items: center;
    }
    .prop-grid.reverse { direction: rtl; }
    .prop-grid.reverse > * { direction: ltr; }

    .photo-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .photo-mosaic img {
      width: 100%; height: 230px; object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 16px 45px rgba(0,0,0,.12);
      transition: transform .3s;
      cursor: pointer;
    }
    .photo-mosaic img:first-child {
      grid-column: span 2;
      height: 400px;
    }
    .photo-mosaic img:hover { transform: scale(1.02); }
    .gallery-cta {
      grid-column: 1 / -1;
      justify-self: center;
      margin-top: 4px;
    }

    .info-box {
      background: white;
      border-radius: 32px;
      padding: 38px;
      box-shadow: 0 16px 60px rgba(11,31,34,.1);
    }
    .property-section:nth-of-type(even) .info-box { background: var(--light); }
    .info-box h2 {
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      line-height: 1;
      font-style: italic;
      margin: 10px 0 18px;
    }
    .info-box .lead {
      font-family: Arial, sans-serif;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .amenities {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 28px;
    }
    .amenity {
      background: var(--light);
      border-radius: 14px;
      padding: 12px 16px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: .9rem;
      color: var(--dark);
    }
    .property-section:nth-of-type(even) .amenity { background: white; }

    /* ── GALLERY ─────────────────────────────────────────────────────────── */
    .gallery-section { background: var(--dark); color: white; }
    .gallery-section .section-title { color: white; }
    .gallery-section .section-lead { color: rgba(255,255,255,.6); }
    .gallery-tabs {
      display: flex; gap: 12px; margin: 28px 0 24px;
    }
    .gallery-tab {
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .85rem;
      padding: 10px 20px;
      border-radius: 999px;
      cursor: pointer;
      background: rgba(255,255,255,.1);
      color: rgba(255,255,255,.7);
      border: 1px solid rgba(255,255,255,.15);
      transition: all .2s;
    }
    .gallery-tab.active, .gallery-tab:hover {
      background: var(--turq);
      color: white;
      border-color: var(--turq);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .gallery-grid img {
      width: 100%; height: 210px; object-fit: cover;
      border-radius: 16px;
      cursor: pointer;
      transition: transform .25s, opacity .25s;
      opacity: .85;
    }
    .gallery-grid img:hover { transform: scale(1.03); opacity: 1; }
    .gallery-grid .gallery-video {
      width: 100%;
      height: 210px;
      object-fit: cover;
      border-radius: 16px;
      background: var(--deep);
      display: block;
    }

    /* ── VIDEOS ──────────────────────────────────────────────────────────── */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 32px;
    }
    .video-grid video {
      width: 100%;
      border-radius: 20px;
      background: #000;
      box-shadow: 0 16px 50px rgba(0,0,0,.25);
    }

    /* ── BOOKING ─────────────────────────────────────────────────────────── */
    .booking-section { background: var(--deep); color: white; }
    .booking-section .section-title { color: white; }
    .booking-section .section-lead { color: rgba(255,255,255,.6); }
    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 44px;
    }
    /* ── DISPONIBILITÉS TEMPS RÉEL ────────────────────────────────────────── */
    .avail-box {
      background: white;
      color: var(--dark);
      border-radius: 28px;
      padding: 28px;
    }
    .avail-box h3 {
      font-style: italic;
      font-size: 1.5rem;
      margin-bottom: 12px;
    }
    .avail-box > p {
      font-family: Arial, sans-serif;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .avail-group { margin-bottom: 22px; }
    .avail-group h4 {
      font-family: Arial, sans-serif;
      color: var(--gold);
      font-weight: 900;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 12px;
    }
    .avail-group .btn-row { gap: 10px; }
    .avail-note {
      font-family: Arial, sans-serif;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.5;
      background: var(--light);
      border-left: 3px solid var(--gold);
      border-radius: 12px;
      padding: 12px 16px;
    }

    .contact-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 28px;
      padding: 28px;
    }
    .contact-box h3 {
      font-style: italic;
      font-size: 1.5rem;
      margin-bottom: 8px;
      color: white;
    }
    .contact-box p {
      font-family: Arial, sans-serif;
      color: rgba(255,255,255,.55);
      font-size: .95rem;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .contact-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .whatsapp-btn {
      display: flex; align-items: center; gap: 12px;
      background: #25D366;
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 15px 22px;
      border-radius: 16px;
      transition: opacity .2s;
    }
    .whatsapp-btn:hover { opacity: .9; }
    .email-btn {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,.1);
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      padding: 15px 22px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.2);
      transition: background .2s;
    }
    .email-btn:hover { background: rgba(255,255,255,.18); }

    form { display: flex; flex-direction: column; gap: 10px; }
    form input, form select, form textarea {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 14px;
      padding: 14px 18px;
      color: white;
      font-family: Arial, sans-serif;
      font-size: .95rem;
      transition: border-color .2s;
    }
    form input:focus, form select:focus, form textarea:focus {
      outline: none;
      border-color: var(--turq);
    }
    form input::placeholder, form textarea::placeholder { color: rgba(255,255,255,.35); }
    form select option { background: var(--deep); }
    form button {
      background: var(--turq);
      color: white;
      font-family: Arial, sans-serif;
      font-weight: 900;
      font-size: 1rem;
      padding: 16px;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    form button:hover { background: var(--turq2); transform: translateY(-1px); }
    form button:disabled { opacity: .6; cursor: not-allowed; transform: none; }

    /* ── MESSAGES FORMULAIRE ──────────────────────────────────────────────── */
    .form-success {
      background: rgba(0,179,184,.12);
      border: 1px solid var(--turq);
      border-radius: 28px;
      padding: 36px 28px;
      text-align: center;
      color: rgba(255,255,255,.85);
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .form-success strong {
      display: block;
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 1.6rem;
      color: var(--gold2);
      margin-bottom: 10px;
    }
    .form-error {
      margin-top: 4px;
      color: #ff9b9b;
      font-family: Arial, sans-serif;
      font-size: .88rem;
      line-height: 1.5;
      text-align: center;
    }

    /* ── FOOTER ──────────────────────────────────────────────────────────── */
    footer {
      background: #030c0e;
      color: rgba(255,255,255,.5);
      text-align: center;
      padding: 50px 5vw;
      font-family: Arial, sans-serif;
      font-size: .9rem;
    }
    footer strong {
      display: block;
      font-family: Georgia, serif;
      font-size: 1.3rem;
      color: white;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    footer em { color: var(--gold2); font-style: normal; }
    footer a { color: var(--turq); }

    /* ── LIGHTBOX ────────────────────────────────────────────────────────── */
    .lightbox {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.92);
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 95vw;
      max-height: 90vh;
      border-radius: 16px;
      object-fit: contain;
    }
    .lb-close {
      position: absolute; top: 22px; right: 28px;
      color: white; font-size: 44px; cursor: pointer; line-height: 1;
      opacity: .7; transition: opacity .2s;
    }
    .lb-close:hover { opacity: 1; }
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50%;
      color: white;
      font-size: 34px; line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition: background .2s;
      z-index: 2;
    }
    .lb-nav:hover { background: rgba(255,255,255,.28); }
    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }

    /* ── MODALE DÉTAILS ───────────────────────────────────────────────────── */
    .modal {
      position: fixed; inset: 0;
      background: rgba(6,20,25,.85);
      z-index: 210;
      display: none;
      align-items: center; justify-content: center;
      padding: 24px;
    }
    .modal.open { display: flex; }
    .modal-card {
      position: relative;
      background: var(--light);
      color: var(--dark);
      border-radius: 28px;
      max-width: 680px; width: 100%;
      max-height: 86vh;
      display: flex; flex-direction: column;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }
    .modal-close {
      position: absolute; top: 16px; right: 18px;
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(11,31,34,.9);
      color: white; border: none; border-radius: 50%;
      font-size: 26px; line-height: 1; cursor: pointer;
      z-index: 2; transition: background .2s;
    }
    .modal-close:hover { background: var(--turq); }
    .modal-card h3 {
      font-style: italic;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      padding: 34px 56px 0 38px;
    }
    .modal-body { overflow-y: auto; padding: 14px 38px 38px; }
    .modal-body h4 {
      font-family: Arial, sans-serif;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .82rem; font-weight: 900;
      margin: 22px 0 10px;
    }
    .modal-body p {
      font-family: Arial, sans-serif;
      color: var(--muted);
      line-height: 1.7; font-size: .98rem;
      margin-bottom: 12px;
    }
    .modal-body ul { list-style: none; margin: 0 0 12px; padding: 0; }
    .modal-body li {
      font-family: Arial, sans-serif;
      color: var(--dark);
      line-height: 1.6; font-size: .95rem;
      padding: 5px 0 5px 26px; position: relative;
    }
    .modal-body li::before {
      content: "✓"; position: absolute; left: 0;
      color: var(--turq); font-weight: 900;
    }

    /* ── REVEAL ──────────────────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.show { opacity: 1; transform: none; }

    /* ── NOTICE ──────────────────────────────────────────────────────────── */
    .notice {
      background: rgba(196,138,54,.12);
      border-left: 4px solid var(--gold);
      border-radius: 16px;
      padding: 18px 22px;
      font-family: Arial, sans-serif;
      font-size: .92rem;
      color: #6b4e1a;
      margin-bottom: 20px;
    }

    /* ── ACCUEIL : HERO ───────────────────────────────────────────────────── */
    .home-hero-content {
      position: relative; z-index: 2;
      width: min(900px, 90vw);
      margin: 0 auto;
      text-align: center;
      color: white;
      padding: 100px 0;
    }
    .home-hero-logo {
      height: 120px; width: auto;
      margin: 0 auto 30px;
      filter: drop-shadow(0 8px 30px rgba(0,0,0,.5));
    }
    .home-hero-content h1 {
      font-size: clamp(2.4rem, 6vw, 5.5rem);
      line-height: 1;
      font-weight: 400;
      font-style: italic;
      max-width: none;
      margin-bottom: 22px;
    }
    .home-hero-content h1 em { color: var(--gold2); font-style: normal; }
    .home-hero-sub {
      font-family: Arial, sans-serif;
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 34px;
      color: rgba(255,255,255,.88);
    }

    /* ── ACCUEIL : CARTES DESTINATIONS ────────────────────────────────────── */
    .dest-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .dest-card {
      position: relative;
      display: block;
      height: 460px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(11,31,34,.18);
      color: white;
    }
    .dest-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .6s ease;
    }
    .dest-card:hover .dest-bg { transform: scale(1.06); }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,20,25,.85) 0%, rgba(6,20,25,.25) 55%, rgba(6,20,25,.12) 100%);
      transition: background .3s ease;
    }
    .dest-card:hover .dest-overlay {
      background: linear-gradient(to top, rgba(6,20,25,.9) 0%, rgba(6,20,25,.45) 60%, rgba(6,20,25,.28) 100%);
    }
    .dest-content {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 38px;
    }
    .dest-tag {
      font-family: Arial, sans-serif;
      color: var(--gold2);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: .18em;
      font-size: .78rem;
      margin-bottom: 10px;
    }
    .dest-content h3 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-style: italic;
      line-height: 1;
      margin-bottom: 10px;
    }
    .dest-content p {
      font-family: Arial, sans-serif;
      font-size: 1rem;
      color: rgba(255,255,255,.85);
      margin-bottom: 18px;
    }
    .dest-link {
      font-family: Arial, sans-serif;
      font-weight: 800;
      font-size: .95rem;
      color: white;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap .2s, color .2s;
    }
    .dest-card:hover .dest-link { gap: 12px; color: var(--gold2); }

    /* ── ACCUEIL : CONTACT PIED DE PAGE ───────────────────────────────────── */
    .footer-contact {
      display: flex; gap: 14px;
      justify-content: center; flex-wrap: wrap;
      margin-top: 22px;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { display: none; }
      .brand img { height: 36px; }
      .home-hero-logo { height: 80px; }
      .dest-grid { grid-template-columns: 1fr; }
      .dest-card { height: 360px; }
      .btn-row { flex-direction: column; }
      .btn-row .btn-primary, .btn-row .btn-outline { justify-content: center; width: 100%; }
      .btn-row .btn-ghost-light { justify-content: center; width: 100%; }
      .modal-card h3 { padding: 30px 50px 0 22px; }
      .modal-body { padding: 12px 22px 26px; }
      .cards-grid { grid-template-columns: 1fr; }
      #proprietes .cards-grid { grid-template-columns: 1fr; }
      .prop-grid, .prop-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
      .booking-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .video-grid { grid-template-columns: 1fr; }
      .photo-mosaic img:first-child { height: 280px; }
      .photo-mosaic img { height: 170px; }
      .lb-nav { width: 46px; height: 46px; font-size: 26px; }
      .lb-prev { left: 10px; }
      .lb-next { right: 10px; }
      section { padding: 64px 5vw; }
    }

    /* ── NOS VILLAS (#nos-villas) ─────────────────────────────────────────── */
    #nos-villas{
      background:var(--vr-card); color:var(--vr-ink);
      padding:5rem 1.5rem 5.5rem;
      font-family:'Segoe UI','Helvetica Neue',Arial,sans-serif;
    }
    #nos-villas .vr-inner{max-width:1100px;margin:0 auto;}
    #nos-villas .vr-eyebrow{
      display:block;letter-spacing:.28em;text-transform:uppercase;
      font-size:.78rem;color:var(--vr-gold);margin-bottom:.75rem;text-align:center;
    }
    #nos-villas h2{
      font-family:Georgia,'Times New Roman',serif;
      font-size:clamp(1.9rem,4vw,2.8rem);font-weight:400;text-align:center;
      margin:0 0 1rem;color:var(--vr-ocean);
    }
    #nos-villas .vr-intro{
      max-width:700px;margin:0 auto 2.4rem;text-align:center;
      line-height:1.7;font-size:1.05rem;
    }

    /* — BONUS : bandeau transfert aéroport — */
    .vr-bonus{
      max-width:760px;margin:0 auto 3.2rem;
      background:linear-gradient(135deg,var(--vr-ocean),var(--vr-ocean-soft));
      border-radius:16px;padding:1.6rem 1.8rem;color:#fff;text-align:center;
      box-shadow:0 10px 30px rgba(14,59,67,.22);
    }
    .vr-bonus .vr-bonus-tag{
      display:inline-block;background:var(--vr-gold);color:#fff;
      font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;
      padding:.3rem .9rem;border-radius:999px;margin-bottom:.9rem;font-weight:600;
    }
    .vr-bonus h3{
      margin:0 0 .5rem;font-family:Georgia,serif;font-weight:500;
      font-size:1.35rem;line-height:1.35;
    }
    .vr-bonus h3 span{color:var(--vr-gold);}
    .vr-bonus .vr-bonus-cond{
      margin:.6rem 0 0;font-size:.82rem;opacity:.82;line-height:1.5;
    }

    /* — Bandeau capacité — */
    .vr-capacity{
      display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;
      margin:0 auto 3.5rem;max-width:820px;
    }
    .vr-cap-item{
      flex:1 1 160px;background:var(--vr-sand);border-radius:12px;
      padding:1.3rem 1rem;text-align:center;
    }
    .vr-cap-item .vr-num{
      display:block;font-family:Georgia,serif;font-size:1.9rem;
      color:var(--vr-gold);line-height:1;margin-bottom:.35rem;
    }
    .vr-cap-item .vr-lbl{font-size:.9rem;color:#4a5654;line-height:1.4;}

    /* — Aménagement — */
    .vr-tier{margin:0 0 1.6rem;display:flex;align-items:center;gap:1rem;}
    .vr-tier::before,.vr-tier::after{content:"";flex:1;height:1px;background:rgba(14,59,67,.18);}
    .vr-tier span{font-family:Georgia,serif;font-size:1.35rem;color:var(--vr-ocean);white-space:nowrap;text-align:center;}

    .vr-layout{
      display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:1.5rem;margin-bottom:1.2rem;
    }
    .vr-floor{
      background:var(--vr-sand);border-radius:14px;padding:1.8rem 1.7rem;
      border-top:3px solid var(--vr-gold);
    }
    .vr-floor h3{
      margin:0 0 1rem;font-family:Georgia,serif;font-weight:500;
      font-size:1.3rem;color:var(--vr-ocean);
    }
    .vr-floor ul{list-style:none;margin:0;padding:0;}
    .vr-floor li{
      position:relative;padding:.5rem 0 .5rem 1.6rem;
      font-size:.97rem;line-height:1.5;border-bottom:1px solid rgba(14,59,67,.08);
    }
    .vr-floor li:last-child{border-bottom:none;}
    .vr-floor li::before{
      content:"";position:absolute;left:0;top:.95rem;
      width:7px;height:7px;border-radius:50%;background:var(--vr-gold);
    }

    /* — Carte 4e villa — */
    .vr-fourth{
      background:var(--vr-sand);border-radius:14px;padding:1.8rem 1.7rem;
      border-left:3px solid var(--vr-gold);margin-bottom:3.4rem;
    }
    .vr-fourth h3{
      margin:0 0 .6rem;font-family:Georgia,serif;font-weight:500;
      font-size:1.3rem;color:var(--vr-ocean);
    }
    .vr-fourth p{margin:0;font-size:.98rem;line-height:1.65;color:#3a4645;}
    .vr-fourth .vr-badge{
      display:inline-block;background:var(--vr-ocean);color:#fff;font-size:.75rem;
      letter-spacing:.06em;padding:.25rem .75rem;border-radius:999px;margin-bottom:.8rem;
    }

    /* — Inclusions — */
    .vr-amen{
      display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
      gap:1rem;margin-bottom:1.6rem;
    }
    .vr-amen-item{
      display:flex;align-items:center;gap:.85rem;
      background:var(--vr-sand);border-radius:10px;padding:.9rem 1rem;
      font-size:.95rem;
    }
    .vr-amen-item svg{width:22px;height:22px;flex:none;stroke:var(--vr-ocean);}
    .vr-amen-item .vr-hl{color:var(--vr-gold);font-weight:600;}

    /* — Service sur demande — */
    .vr-service{
      display:flex;gap:1rem;align-items:flex-start;
      background:#fff;border:1px solid rgba(194,155,76,.4);
      border-radius:12px;padding:1.2rem 1.4rem;margin-bottom:1rem;
    }
    .vr-service svg{width:26px;height:26px;flex:none;stroke:var(--vr-gold);margin-top:.15rem;}
    .vr-service .vr-service-txt strong{color:var(--vr-ocean);}
    .vr-service .vr-service-txt{font-size:.93rem;line-height:1.55;color:#3a4645;}
    .vr-service .vr-service-txt span{color:var(--vr-gold);font-weight:600;}

    .vr-close{
      margin-top:2.6rem;text-align:center;max-width:660px;margin-left:auto;margin-right:auto;
      line-height:1.7;font-size:1.02rem;color:#3a4645;
    }
    .vr-cta{
      display:block;width:max-content;margin:2.2rem auto 0;
      background:var(--vr-turq);color:#fff;text-decoration:none;
      padding:.9rem 2.2rem;border-radius:999px;letter-spacing:.08em;
      text-transform:uppercase;font-size:.85rem;transition:background .2s ease;
    }
    .vr-cta:hover{background:#086b70;}   /* turquoise plus foncé au survol */
