:root,
      [data-theme="light"] {
        --bg: #f5f1eb;
        --surface: #fffdfb;
        --surface-soft: #efe7de;
        --surface-strong: #e4d4c5;
        --text: #352720;
        --muted: #7f6b5d;
        --inverse: #ffffff;
        --primary: #a7846d;
        --primary-hover: #8f6e59;
        --primary-soft: rgba(255, 248, 243, 0.15);
        --gold: #d9ba7a;
        --border: rgba(53, 39, 32, 0.1);
        --shadow: 0 18px 40px rgba(53, 39, 32, 0.12);
        --radius-lg: 1.5rem;
        --radius-md: 1rem;
        --content: 1240px;
        --font-display: "Cormorant Garamond", Georgia, serif;
        --font-body: "Inter", Arial, sans-serif;
      }

      [data-theme="dark"] {
        --bg: #191614;
        --surface: #221d1a;
        --surface-soft: #2a2420;
        --surface-strong: #342c26;
        --text: #f2ece7;
        --muted: #c4b4a8;
        --inverse: #ffffff;
        --primary: #c7a485;
        --primary-hover: #ddbb9c;
        --primary-soft: rgba(255, 248, 243, 0.08);
        --gold: #e1c68f;
        --border: rgba(255, 255, 255, 0.12);
        --shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
      }

      * { box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body {
        margin: 0;
        font-family: var(--font-body);
        background: var(--bg);
        color: var(--text);
        line-height: 1.65;
      }
      img, video, iframe { max-width: 100%; display: block; }
      a { color: inherit; text-decoration: none; }
      button, select, input, textarea { font: inherit; color: inherit; }
      button { cursor: pointer; }
      .container {
        width: min(calc(100% - 2rem), var(--content));
        margin-inline: auto;
      }
      .skip-link {
        position: absolute;
        left: -9999px;
        top: 1rem;
        background: var(--primary);
        color: var(--inverse);
        padding: 0.8rem 1rem;
        border-radius: 999px;
        z-index: 1000;
      }
      .skip-link:focus { left: 1rem; }
      .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(16px);
        background: color-mix(in srgb, var(--bg) 86%, transparent);
        border-bottom: 1px solid var(--border);
      }
      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.75rem 0;
      }
      
     /* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 900px; }
.faq-item { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: 0; text-align: left; padding: 1.2rem 1.4rem; font-weight: 700; font-size: 1.02rem; }
.faq-icon { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 999px; display: grid; place-items: center; background: var(--surface-soft); color: var(--primary); transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; }
.faq-icon svg { width: 15px; height: 15px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--inverse); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a p { margin: 0; padding: 0 1.4rem 1.35rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; }

       @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        .reveal { opacity: 1; transform: none; transition: none; }
        .room-media img { transition: none; }
      }



      .brand img {
        max-height: 74px;
        width: auto;
      }
      .menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: var(--surface);
      }
      .nav {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .nav a,
      .lang-select,
      .theme-toggle {
        min-height: 44px;
        border-radius: 999px;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        flex-wrap: wrap;
      }
      .nav-links a {
        padding: 0.7rem 1rem;
        color: var(--muted);
        font-weight: 600;
      }
      .nav-links a:hover,
      .nav-links a:focus-visible {
        background: var(--surface-soft);
        color: var(--text);
      }
      .nav-links a.active {
        background: var(--surface-strong);
        color: var(--text);
      }
      .header-actions {
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }
      .lang-select,
      .theme-toggle {
        border: 1px solid var(--border);
        background: var(--surface);
        padding: 0 0.95rem;
      }
      .theme-toggle {
        width: 44px;
        padding: 0;
      }
      .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.95rem 1.3rem;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        transition: 0.2s ease;
      }
      .btn-primary {
        background: var(--primary);
        color: var(--inverse);
        box-shadow: var(--shadow);
      }
      .btn-primary:hover { background: var(--primary-hover); }
      .btn-secondary {
        background: var(--surface);
        border-color: var(--border);
      }
      .hero {
        position: relative;
        min-height: 90vh;
        display: grid;
        align-items: center;
        overflow: hidden;
        background: #1f1713;
      }
      .hero-media,
      .hero-media video,
      .hero-overlay {
        position: absolute;
        inset: 0;
      }
      .hero-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .hero-overlay {
        background:
          linear-gradient(180deg, rgba(20, 13, 9, 0.34), rgba(20, 13, 9, 0.68)),
          radial-gradient(circle at top, rgba(217, 186, 122, 0.18), transparent 45%);
      }
      .hero-content {
        position: relative;
        z-index: 2;
        padding: 9rem 0 6rem;
      }
      .hero-center {
        max-width: 820px;
        margin: 0 auto;
        text-align: center;
        color: #E0C3AE
      }

      .hero-kicker {
        display: inline-flex;
        padding: 0.45rem 0.95rem;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 0.75rem;
        font-weight: 700;
        background: rgba(255, 248, 243, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
      }
      h1 {
        margin: 1rem 0 0.5rem;
        font-family: var(--font-display);
        font-size: clamp(2.7rem, 1.4rem + 4vw, 5.2rem);
        line-height: 1.02;
      }

      .hero-title {
        font-size: clamp(2.9rem, 1.6rem + 4.2vw, 5.6rem);
        line-height: 1.04;
        margin: 0.6rem 0 0.5rem;
        word-break: break-word;
        /* Étendre le titre sur toute la largeur du viewport */
        display: block;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1rem;
        box-sizing: border-box;
        text-align: center;
      }
      .hero-stars {
        font-size: 1.6rem;
        letter-spacing: 0.18em;
        color: var(--gold);
        margin-bottom: 1rem;
      }
      .hero-subtitle {
        max-width: 60ch;
        margin: 0 auto;
        color: rgba(255, 248, 243, 0.9);
      }
      .hero-actions {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.8rem;
      }
      .section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
      .section-head {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .section-title {
        margin: 0.2rem 0 0.4rem;
        font-family: var(--font-display);
        font-size: clamp(2rem, 1.4rem + 1.4vw, 3rem);
      }
      .section-copy { color: var(--muted); max-width: 65ch; }
      .panel {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
      }
      .video-card {
        overflow: hidden;
      }
      .video-card video {
        width: 100%;
        aspect-ratio: 16 / 8;
        object-fit: cover;
      }
      .amenities {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
      }
      .amenity {
        padding: 1.2rem 1rem;
        text-align: center;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
      }
      .icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 0.75rem;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: var(--surface-soft);
        color: var(--primary);
      }
      .icon svg { width: 24px; height: 24px; }
      .cards-3,
      .cards-4,
      .rooms-grid,
      .spaces-grid,
      .places-grid,
      .services-grid,
      .gallery-grid,
      .transport-grid,
      .footer-grid {
        display: grid;
        gap: 1.25rem;
      }
      .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .cards-3,
      .services-grid,
      .spaces-grid,
      .places-grid,
      .transport-grid,
      .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .rooms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .gallery-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
      .card {
        overflow: hidden;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
      }
      .card-media {
        width: 100%;
        height: 280px;
        object-fit: cover;
      }
      .card-body { padding: 1.4rem; }
      .card-body h3 {
        margin: 0 0 0.45rem;
        font-family: var(--font-display);
        font-size: 1.8rem;
      }
      .meta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.35rem 0.8rem;
        border-radius: 999px;
        background: var(--surface-soft);
        color: var(--primary);
        font-weight: 700;
        font-size: 0.86rem;
      }
      .feature-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
      }
      .feature-icons span {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.8rem 0.9rem;
        border-radius: 999px;
        background: var(--surface-soft);
        color: var(--text);
        font-size: 0.92rem;
      }
      .feature-icons svg { width: 18px; height: 18px; color: var(--primary); }
      .gallery-item { overflow: hidden; position: relative; border-radius: var(--radius-lg); min-height: 240px; }
      .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
      .gallery-item.large { grid-column: span 6; min-height: 420px; }
      .gallery-item.medium { grid-column: span 3; }
      .gallery-item::after {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        bottom: 1rem;
        color: #fff;
        padding: 0.6rem 0.85rem;
        border-radius: 999px;
        font-size: 0.82rem;
        font-weight: 700;
      }
      .transport-muted {
        background: transparent;
        border: none;
        color: var(--muted);
        padding: 0;
      }
      .quote-band {
        padding: 2rem;
        border-radius: var(--radius-lg);
        background: linear-gradient(135deg, var(--primary), #8f6e59);
        color: #fff9f5;
      }
      .contact-wrap {
        display: grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 1.25rem;
      }
      .contact-card,
      .map-card,
      .form-card { padding: 1.5rem; }
      .map-card {
        display: flex;
        flex-direction: column;
        min-height: 100%;
      }
      .map-card iframe {
        width: 100%;
        min-height: 420px;
        height: 100%;
        border: 0;
        border-radius: var(--radius-md);
        display: block;
      }
      .contact-list,
      .transport-list,
      .footer-links,
      .socials {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0;
      }
      .contact-list li,
      .transport-list li,
      .footer-links li {
        margin-bottom: 0.75rem;
        color: var(--muted);
      }
      .form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
      }
      .field,
      .field-full {
        display: grid;
        gap: 0.35rem;
      }
      .field-full { grid-column: 1 / -1; }
      input,
      select,
      textarea {
        width: 100%;
        min-height: 48px;
        padding: 0.9rem 1rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        background: var(--surface);
      }
      textarea { min-height: 120px; resize: vertical; }
      .transport-card,
      .service-highlight,
      .mini-card {
        padding: 1.3rem;
      }
      footer {
        margin-top: 2rem;
        padding: 3rem 0 4rem;
        border-top: 1px solid var(--border);
      }
      .footer-brand {
        font-family: var(--font-display);
        font-size: 2rem;
        margin-bottom: 0.6rem;
      }
      .footer-links a { color: var(--muted); }
      .footer-links a:hover { color: var(--text); }
      .socials {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }
      .socials a {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: var(--surface);
      }
      .socials svg { width: 18px; height: 18px; }
      .page-anchor { scroll-margin-top: 6rem; }
      .card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        margin-top: 0.75rem;
        font-weight: 700;
        color: var(--primary);
      }
      .card-link:hover,
      .card-link:focus-visible {
        color: var(--primary-hover);
        text-decoration: underline;
      }

      @media (max-width: 1120px) {
        .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .amenities { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .cards-3,
        .services-grid,
        .spaces-grid,
        .places-grid,
        .transport-grid,
        .footer-grid,
        .contact-wrap { grid-template-columns: 1fr 1fr; }
      }
      @media (max-width: 860px) {
        .menu-toggle { display: inline-grid; place-items: center; }
        .nav {
          position: fixed;
          inset: 0 0 0 auto;
          width: min(90vw, 360px);
          height: 100dvh;
          background: var(--bg);
          border-left: 1px solid var(--border);
          padding: 5rem 1rem 2rem;
          display: none;
          align-content: start;
          gap: 1rem;
        }
        .nav.open { display: grid; }
        .nav-links,
        .header-actions { display: grid; gap: 0.6rem; }
        .nav-links a,
        .header-actions .btn,
        .lang-select { width: 100%; justify-content: flex-start; }
        .rooms-grid,
        .contact-wrap,
        .form-grid,
        .cards-3,
        .services-grid,
        .spaces-grid,
        .places-grid,
        .transport-grid,
        .footer-grid { grid-template-columns: 1fr; }
        .map-card iframe { min-height: 360px; }
        .gallery-item.large,
        .gallery-item.medium { grid-column: span 12; }
      }
      @media (max-width: 720px) {
        .hero-content { padding: 7rem 0 4rem; }
        .amenities,
        .cards-4 { grid-template-columns: 1fr; }
        .section-head { flex-direction: column; align-items: flex-start; }
        .brand img { max-height: 62px; }
        h1 { font-size: clamp(2.2rem, 1.4rem + 6vw, 3.8rem); }
        .hero-stars { font-size: 1.35rem; }
      }

     

