    :root {
      --cream: #f5f0e8;
      --warm-white: #faf8f4;
      --sand: #e8dcc8;
      --taupe: #c4b49a;
      --brown: #8b6f47;
      --dark: #1e2a3a;
      --accent: #c97c4a;
      --soft-pink: #f0e6df;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--warm-white);
      color: var(--dark);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      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: 12px 38px;
      background: #3a2d20;
      backdrop-filter: none;
      border-bottom: none;
      transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 80px;
      width: auto;
      display: block;
      background: #fff;
      border-radius: 50%;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: .88rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      color: rgba(245, 240, 232, 0.85);
      opacity: 1;
      transition: color .2s;
    }

    .nav-links a:hover {
      opacity: 1;
      color: #c97c4a;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-social a {
      color: rgba(245, 240, 232, 0.75);
      text-decoration: none;
      font-size: 1.05rem;
      transition: color .2s, transform .2s;
      display: flex;
      align-items: center;
    }

    .nav-social a:hover {
      color: #c97c4a;
      transform: scale(1.15);
    }


    .btn-book {
      background: #c97c4a;
      color: #fff;
      padding: 10px 24px;
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      border: 2px solid #c97c4a;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s;
      font-family: 'Jost', sans-serif;
      white-space: nowrap;
      border-radius: 40px;
      font-weight: 500;
      animation: blink-white 2s ease-in-out infinite;
    }

    .btn-book:hover {
      background: #fff;
      color: #c97c4a;
      border: 2px solid #c97c4a;
    }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      z-index: 200;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: all .3s;
      transform-origin: center;
    }

    .burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--warm-white);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .mobile-menu.open {
      display: flex;
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--dark);
      text-decoration: none;
      letter-spacing: .06em;
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--accent);
    }

    .mobile-menu .mobile-phone {
      font-size: .85rem;
      letter-spacing: .15em;
      color: var(--accent);
      margin-top: 12px;
    }

    .mobile-menu .btn-book {
      margin-top: 8px;
      font-size: .8rem;
      padding: 14px 36px;
      color: #fff;
      font-family: Jost;
      background: #c97c4a;
      /* fond orange visible par défaut */
      border: 2px solid #c97c4a;
    }

    .mobile-lang {
      display: flex;
      gap: 10px;
      margin-top: 8px;
    }

    .mobile-lang button {
      background: none;
      border: 1px solid rgba(30, 42, 58, 0.2);
      border-radius: 40px;
      padding: 7px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
    }

    .mobile-lang button:hover,
    .mobile-lang button.active {
      background: #c97c4a;
      color: #fff;
      border-color: #c97c4a;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 120vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      pointer-events: none;
      inset: 0;
      background-image: url('images/hero-bg.jpg');
      background-size: cover;
      background-position: center;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(30, 42, 58, 0.60);
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.10);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      text-align: center;
      color: var(--cream);
      padding: 0 20px;
      animation: fadeUp .9s ease both;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: clamp(1rem, 2.2vw, 1.4rem);
      font-weight: 350;
      font-style: normal;
      color: rgba(245, 240, 232, 0.9);
      letter-spacing: .35em;
      text-transform: uppercase;
    }

    .hero-eyebrow2 {
      font-family: 'Jost', sans-serif;
      font-size: clamp(1rem, 2.2vw, 1.4rem);
      font-weight: 500;
      font-style: normal;
      color: rgba(245, 240, 232, 0.9);
      letter-spacing: .35em;
      text-transform: uppercase;
      padding-bottom: 40px;
      width: 60%
    }


    .hero-logo {
      width: min(580px, 88vw);
      filter: none;
      opacity: 1;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-style: italic;
      color: rgba(245, 240, 232, 0.55);
      letter-spacing: .18em;
    }

    .hero-cta {
      display: inline-block;
      background: #c97c4a;
      border: 2px solid #c97c4a;
      color: #fff;
      padding: 16px 48px;
      font-size: .8rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      margin-top: 8px;
      border-radius: 40px;
    }

    .hero-cta:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
      animation: none;
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: bounce 2s infinite;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }

    @keyframes blink-white {

      0%,
      100% {
        background: #c97c4a;
        color: #fff;
      }

      50% {
        background: #fff;
        color: #c97c4a;
      }
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    /* SECTION COMMONS */
    section {
      padding: 100px 48px;
    }

    .section-label {
      font-size: .65rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .section-body {
      font-size: .95rem;
      line-height: 1.8;
      color: #5a6a7a;
      max-width: 540px;
    }

    .section-zone-body {
      font-size: .95rem;
      line-height: 1.8;
      color: #5a6a7a;
      max-width: 440px;
    }

    .btn-outline {
      display: inline-block;
      background: #c97c4a;
      border: 1px solid #c97c4a;
      color: #fff;
      padding: 11px 28px;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      margin-top: 28px;
      align-self: flex-start;
      border-radius: 40px;
      font-weight: 500;
    }

    .btn-outline:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--accent);
      margin: 0 auto 16px;
    }

    /* WHAT'S HAPPENING */
    .happening {
      background: var(--cream);
      text-align: center;
    }

    .happening .section-title,
    .happening .section-body {
      margin-left: auto;
      margin-right: auto;
    }

    /* CARDS CAROUSEL */
    .cards-viewport {
      overflow: hidden;
      flex: 1;
    }

    .cards-carousel-wrap .cards-nav {
      display: none;
    }

    .cards-dots {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .cards-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sand);
      cursor: pointer;
      transition: background .2s, transform .2s;
      display: block;
    }

    .cards-dots span.active {
      background: #c97c4a;
      transform: scale(1.3);
    }

    .cards-carousel-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      max-width: 1300px;
      /* augmenté pour laisser de la place aux 3 cartes */
      margin: 0 auto;
      /* centre le bloc dans la page */
      padding: 50px 16px;
    }

    .cards-track {
      display: flex;
      gap: 52px;
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
      flex-wrap: wrap;
      justify-content: center;
    }

    .card {
      background: var(--sand);
      border-radius: 160px 160px 32px 32px;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 36px;
      flex: 0 0 calc(33.333% - 52px);
      /* 3 cartes par ligne au lieu de 2 */
      min-width: 280px;
      /* évite que les cartes deviennent trop étroites */
      max-width: 300px;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(30, 42, 58, 0.12);
    }

    .card-img-wrap {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      overflow: hidden;
      margin: 36px auto 24px;
      border: 4px solid var(--warm-white);
      box-shadow: 0 4px 20px rgba(30, 42, 58, 0.1);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .card-body {
      padding: 0 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card-tag {
      font-size: .6rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      margin-bottom: 12px;
      color: var(--dark);
    }

    .card-text {
      font-size: .85rem;
      line-height: 1.75;
      color: #5a6a7a;
      margin-bottom: 24px;
    }

    .card-link {
      display: inline-block;
      background: #c97c4a;
      color: #fff;
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 28px;
      border-radius: 40px;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      border: 2px solid #c97c4a;
    }

    .card-link:hover {
      background: #fff;
      color: #c97c4a;
    }

    /* OUR ZONES */
    .zones {
      background: var(--warm-white);
      padding: 100px 0;
    }

    .zones-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .zones-header {
      text-align: center;
      padding: 0 48px;
      margin-bottom: 80px;
    }

    .zones-header .section-body {
      margin: 0 auto;
      text-align: center;
    }

    .zone-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      margin-bottom: 2px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .zone-row.reverse {
      direction: rtl;
    }

    .zone-row.reverse>* {
      direction: ltr;
    }

    .birthday-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      margin-bottom: 2px;
      margin-left: auto;
      margin-right: auto;
      direction: rtl;
      background: var(--cream);
      padding: 50px 0;
    }

    .birthday-img {
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .birthday-img-inner {
      width: 70%;
      max-width: 300px;
      aspect-ratio: 3 / 4;
      /* plus étroit : largeur = 75% de la hauteur */
      background-size: cover;
      background-position: center;
      border-radius: 63% 37% 54% 46% / 43% 65% 35% 57%;
      overflow: hidden;
      transform: translateX(-150px);
    }

    .birthday-content {
      padding: 60px;
      background: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .birthday-content .section-title {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .zone-img {
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #faf8f4;
      overflow: hidden;
    }

    .zone-img-inner-1 {
      width: 400px;
      height: 400px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      object-fit: cover;
      border-radius: 70% 30% 40% 60% / 35% 60% 45% 65%;
      overflow: hidden;
    }

    .zone-img-inner-2 {
      width: 400px;
      height: 400px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      border-radius: 35% 65% 60% 40% / 55% 40% 65% 35%;
      overflow: hidden;
    }

    .zone-content {
      padding: 60px;
      background: #faf8f4;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .zone-content .section-title {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    /* BOOK WITH US */
    .book {
      text-align: center;
      color: var(--cream);
    }

    .book .section-label {
      color: var(--taupe);
    }

    .book .section-title {
      color: var(--dark);
      margin-left: auto;
      margin-right: auto;
    }

    .book .section-body {
      color: rgba(245, 240, 232, 0.6);
      margin: 0 auto;
      text-align: center;
    }

    .book-options {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .book-option {
      background: var(--sand);
      border-radius: 160px 160px 32px 32px;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 36px;
      width: 260px;
      flex-shrink: 0;
      cursor: pointer;
      color: var(--dark);
    }

    .book-option:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
    }

    .book-option-icon {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e8dcc8, #d4b896);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      margin: 36px auto 24px;
      border: 4px solid var(--warm-white);
      box-shadow: 0 4px 20px rgba(30, 42, 58, 0.1);
      flex-shrink: 0;
    }

    .book-option-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 10px;
      padding: 0 20px;
    }

    .book-option-text {
      font-size: .85rem;
      color: #5a6a7a;
      line-height: 1.75;
      margin-bottom: 24px;
      padding: 0 20px;
    }

    .btn-cream {
      display: inline-block;
      background: #c97c4a;
      color: #fff;
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 28px;
      border-radius: 40px;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      border: 2px solid #c97c4a;
    }

    .btn-cream:hover {
      background: #fff;
      color: #c97c4a;
    }

    /* CAFE */
    .le-cafe {
      background:var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 460px;
      padding: 0;
      max-width: 100%;
      margin: 0 auto;
      padding-bottom: 50px;
    }

    .cafe-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 20px;
    }

    .cafe-title2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 4vw, 3rem);
      font-weight: 500;
      color: var(--taupe);
      margin-bottom: 20px;
    }

    .cafe-body {
      font-size: .95rem;
      line-height: 1.8;
      color: var(--cream);
      max-width: 540px;
    }

    .cafe-content {
      padding-left: 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cafe-img {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 350px;
      max-width: 70%;
      overflow: hidden;
      position: relative;
    }

    .cafe-carousel {
      width: 380px;
      height: 380px;
      flex-shrink: 0;
      border-radius: 35% 65% 60% 40% / 55% 40% 65% 35%;
      overflow: hidden;
      position: relative;
    }

    .cafe-carousel-track {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .cafe-carousel-slide {
      width: 33.333%;
      height: 100%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    /* NEWSLETTER */
    .newsletter {
      background: var(--cream);
      text-align: center;
      padding: 80px 48px
    }

    .newsletter .section-title {
      margin: 0 auto 8px;
    }

    .newsletter .section-body {
      margin: 0 auto 36px;
      text-align: center;
    }

    .newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      border: 2px solid var(--taupe);
      border-right: none;
      padding: 14px 20px;
      font-family: 'Jost', sans-serif;
      font-size: .85rem;
      background: var(--warm-white);
      color: var(--dark);
      outline: none;
      border-radius: 40px 0 0 40px;
    }

    .newsletter-form input::placeholder {
      color: var(--taupe);
    }

    .newsletter-form button {
      background: #c97c4a;
      color: #fff;
      border: 2px solid #c97c4a;
      padding: 14px 28px;
      font-family: 'Jost', sans-serif;
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      white-space: nowrap;
      border-radius: 0 40px 40px 0;
      font-weight: 500;
    }

    .newsletter-form button:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    /* CONTACT */
    .contact {
      background: #5c4535;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      padding: 80px 80px;
      color: var(--cream);
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 32px;
      color: var(--cream);
    }

    .contact-detail {
      margin-bottom: 20px;
    }

    .contact-detail-label {
      font-size: .62rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 4px;
    }

    .contact-detail-val {
      font-size: .9rem;
      color: var(--cream);
      opacity: .8;
      line-height: 1.6;
    }

    .map-placeholder {
      height: 220px;
      margin-bottom: 24px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .map-grid {
      position: absolute;
      inset: 0;
      background: url("images/map-pattern.jpg") center/cover no-repeat;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: rgba(245, 240, 232, 0.06);
      border: 1px solid rgba(196, 180, 154, 0.2);
      padding: 13px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .85rem;
      color: var(--cream);
      outline: none;
      margin-bottom: 14px;
      transition: border-color .2s;
      resize: vertical;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(196, 180, 154, 0.45);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--accent);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
    }

    .contact-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .contact-checks {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 100px;
      margin-bottom: 24px;
      align-items: center;
    }

    .contact-check {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .8rem;
      color: rgba(245, 240, 232, 0.55);
      cursor: pointer;
      margin-top: 10px;
      white-space: nowrap;
    }

    .contact-check input[type="checkbox"] {
      accent-color: var(--accent);
    }

    .btn-submit {
      background: var(--accent);
      color: var(--cream);
      border: 2px solid var(--accent);
      padding: 13px 36px;
      font-family: 'Jost', sans-serif;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      border-radius: 40px;
      font-weight: 500;
    }

    .btn-submit:hover {
      background: #fff;
      color: var(--accent);
    }

    /* FOOTER */
    footer {
      background: #3a2d20;
      padding: 48px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo img {
      height: 64px;
      width: auto;
      background: #fff;
      border-radius: 50%;
      display: block;
    }

    .footer-nav {
      display: flex;
      gap: 50px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-nav a {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, 0.4);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-nav a:hover {
      color: var(--cream);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(196, 180, 154, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--taupe);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 600;
      transition: all .2s;
    }

    .footer-social a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .footer-copy {
      width: 100%;
      text-align: center;
      font-size: .65rem;
      letter-spacing: .15em;
      color: rgba(245, 240, 232, 0.2);
      margin-top: 16px;
      padding-top: 24px;
      border-top: 1px solid rgba(196, 180, 154, 0.1);
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .book-carousel-wrap {
      display: none;
    }

    .book-dots {
      display: none;
    }

    .cards-nav {
      /* reset du style natif du <button> */
      appearance: none;
      -webkit-appearance: none;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      font-family: inherit;
      line-height: 1;

      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #e4d9c8;
      background: #f5f0e8;
      color: #1f2a3c;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .cards-nav:hover {
      background: #fff;
      border-color: #c97c4a;
      color: #c97c4a;
    }

    .cards-nav:disabled {
      opacity: 0.35;
      cursor: default;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {

      /* BOOK CAROUSEL - mobile only */
      .book-carousel-wrap {
        display: flex;
        /* ← corrigé, était "none" */
        align-items: center;
        gap: 8px;
        max-width: 360px;
        margin: 40px auto 0;
        padding: 0 8px;
      }

      .book-viewport {
        overflow: hidden;
        flex: 1;
      }

      .book-track {
        display: flex;
        gap: 16px;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
      }

      .book-track .book-option {
        flex: 0 0 100%;
        min-width: 0;
      }

      .book-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
      }

      .book-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(245, 240, 232, 0.3);
        cursor: pointer;
        transition: background .2s, transform .2s;
        display: block;
      }

      .book-dots span.active {
        background: #c97c4a;
        transform: scale(1.3);
      }

      .cards-nav {
        width: 36px;
        height: 36px;
        font-size: .9rem;
      }


      .nav {
        padding: 12px 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-right .btn-book {
        display: none;
      }

      .burger {
        display: flex;
      }

      section {
        padding: 64px 20px
      }

      /* HAPPENING CAROUSEL - mobile only */
      .cards-carousel-wrap {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 40px;
        overflow: visible;
      }

      .cards-viewport {
        overflow: hidden !important;
        flex: 1;
        width: 100%;
      }

      .cards-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 16px;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
        width: 100%;
      }


      .cards-track .card {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
      }


      .cards-carousel-wrap .cards-nav {
        display: none;
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 36px;
        height: 50px;
        font-size: .9rem;
        z-index: 2;
      }

      .cards-prev {
        left: 0;
      }

      .cards-next {
        right: 0;
      }

      .cards-dots {
        display: flex;
      }


      .cards-nav {
        width: 36px;
        height: 36px;
        font-size: .9rem;
      }

      .birthday-section {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 56px 20px;
      }

      .birthday-img {
        min-height: 240px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .birthday-img-inner {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        transform: none;
      }

      .zones {
        padding: 64px 0;
      }

      .birthday-content {
        padding: 36px 20px;
      }

      .zones-header {
        padding: 0 20px;
        margin-bottom: 48px;
      }

      .zone-row,
      .zone-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        margin-top: 50px;
      }

      .zone-img {
        min-height: 180px;
      }

      .zone-img-inner-1,
      .zone-img-inner-2 {
        width: 300px;
        height: 300px;
      }

      .zone-content {
        padding: 36px 20px;
      }

      .zone-content .section-title {
        font-size: 1.6rem;
      }

      .book-options {
        display: none;
      }

      .book-carousel-wrap {
        display: flex;
      }

      .book-dots {
        display: flex;
      }

      .cafe {
        grid-template-columns: 1fr;
      }

      .cafe-content {
        padding: 28px 20px;
      }

      .cafe-img {
        min-height: 100px;
        max-width: 100%;
        padding-bottom: 20px;
      }

      .cafe-carousel {
        width: 300px;
        height: 300px;
      }

      .newsletter {
        padding: 60px 20px;
      }

      .newsletter-form {
        flex-direction: column;
        gap: 10px;
      }

      .newsletter-form input {
        border-right: 2px solid var(--taupe);
        border-radius: 40px;
      }

      .newsletter-form button {
        border-radius: 40px;
        padding: 14px 28px;
      }

      .contact {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
      }

      .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .contact-checks {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
      }

      .contact-check {
        white-space: nowrap;
        text-align: center;
        justify-content: center;
        max-width: 100%;
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
      }

      .footer-nav {
        justify-content: center;
        gap: 16px;
      }

      .hero-eyebrow {
        font-family: 'Jost', sans-serif;
        font-size: clamp(1rem, 2.2vw, 1.4rem);
        font-weight: 300;
        font-style: normal;
        color: rgba(245, 240, 232, 0.9);
        letter-spacing: .35em;
        text-transform: uppercase;
      }

      .hero-eyebrow2 {
        font-family: 'Jost', sans-serif;
        font-size: clamp(1rem, 2.2vw, 1.4rem);
        font-weight: 300;
        font-style: normal;
        color: rgba(245, 240, 232, 0.9);
        letter-spacing: .35em;
        text-transform: uppercase;
      }

      .hero-logo {
        width: min(380px, 88vw);
      }
    }



    /* LANG SWITCHER */
    .lang-switcher {
      position: relative;
    }

    .lang-current {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--cream);
      padding: 6px 12px;
      border-radius: 40px;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: all .2s;
      white-space: nowrap;
    }

    .lang-current:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .lang-flag {
      font-size: 1rem;
    }

    .lang-caret {
      font-size: .6rem;
      opacity: .7;
      transition: transform .2s;
    }

    .lang-switcher.open .lang-caret {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #3a2d20;
      border: 1px solid rgba(196, 180, 154, 0.2);
      border-radius: 12px;
      overflow: hidden;
      list-style: none;
      padding: 6px 0;
      min-width: 140px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
      z-index: 9999;
    }

    .lang-switcher.open .lang-dropdown {
      display: block;
    }

    .lang-dropdown li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .8rem;
      color: var(--cream);
      cursor: pointer;
      transition: background .15s;
      letter-spacing: .05em;
    }

    .lang-dropdown li:hover {
      background: rgba(201, 124, 74, 0.2);
    }

    .lang-dropdown li.active {
      color: #c97c4a;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .lang-switcher {
        display: none;
      }
    }

    /* ── iPad Pro 11" (portrait 834px → paysage 1194px) ── */
    @media (min-width: 769px) and (max-width: 1194px) {

      /* Cartes carousel "Ce qui se passe" — pas encore assez large pour tout afficher côte à côte */
      .cards-track .card {
        flex: 0 0 45% !important;
        width: 45% !important;
        max-width: 45% !important;
      }

      /* Image zone (blob asymétrique) — réduite par rapport au desktop */
      .zone-img-inner-1,
      .zone-img-inner-2 {
        width: 320px;
        height: 320px;
      }

      .zone-img {
        min-height: 340px;
      }

      /* Image anniversaire */
      .birthday-img-inner {
        width: 320px;
        height: 320px;
        margin: 0 auto;
        transform: none;
      }

      .birthday-img {
        min-height: 340px;
      }

      /* Carousel café */
      .cafe-carousel {
        width: 280px;
        height: 280px;
      }

      /* Sections : padding intermédiaire entre mobile et desktop */
      section {
        padding: 72px 40px;
      }

      .zones-header,
      .zone-content,
      .birthday-content,
      .cafe-content {
        padding: 40px;
      }

      /* Nav : garder le menu desktop mais resserré */
      .nav {
        padding: 16px 32px;
      }

      .nav-links {
        display: none;
        gap: 20px;
      }

      .nav-right .btn-book {
        display: none;
      }

      .burger {
        display: flex;
      }

      .book-options {
        display: none;
      }

      .book-carousel-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 420px;
        margin: 40px auto 0;
        padding: 0 8px;
      }

      .book-viewport {
        overflow: hidden;
        flex: 1;
      }

      .book-track {
        display: flex;
        gap: 16px;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
      }

      .book-track .book-option {
        flex: 0 0 100%;
        min-width: 0;
      }

      /* Contact form réduit */
      .contact-form-row {
        max-width: 480px;
      }

      .contact-form-row input,
      .contact-form-row textarea {
        padding: 12px 16px;
      }

      /* Footer centré comme mobile */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
      }

      .footer-nav {
        justify-content: center;
        gap: 16px;
      }

      /* ── Flèches nav : nouveau style cohérent avec le design ── */
      .book-carousel-wrap .cards-nav,
      .cards-carousel-wrap .cards-nav {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--warm-white);
        border: 2px solid #c97c4a;
        color: #c97c4a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all .2s;
        cursor: pointer;
      }

      .book-carousel-wrap .cards-nav:hover,
      .cards-carousel-wrap .cards-nav:hover {
        background: #c97c4a;
        color: #fff;
        border-color: #c97c4a;
      }

      /* ── Dots book carousel ── */
      .book-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
      }

      .book-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(30, 42, 58, 0.2);
        cursor: pointer;
        transition: background .2s, transform .2s;
        display: block;
      }

      .book-dots span.active {
        background: #c97c4a;
        transform: scale(1.3);
      }
    }

    /* ── iPad Pro 11" — PAYSAGE (largeur ~1194px) ── */
    @media (min-width: 1000px) and (max-width: 1300px) {

      /* Nav : menu complet mais resserré */
      .nav-links {
        display: flex !important;
        gap: 32px !important;
        font-size: 0.85rem !important;
      }

      .burger {
        display: none !important;
      }

      .nav-right .btn-book {
        display: inline-flex !important;
      }

      /* Footer centré comme mobile */
      footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 40px 20px !important;
      }

      .footer-nav {
        justify-content: center !important;
        gap: 16px !important;
      }
    }

    /* BIRTHDAY ROW (Anniversaire.html) */
    .birthday-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      max-width: 1000px;
      margin: 0 auto;
    }

    .birthday-row.reverse {
      direction: rtl;
    }

    .birthday-row.reverse>* {
      direction: ltr;
    }

    @media (max-width: 768px) {

      .birthday-row,
      .birthday-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }
    }


    /* ZONE IMG INNER (single-image zone rows: notre-histoire.html, nos-espaces.html) */
    .zone-img-inner {
      width: 340px;
      height: 340px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      clip-path: polygon(8% 0%, 92% 2%, 100% 12%, 98% 88%, 90% 100%, 10% 98%, 0% 88%, 2% 10%);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .zone-img-inner {
        width: 220px;
        height: 220px;
      }
    }

    /* ── ANNIVERSAIRE — INTRO ── */

    .hero-bday-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(16px, 4vw, 50px);
      padding-top: 30px;
      max-width: 700px;
      margin: 0 auto;
    }

    .hero-bday-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2px;
    }

    .hero-bday-img {
      width: clamp(40px, 6vw, 70px);
      height: clamp(40px, 6vw, 70px);
      object-fit: contain;
    }

    .hero-bday-val {
      font-weight: bold;
      font-size: clamp(.75rem, 1.5vw, 1rem);
      color: var(--cream);
    }

    .hero-bday-label {
      font-size: clamp(.65rem, 1.2vw, .85rem);
      color: rgba(245, 240, 232, 0.7);
    }

    @media (max-width: 480px) {
      .hero-bday-grid {
        gap: 30px;
        max-width: 80%;
      }

      .hero-bday-img {
        width: 30px;
        height: 30px;
      }

      .hero-bday-item {
        gap: 0;
      }

    }

    .bday-intro {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 40px 60px;
    }

    .bday-intro h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .bday-intro p {
      font-size: .92rem;
      line-height: 1.85;
      color: #5a5248;
      margin-bottom: 16px;
    }

    .bday-illustration {
      display: flex;
      justify-content: center;
    }

    /* ── ANNIVERSAIRE — FORMULE PILLS ── */
    .formule-pills {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px 40px 80px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .formule-pill {
      background: #CEB59E;
      border-radius: 200px 28px 28px 200px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      padding-left: 8%;
    }

    .formule-pill-icon {
      width: 200px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 30px;
    }

    .formule-pill-icon-circle {

      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
    }

    .formule-pill-main {
      width: 190px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 6px;
      padding: 24px 12px;
    }

    .formule-pill-main h3 {
      font-family: 'Abril FatFace', serif;
      letter-spacing: .04em;
      font-size: 1.65rem;
      font-weight: 600;
      color: #4A342A;
      margin: 0;
    }

    .formule-pill-price {
      font-family: 'Playfair Display', sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: #4A342A;
      line-height: 1.2;
    }

    .formule-pill-price span {
      font-size: .68rem;
      font-weight: 400;
      color: #7a6e5c;
      display: block;
    }

    .formule-pill-btn {
      margin-top: 8px;
      padding: 9px 26px;
      border: 1.5px solid var(--dark);
      border-radius: 30px;
      font-family: 'Jost', sans-serif;
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: transparent;
      color: var(--dark);
      cursor: pointer;
      transition: background .25s, color .25s;
    }

    .formule-pill-btn:hover {
      background: var(--dark);
      color: var(--cream);
    }

    .formule-pill-panel {
      flex: 1;
      background: #CEB59E;
      padding: 22px 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
    }

    .formule-pill-panel-header {
      font-family: 'Abril Fatface';
      font-size: 1.2rem;
      text-transform: uppercase;
      color: #4A342A;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .formule-pill-time {
      font-family: 'Playfair Display', sans-serif;
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      color: #fff;
      font-style: italic;
      margin-bottom: 10px;
    }

    .formule-pill-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .formule-pill-list li {
      font-size: 0.9rem;
      color: #4a4438;
      position: relative;
      padding-left: 18px;
      line-height: 1.5;
    }

    .formule-pill-list li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    /* ── ANNIVERSAIRE — OPTIONS ── */
    .options-section {
      background: var(--warm-white);
      padding: 30px 30px;
      text-align: center;
    }

    .options-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      color: #4A342A;
      margin-bottom: 12px;
    }

    .options-section>p {
      font-size: .9rem;
      color: #4A342A;
    }

    .options-grid {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-top: 44px;
    }

    .option-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 160px;
    }

    .option-circle {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.1rem;
      box-shadow: 0 8px 22px rgba(30, 42, 58, 0.1);
    }

    .img-option-circle {
      width: 50%;
    }

    .img-option-circle2 {
      width: 65%;
    }

    .option-label {
      font-family: 'Jost', sans-serif;
      font-size: .82rem;
      color: var(--dark);
      font-weight: 500;
    }

    .option-price {
      font-family: 'Jost', sans-serif;
      font-size: .9rem;
      color: var(--accent);
      font-weight: 600;
    }

    /* ── ANNIVERSAIRE — DEROULE ── */


    .deroule-inner {
      max-width: 720px;
      margin: 20px auto;
      background: var(--warm-white);
      padding: 20px 30px;
      text-align: center;

    }

    .deroule-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      color: #4A342A;
      text-align: center;
      margin-bottom: 12px;
    }

    .deroule-section {
      background: var(--warm-white);
      padding: 30px 30px;
      text-align: center;
    }

    .deroule-inner>p {
      font-size: .9rem;
      color: #4A342A;
    }

    .deroule-timeline {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin-top: 44px;
      overflow: visible;
      /* ← change hidden en visible */
      padding: 0;
    }

    .deroule-carousel-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
    }

    .deroule-dots {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .deroule-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--taupe);
      cursor: pointer;
      transition: background .2s, transform .2s;
      display: block;
    }

    .deroule-dots span.active {
      background: #c97c4a;
      transform: scale(1.3);
    }

    .deroule-grid {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: visible;
    }

    .deroule-circle-wrap {
      position: relative;
      display: inline-flex;
      overflow: visible;
    }

    .deroule-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #c97c4a;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      border: 2px solid #fff;
    }

    .deroule-circle {
      position: relative;
      width: 150px;
      height: 150px;
      min-width: 150px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #5c4535;
      flex-shrink: 0;
    }

    .img-deroule-circle {
      width: 60%;
    }

    .img-deroule-line {
      width: 150px;
      min-width: 40px;
      flex-shrink: 0;
      align-self: center;
      /* centre la ligne verticalement entre les cercles */
      padding-bottom: 0;
      /* supprime le padding */
      margin-top: 75px;
      /* aligne avec le centre des cercles */
    }

    .deroule-circle-title {
      font-family: 'Playfair Display', serif;
      font-weight: bold;
      padding-top: 15px;
      color: #4A342A;
    }

    .deroule-circle-text {
      width: 160px;
      font-family: 'Playfair Display', serif;
      font-size: 0.90em;
      color: #4A342A;
    }

    @media (max-width: 768px) {

      .deroule-carousel-wrap {
        width: 100%;
        padding: 20px 8px;
        gap: 44px;
      }

      .deroule-timeline {
        /* largeur fixe = juste un cercle visible */
        width: 200px;
        min-width: 200px;
        overflow: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
        margin-top: 0;
      }

      .deroule-timeline::-webkit-scrollbar {
        display: none;
      }

      .deroule-circle {
        scroll-snap-align: center;
        width: 200px;
        height: 200px;
        min-width: 200px;
        flex-shrink: 0;
      }

      .img-deroule-line {
        display: none;
        /* on cache les lignes sur mobile */
      }

      .deroule-dots {
        display: flex;
      }

      .deroule-carousel-wrap {
        width: 100%;
        padding: 0 8px;
      }

      .deroule-grid {
        overflow: hidden;
        width: 200px;
        min-width: 200px;
        flex-shrink: 0;
      }
    }

    /* ── ANNIVERSAIRE — DETAILS ── */
    .details-section {
      background: transparent;
      /* supprime le fond sur la section */
      margin-top: 60px;
      margin-bottom: 60px;
      padding: 0 40px;
    }

    .details-frame {
      max-width: 1200px;
      margin: 0 auto;
      background: #E8E1D5;
      border-radius: 20px;
      padding: 40px 40px;
    }

    .details-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .details-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      color: #4A342A;
      text-align: center;
      margin-bottom: 22px;
    }

    .details-grid {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 80px;
    }

    .info-pratiques {
      display: flex;
      flex-direction: row;
      gap: 10px;
    }

    .img-info-pratiques {
      width: 40px;
      height: 40px;
      align-self: center;
    }

    .details-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;

      color: #4A342A;
    }

    .details-list li {
      font-size: .9rem;
      line-height: 1.75;
      color: #4a4438;
      position: relative;
      padding-left: 22px;
    }

    .details-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .details-dots {
      display: none;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .details-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c4b49a;
      cursor: pointer;
      transition: background .2s, transform .2s;
      display: block;
    }

    .details-dots span.active {
      background: #c97c4a;
      transform: scale(1.3);
    }

    /* TABLETTE */
    @media (min-width: 769px) and (max-width: 1024px) {
      .details-frame {
        overflow: hidden;
        padding: 32px 0;
        box-sizing: border-box;
        width: 100%;
      }

      .details-grid {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
      }

      .details-grid::-webkit-scrollbar {
        display: none;
      }

      .info-pratiques {
        scroll-snap-align: start;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 16px 32px;
      }

      .details-dots {
        display: flex;
      }
    }

    @media (min-width: 1025px) {
      .details-dots {
        display: none !important;
      }
    }

    @media (max-width: 1024px) {
      .details-frame {
        overflow: hidden;
        padding: 32px 20px;
        box-sizing: border-box;
      }

      .details-grid {
        position: relative;
        width: 100%;
      }

      .info-pratiques {
        display: none;
        width: 100%;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 16px 24px;
      }

      .info-pratiques.active {
        display: flex;
      }

      .details-dots {
        display: flex;
      }
    }

    @media (min-width: 1025px) {
      .details-dots {
        display: none;
      }

      .info-pratiques {
        display: flex !important;
      }
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .details-section {
        padding: 0 !important;
        margin: 40px 0;
      }

      .details-frame {
        overflow: hidden;
        padding: 32px 0;
        box-sizing: border-box;
        width: 100vw;
        border-radius: 0;
      }

      .details-inner {
        padding: 0 20px;
      }

      .details-grid {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        width: 100vw;
        display: flex;
        flex-direction: row;
      }

      .details-grid::-webkit-scrollbar {
        display: none;
      }

      .info-pratiques {
        scroll-snap-align: start;
        flex-shrink: 0;
        flex: 0 0 100vw;
        width: 100vw;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        padding: 16px 32px;
      }

      .details-dots {
        display: flex;
        padding: 0 20px;
      }
    }

    @media (max-width: 768px) {
      .bday-intro {
        grid-template-columns: 1fr;
        padding: 56px 20px 40px;
        gap: 32px;
        text-align: center;
      }

      .formule-pills {
        padding: 10px 20px 60px;
      }

      .formule-pill {
        border-radius: 28px;
        flex-direction: column;
        padding-left: 0;
      }

      .formule-pill-icon {
        width: auto;
        padding-top: 24px;
      }

      .formule-pill-main {
        width: auto;
        padding: 12px 20px 20px;
      }

      .arrow {
        display: none;
      }

      .formule-pill-panel {
        padding: 20px 24px 28px;
      }

      .options-grid {
        gap: 28px;
      }
    }

    /* ── PAGE-SPECIFIC ── */
    .page-hero {
      background: #5c4535;
      padding: 160px 40px 80px;
      text-align: center;
      color: var(--cream);
    }

    .page-hero .section-label {
      color: #c97c4a;
      margin-bottom: 12px;
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 400;
      margin: 0 0 20px;
      color: var(--cream);
    }

    .page-hero p {
      font-size: 1rem;
      color: rgba(245, 240, 232, 0.7);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .page-section {
      padding: 80px 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .page-section p {
      font-size: .95rem;
      color: #5a5a5a;
      line-height: 1.9;
      max-width: 680px;
    }

    .formules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 48px;
    }

    .formule-card {
      background: var(--sand);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: transform .3s, box-shadow .3s;
    }

    .formule-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(30, 42, 58, 0.1);
    }

    .formule-icon {
      font-size: 2.4rem;
    }

    .formule-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--dark);
      margin: 0;
    }

    .formule-card p {
      font-size: .85rem;
      color: #6a6a6a;
      line-height: 1.7;
      margin: 0;
    }

    .formule-prix {
      font-family: 'Jost', sans-serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #c97c4a;
      margin-top: 4px;
    }

    .formule-prix span {
      font-size: .75rem;
      font-weight: 400;
      color: #9a9a9a;
      display: block;
      margin-top: 2px;
    }

    .inclus-section {
      background: var(--warm-white);
      padding: 80px 40px;
    }

    .inclus-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .inclus-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 40px;
      text-align: center;
    }

    .inclus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }

    .inclus-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: .9rem;
      color: var(--dark);
      line-height: 1.7;
    }

    .inclus-item .check {
      color: #c97c4a;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cta-band {
      background: #3a2d20;
      padding: 32px 40px;
      text-align: center;
      color: var(--cream);
    }

    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 400;
      margin-bottom: 22px;
    }

    .cta-band p {
      color: rgba(245, 240, 232, 0.65);
      font-size: .95rem;
      margin-bottom: 32px;
    }

    @media (max-width: 768px) {
      .page-hero {
        padding: 140px 20px 60px;
      }

      .page-section {
        padding: 60px 20px;
      }

      .inclus-section {
        padding: 60px 20px;
      }

      .cta-band {
        padding: 20px 20px;
      }
    }


    /* ── LEGAL / CGV ── */
    .lang-block {
      display: none;
    }

    .lang-block.active {
      display: block;
    }

    .legal-lang-note {
      text-align: center;
      font-size: .8rem;
      color: rgba(245, 240, 232, 0.65);
      margin-top: 4px;
    }

    .legal-section {
      padding: 80px 40px 100px;
      max-width: 760px;
      margin: 0 auto;
    }

    .legal-meta {
      background: var(--warm-white);
      border: 1px solid var(--sand);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 8px;
    }

    .legal-meta p {
      font-size: .85rem;
      line-height: 1.9;
      color: #5a6a7a;
      margin: 0;
    }

    .legal-meta p strong {
      color: var(--dark);
    }

    .legal-lang-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 64px 0 28px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--sand);
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--dark);
    }

    .legal-lang-header:first-of-type {
      margin-top: 40px;
    }

    .legal-article {
      margin-bottom: 8px;
    }

    .legal-article h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--dark);
      margin: 36px 0 12px;
    }

    .legal-article p {
      font-size: .92rem;
      line-height: 1.85;
      color: #4a4a4a;
      margin-bottom: 14px;
    }

    .legal-article ul {
      margin: 0 0 16px 0;
      padding-left: 20px;
      list-style: none;
    }

    .legal-article li {
      position: relative;
      font-size: .92rem;
      line-height: 1.85;
      color: #4a4a4a;
      margin-bottom: 10px;
      padding-left: 18px;
    }

    .legal-article li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .legal-article a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 124, 74, 0.35);
      transition: border-color .2s;
    }

    .legal-article a:hover {
      border-color: var(--accent);
    }

    @media (max-width: 768px) {
      .legal-section {
        padding: 56px 20px 60px;
      }

      .legal-meta {
        padding: 22px 20px;
      }

      .legal-lang-header {
        font-size: 1.4rem;
        margin: 48px 0 20px;
      }
    }