    /* ── 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);
    }

    /* ── 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; } }

    /* ── 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; }

    /* ── 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; }
    }
