/* ── PALETTE dérivée du logo ──
       AD   : rgb(210,180,161) → #D2B4A1  sandy beige
       beauty: rgb(62,40,24)  → #3E2818  deep brown
    ── */
    :root {
      --sand:       #D2B4A1;   /* "AD" du logo   */
      --sand-light: #E8D4C6;
      --sand-pale:  #F4EBE4;
      --sand-softest: #FAF6F2;
      --brown:      #3E2818;   /* "beauty" du logo */
      --brown-mid:  #7A5240;
      --brown-soft: #A67C68;
      --cream:      #FDFAF7;
      --white:      #FFFFFF;
      --text:       #3E2818;
      --text-soft:  #9A7260;
      --r-sm:   14px;
      --r-md:   22px;
      --r-lg:   28px;
      --r-xl:   44px;
      --r-full: 100px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }



    /* ── NAV ─────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.25rem;
      transition: background .35s, box-shadow .35s, backdrop-filter .35s;
    }
    nav.scrolled {
      background: rgba(253,250,247,.93);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 20px rgba(62,40,24,.07);
    }
    .nav-rdv-mobile {
      display: inline-flex;
      align-items: center;
      padding: .5rem 1rem;
      background: var(--brown);
      color: var(--sand-light);
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--r-full);
      white-space: nowrap;
      /* transparent sur hero, brun sinon */
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.3);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,.9);
      transition: background .2s, border-color .2s, color .2s;
    }
    nav.scrolled .nav-rdv-mobile {
      background: var(--brown);
      border-color: var(--brown);
      backdrop-filter: none;
      color: var(--sand-light);
    }
    .nav-links { display: none; }
    .nav-cta-top { display: none; }
    .nav-toggle {
      background: none;
      border: none;
      cursor: pointer;
      padding: .4rem;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .25s, opacity .25s, background .35s;
    }
    nav.scrolled .nav-toggle span { background: var(--brown); }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE MENU ─────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--cream);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--brown);
      text-decoration: none;
    }
    .mobile-menu-logo {
      margin-bottom: .5rem;
    }
    .mobile-menu-logo img {
      height: 42px;
      width: auto;
    }
    .mobile-menu .menu-cta {
      padding: .95rem 2.5rem;
      background: var(--brown);
      color: var(--sand-light);
      font-family: 'Nunito', sans-serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: var(--r-full);
    }

    /* ── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5rem 1.5rem 6rem;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 30%;
    }
    /* ── LIQUID GLASS sur tout le hero ──────────
       La photo de fond est légèrement saturée,
       puis un backdrop-filter englobe tout le hero.
       Un gradient doux assure la lisibilité du texte.
    ─────────────────────────────────────────── */
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* teinture douce qui laisse respirer la photo */
      background: linear-gradient(
        160deg,
        rgba(255,248,244,.12) 0%,
        rgba(210,180,161,.18) 40%,
        rgba(62,40,24,.55) 100%
      );
      /* glass sur toute la surface */
      backdrop-filter: blur(3px) saturate(1.25) brightness(.92);
      -webkit-backdrop-filter: blur(3px) saturate(1.25) brightness(.92);
    }
    /* reflet / shimmer en haut */
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,.08) 0%,
        transparent 35%,
        rgba(62,40,24,.35) 100%
      );
      pointer-events: none;
    }

    .hero-glass {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2.5rem 2rem 2.25rem;
      max-width: 360px;
      width: 100%;
    }

    .hero-logo {
      opacity: 0;
      animation: fadeUp .9s ease forwards .2s;
      margin-bottom: 1.5rem;
    }
    .hero-logo img {
      width: min(200px, 52vw);
      height: auto;
      filter: brightness(0) invert(1);
    }

    .hero-tagline {
      opacity: 0;
      animation: fadeUp .8s ease forwards .45s;
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,240,228,.75);
      white-space: nowrap;   /* force une seule ligne */
      line-height: 1;
    }
    .hero-tag-sep { opacity: .45; margin: 0 .4em; }

    .hero-rdv-link {
      opacity: 0;
      animation: fadeUp .8s ease forwards .65s;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      margin-top: 1.25rem;
      padding: .45rem .95rem;
      background: rgba(255,248,244,.12);
      border: 1px solid rgba(255,248,244,.25);
      border-radius: var(--r-full);
      font-size: .66rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,240,228,.8);
      text-decoration: none;
      backdrop-filter: blur(4px);
      white-space: nowrap;
      transition: background .2s;
    }
    .hero-rdv-link:hover { background: rgba(255,248,244,.22); }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      opacity: 0;
      animation: fadeUp .7s ease forwards 1.1s;
    }
    .hero-scroll span {
      font-size: .58rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255,240,228,.35);
      display: none; /* masqué mobile */
    }
    .scroll-line {
      width: 1px;
      height: 28px;
      background: linear-gradient(to bottom, rgba(255,240,228,.35), transparent);
      animation: pulse 2s ease-in-out infinite 1.8s;
    }

    /* ── UTILS ───────────────────────────────── */
    .section-label {
      display: block;
      font-size: .64rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: .85rem;
    }
    .ornament {
      color: var(--sand);
      opacity: .45;
      letter-spacing: .45em;
      margin: .3rem 0 1.4rem;
      font-size: .9rem;
    }
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── INTRO ───────────────────────────────── */
    .intro {
      background: var(--cream);
      padding: 4.5rem 1.5rem;
      text-align: center;
    }
    .intro h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      line-height: 1.2;
      color: var(--brown);
      margin-bottom: 1.2rem;
    }
    .intro h2 em { font-style: italic; color: var(--sand); }
    .intro p {
      font-size: .95rem;
      line-height: 1.9;
      color: var(--text-soft);
      margin-bottom: .85rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
    .intro-pills {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      justify-content: center;
      margin-top: 1.75rem;
    }
    .intro-pill {
      padding: .5rem 1rem;
      background: var(--sand-pale);
      border-radius: var(--r-full);
      font-size: .78rem;
      color: var(--brown-mid);
    }

    /* ── SERVICES — grille simple, sans accordéon ─ */
    .services {
      background: var(--sand-softest);
      padding: 4.5rem 1.25rem;
    }
    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .section-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--brown);
    }
    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 580px;
      margin: 0 auto;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 1.4rem 1.5rem;
      border: 1.5px solid var(--sand-pale);
    }
    .service-card-title {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1rem;
      padding-bottom: .85rem;
      border-bottom: 1px solid var(--sand-pale);
    }
    .svc-icon { font-size: 1.15rem; flex-shrink: 0; }
    .service-card-title h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--brown);
    }
    .price-list { list-style: none; }
    .price-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: .75rem;
      padding: .42rem 0;
      font-size: .87rem;
      color: var(--text-soft);
      border-bottom: 1px solid rgba(210,180,161,.12);
    }
    .price-list li:last-child { border-bottom: none; }
    .svc-name { flex: 1; line-height: 1.4; }
    .svc-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: .97rem;
      color: var(--brown-mid);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ── PACKS ───────────────────────────────── */
    .packs {
      background: var(--sand-pale);
      padding: 4.5rem 1.25rem;
    }
    .packs .section-header p {
      margin-top: .6rem;
      font-size: .9rem;
      color: var(--text-soft);
    }
    .packs-grid {
      display: flex;
      flex-direction: column;
      gap: .85rem;
      max-width: 420px;
      margin: 0 auto;
    }
    .pack-card {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 1.4rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      border: 1.5px solid var(--sand-light);
    }
    .pack-info { flex: 1; }
    .pack-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--brown);
      line-height: 1.5;
    }
    .pack-save {
      display: inline-block;
      margin-top: .3rem;
      font-size: .64rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--sand);
      background: var(--sand-pale);
      padding: .18rem .6rem;
      border-radius: var(--r-full);
    }
    .pack-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--brown);
      line-height: 1;
      flex-shrink: 0;
      text-align: right;
    }
    .pack-price sup { font-size: .9rem; vertical-align: top; margin-top: .3rem; }
    .pack-price small { font-size: .68rem; color: var(--text-soft); display: block; margin-top: .15rem; letter-spacing: .05em; font-family: 'Nunito', sans-serif; }

    /* ── AMBIANCE ────────────────────────────── */
    .ambiance {
      background: var(--cream);
      padding: 4.5rem 1.5rem;
    }
    .ambiance-photo {
      width: 100%;
      max-width: 520px;
      margin: 0 auto 2.5rem;
      border-radius: var(--r-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 8px 40px rgba(62,40,24,.08);
      position: relative;
    }
    .ambiance-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .ambiance-photo-badge {
      position: absolute;
      bottom: 1rem; left: 1rem;
      background: rgba(253,250,247,.92);
      backdrop-filter: blur(8px);
      border-radius: var(--r-full);
      padding: .45rem 1rem;
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--brown-mid);
    }
    .ambiance-text { text-align: center; }
    .ambiance-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--brown);
      line-height: 1.2;
      margin-bottom: 1.1rem;
    }
    .ambiance-text h2 em { font-style: italic; color: var(--sand); }
    .ambiance-text p {
      font-size: .94rem;
      line-height: 1.9;
      color: var(--text-soft);
      margin-bottom: .8rem;
      max-width: 460px;
      margin-left: auto; margin-right: auto;
    }

    /* ── CONTACT ─────────────────────────────── */
    .contact {
      background: var(--sand-softest);
      padding: 4.5rem 1.5rem;
      text-align: center;
    }
    .contact h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--brown);
      line-height: 1.2;
      margin-bottom: .85rem;
    }
    .contact h2 em { font-style: italic; color: var(--sand); }
    .contact-intro {
      font-size: .94rem;
      color: var(--text-soft);
      line-height: 1.85;
      margin-bottom: 2rem;
      max-width: 420px;
      margin-left: auto; margin-right: auto;
    }
    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: .65rem;
      max-width: 320px;
      margin: 0 auto 2.5rem;
    }
    .contact-method {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .7rem;
      padding: .95rem 1.5rem;
      background: var(--white);
      border: 1.5px solid var(--sand-light);
      border-radius: var(--r-full);
      text-decoration: none;
      color: var(--brown);
      font-size: .88rem;
      font-weight: 400;
      transition: background .2s, border-color .2s;
      -webkit-tap-highlight-color: transparent;
    }
    .contact-method:active { background: var(--sand-pale); }
    .cm-icon { font-size: .95rem; }
    .divider {
      width: 36px; height: 1px;
      background: var(--sand-light);
      margin: 2rem auto;
      border-radius: 100px;
    }
    .contact-address {
      font-size: .87rem;
      color: var(--text-soft);
      line-height: 1.9;
    }
    .contact-address strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--brown);
      margin-bottom: .35rem;
    }
    .contact-horaires {
      margin-top: 1.4rem;
      font-size: .84rem;
      color: var(--text-soft);
    }
    .contact-horaires strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 400;
      color: var(--brown);
      margin-bottom: .25rem;
    }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: var(--sand-pale);
      padding: 3rem 1.5rem;
      text-align: center;
      border-top: 1px solid var(--sand-light);
    }
    footer img {
      height: 30px;
      width: auto;
      opacity: .75;
    }
    .footer-name {
      margin-top: .9rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--brown);
      letter-spacing: .05em;
    }
    .footer-address {
      margin-top: .35rem;
      font-size: .75rem;
      line-height: 1.85;
      color: var(--text-soft);
    }
    .footer-zones {
      margin-top: .4rem;
      font-size: .67rem;
      line-height: 1.75;
      color: var(--brown-soft);
      opacity: .7;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-legal {
      margin-top: .75rem;
      font-size: .68rem;
      letter-spacing: .07em;
      color: var(--brown-soft);
      opacity: .55;
    }

    /* ── ANIMATIONS ──────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%,100% { opacity: .3; } 50% { opacity: .8; }
    }

    /* ── DESKTOP ≥ 768px ─────────────────────── */
    @media (min-width: 768px) {
      body { padding-bottom: 0; }
      .sticky-cta { display: none; }
      .nav-toggle { display: none; }
      nav { justify-content: space-between; padding: 1rem 2rem; }
      .nav-links {
        display: flex; gap: 2rem; list-style: none;
      }
      .nav-links a {
        font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
        color: var(--white); text-decoration: none; opacity: .7; transition: opacity .2s;
      }
      nav.scrolled .nav-links a { color: var(--brown); }
      .nav-links a:hover { opacity: 1; }
      .nav-rdv-mobile { display: none; }
      .nav-cta-top {
        display: inline-block;
        padding: .6rem 1.5rem;
        background: rgba(255,248,244,.2);
        border: 1px solid rgba(255,248,244,.35);
        color: var(--white);
        font-size: .7rem; font-weight: 600;
        letter-spacing: .1em; text-transform: uppercase;
        text-decoration: none; border-radius: var(--r-full);
        backdrop-filter: blur(8px);
        transition: background .2s;
      }
      nav.scrolled .nav-cta-top {
        background: var(--brown); border-color: var(--brown); color: var(--sand-light);
      }
      .nav-cta-top:hover { background: rgba(255,248,244,.32); }

      .hero-glass { max-width: 440px; padding: 3rem 3rem 2.75rem; }
      .hero-logo img { width: 220px; }
      .hero-scroll span { display: block; }

      .intro { padding: 6rem 2rem; }
      .intro h2 { font-size: 3rem; }
      .services { padding: 6rem 2rem; }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 1rem;
      }
      .packs { padding: 6rem 2rem; }
      .packs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px; gap: 1rem;
      }
      .pack-card { flex-direction: column; text-align: center; align-items: center; }
      .pack-price { text-align: center; }
      .ambiance { padding: 6rem 2rem; }
      .ambiance-inner {
        max-width: 880px; margin: 0 auto;
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 4rem; align-items: center;
      }
      .ambiance-photo { margin: 0; }
      .ambiance-text { text-align: left; }
      .ambiance-text p { margin-left: 0; margin-right: 0; }
      .ambiance-text h2 { font-size: 2.4rem; }
      .contact { padding: 6rem 2rem; }
      .contact-methods {
        flex-direction: row; flex-wrap: wrap;
        justify-content: center; max-width: 560px;
      }
    }

/* ── Carrousel ─── */
.carousel { position: relative; width: 100%; height: 100%; }
.carousel-slide { display: none; width: 100%; height: 100%; }
.carousel-slide.active { display: block; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,248,244,.75); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); color: #3E2818;
}
.carousel-btn.prev { left: .5rem; }
.carousel-btn.next { right: .5rem; }
.carousel-dots {
  position: absolute; bottom: .6rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .35rem;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s;
}
.carousel-dot.active { background: white; }