/* Groupe icônes navbar */
/* ===== DESKTOP — nav-icons transparent ===== */
.nav-icons {
  display: contents;
}
/* ===== BURGER MENU ===== */
.burger-btn {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger-btn span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn span:nth-child(1) { top: 10px; }
.burger-btn span:nth-child(2) { top: 17px; }
.burger-btn span:nth-child(3) { top: 24px; }

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

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

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

/* Paddlenav — PLANS */
.paddlenav--plans {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 4vw;
  transform: translateY(-50%);
  pointer-events: none;
}

.paddlenav--plans .paddlenav-arrow {
  pointer-events: auto;
}
/* === PLANS — MEME COMPORTEMENT QUE PHOTOS === */
.plan-item {
  position: relative;
  flex: 0 0 70vw;
  height: clamp(280px, 45vw, 960px);
  border-radius: 28px;
  overflow: hidden;
  background: #0b0b0b;

  opacity: 0;
  filter: blur(6px);

  transition:
    opacity 0.8s ease,
    filter 0.8s ease;
}

.plan-item.is-current {
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.plan-item.is-adjacent {
  opacity: 0.75;
  filter: blur(2px);
  z-index: 2;
}

.plan-item.is-clone {
  pointer-events: none;
  opacity: 0.6;
  filter: blur(3px);
  z-index: 1;
}

/* Flexibilité date Oui/Non style */
.flexible-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.flexible-options {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flexible-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.radio-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.radio-inline input[type="radio"] {
  margin: 0;
}
:root {
  --sand-100: #f6f1e7;
  --sand-200: #eee5d7;
  --sand-300: #e2d6c5;
  --brown-600: #8a5a3b;
  --brown-700: #6f4730;
  --olive-500: #5c6b5c;
  --olive-600: #4d5a4d;
  --ink-900: #2a2320;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(34, 24, 16, 0.18);
}

.landing-body {
  background: var(--sand-100);
  color: var(--ink-900);
  font-family: "Karla", sans-serif;
}

.landing-body a {
  color: inherit;
  text-decoration: none;
}

.landing {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(30, 22, 16, 0.55) 0%, rgba(30, 22, 16, 0.7) 100%),
    url("/assets/img/35.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 32px 8vw 80px;
}

/* ===== NAVBAR POSITION ===== */
.landing-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase; */
}

.landing-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(1.1);
}

.landing-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-menu a {
  opacity: 0.85;
}

.landing-menu a:hover {
  opacity: 1;
}

.landing-cta {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-nav .btn-primary,
.landing-nav .btn-ghost {
  background: var(--sand-100);
  color: black;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.landing-nav a.active {
  background: var(--olive-500);
  color: var(--white);
  border-color: var(--olive-500);
}

.landing-nav a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-content {
  /* max-width: 560px; */
  margin: 0 auto;
  min-height: calc(92vh - 0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 18px !important;
  line-height: 1.6;
  opacity: 0.92;
  text-align: center;
  color: var(--sand-200);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 30px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--olive-500);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--olive-600);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* ===== NAVBAR — BOUTONS ICONES (ACCUEIL / LOGIN) ===== */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: var(--sand-100);
  color: #000;
  border: 1px solid rgba(0,0,0,0.15);

  font-size: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.fa-solid {
  color: #000;
}
.btn-icon i {
  pointer-events: none;
}

.btn-icon:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-1px);
}



/* Séparateurs blancs spécifiques */

/* Entre header (hero) et première section */
.landing-hero + .landing-section {
  position: relative;
}

.landing-hero + .landing-section::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.85);
}

/* Entre deux sections */
.landing-section + .landing-section {
  position: relative;
}

.landing-section + .landing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.85);
}

/* Au-dessus du footer */
.landing-section + .landing-footer {
  position: relative;
}

.landing-section + .landing-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.85);
}

.landing-section {
  padding: 100px 0vw 90px;
  background: var(--sand-100);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown-700);
  margin-bottom: 12px;
}

.section-title h2,
.about-text h2,
.contact-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.media-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.spaces {
  background: var(--sand-200);
}

.spaces-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}

.spaces-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spaces-list li {
  opacity: 0.6;
}

.spaces-list li.active {
  opacity: 1;
  color: var(--brown-700);
  font-weight: 600;
}

.spaces-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact {
  background: var(--sand-200);
  padding: 300px 0;
}

.contact-card {
  max-width: 860px;
  margin: 0 auto;
  /* background: var(--white); */
  padding: 48px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--sand-300);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Karla", sans-serif;
  background: var(--sand-100);
}

.contact-form select {
  width: 100%;
  height: 44px;

  border: 1px solid var(--sand-300);
  border-radius: 10px;

  padding: 12px 38px 12px 14px;
  font-size: 14px;
  font-family: "Karla", sans-serif;

  background-color: var(--sand-100);
  color: rgba(0, 0, 0, 0.7);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.45) 50%),
    linear-gradient(135deg, rgba(0,0,0,0.45) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;

  cursor: pointer;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--olive-500);
  color: rgba(0, 0, 0, 0.8);
}

.contact-form select option[disabled] {
  color: rgba(0, 0, 0, 0.45);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.landing-footer {
  background: var(--sand-200);
  color: rgba(0, 0, 0, 0.8);
  padding: 50px 8vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  font-size: 14px;
  text-align: center;
  align-items: start;
}

.footer-columns > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-columns h4 {
  color: rgb(0,0,0, 0.8);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-cards {
    grid-template-columns: 1fr;
  }

  .spaces-layout {
    grid-template-columns: 1fr;
  }
  .contact{
    padding: 120px 0;
  }
}
@media (max-width: 1500px) {
  .contact{
    padding: 120px 0;
  }
}

@media (max-width: 900px) {
  .landing-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-menu {
    flex-wrap: wrap;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }
  .contact{
    padding: 120px 0;
  }
}

@media (max-width: 700px) {
  /* ===== MOBILE — nav-icons groupés en haut ===== */
  .nav-menu .nav-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
  }

  .nav-menu .nav-icons .btn-icon {
    flex: 0 0 auto;
  }

  /* Burger visible et aligné à gauche */
  .landing-nav {
    left: 16px;
    transform: none;
    justify-content: flex-start;
  }

  .burger-btn {
    display: block;
    z-index: 40;
  }

  /* ===== MENU OFF-CANVAS GAUCHE ===== */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;

    height: 100vh;
    width: 80vw;
    max-width: 320px;

    background: var(--sand-100);
    padding: 90px 20px 24px;

    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;

    box-shadow: 18px 0 40px rgba(0,0,0,0.25);

    transform: translateX(-100%);
    transition: transform 0.35s ease;

    z-index: 35;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .hero-actions {
    margin: 0;
  }
  .landing-hero {
    padding: 28px 6vw 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-section {
    padding: 70px 6vw;
  }

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

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

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
  .tvplus-gallery,
  .landing-section,
  .contact,
  .landing-hero {
    overflow-x: hidden;
  }
  .hero-content p {
    font-size: 16px !important;
  }
}


/* Apple TV inspired gallery */
.tvplus-gallery {
  position: relative;
  overflow: hidden;
}

.item-container {
  display: flex;
  align-items: center;
  gap: 40px; /* ESPACE ENTRE LES SLIDES */
  padding-left: 0;
  padding-right: 0;
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}

@media (max-width: 900px) {
  .item-container {
    gap: 20px;
  }
}

/* === GALLERY SLIDES — TAILLE IDENTIQUE, PAS DE SCALE === */
.gallery-item {
  position: relative;
  flex: 0 0 70vw;
  height: clamp(280px, 45vw, 960px);
  border-radius: 28px;
  overflow: hidden;

  transform: scale(1);
  opacity: 0;
  filter: blur(6px);

  transition:
    opacity 0.8s ease,
    filter 0.8s ease;
}

.gallery-item:first-child {
  margin-left: 0;
}

.gallery-item.is-current {
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.gallery-link {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.gallery-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* Bande d'informations en bas des photos */
/* Bande d'informations blanche translucide */
.gallery-info-bar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.gallery-info-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.gallery-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-info-item i {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin-right: 6px;
}

.inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 42px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.meta {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta .dot {
  margin: 0 6px;
}

.paddlenav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 4vw;
  transform: translateY(-50%);
  pointer-events: none;
}

.paddlenav-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  position: relative;
}

.paddlenav-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: solid #1b1b1b;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(135deg);
}

.paddlenav-arrow.next::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dotnav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.dotnav-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
}

.dotnav-item.is-current {
  width: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
}

.gallery-play-pause {
  position: absolute;
  right: 5vw;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-play-pause::before,
.gallery-play-pause::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 4px;
  height: 18px;
  background: #fff;
}

.gallery-play-pause::before {
  left: 14px;
}

.gallery-play-pause::after {
  right: 14px;
}

.gallery-play-pause.is-playing::after,
.gallery-play-pause.is-playing::before {
  opacity: 1;
}

.gallery-play-pause:not(.is-playing)::before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #fff;
  left: 14px;
  top: 12px;
  background: none;
}

.gallery-play-pause:not(.is-playing)::after {
  display: none;
}

@media (max-width: 900px) {
  .paddlenav {
    display: none;
  }

  .gallery-play-pause {
    right: 10px;
  }
}

/* Bottom info */
.card-meta {
  position: absolute;
  left: 56px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  gap: 28px;
  padding: 16px 26px;
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Clone Apple-style (peek left) */
/* Slides adjacentes (passée / à venir — même taille que l’active) */
.gallery-item.is-adjacent {
  opacity: 0.75;
  filter: blur(2px);
  z-index: 2;
}

/* Clones (hors focus) */
.gallery-item.is-clone {
  pointer-events: none;
  opacity: 0.6;
  filter: blur(3px);
  z-index: 1;
}

footer {
  background: var(--sand-200);
  color: rgba(0, 0, 0, 0.8);
}

/* Switch Photos / Plans */
.gallery-switch {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
}

.switch-btn {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}

.switch-btn.is-active {
  background: var(--olive-500);
  color: white;
  border-color: var(--olive-500);
}

/* Transition carrousels */
.tvplus-gallery {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.tvplus-gallery.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  position: absolute;
  width: 100%;
}

/* Dotnav & play/pause — PLANS */
.dotnav--plans {
  margin-top: 12px;
}

.gallery-play-pause--plans {
  right: 5vw;
  bottom: 18px;
}
/* ===== BOUTONS — TAILLE UNIFIÉE (MIN LARGEUR) ===== */
.btn-primary,
.btn-ghost,
.switch-btn,
.landing-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  min-width: 210px;          /* 🔒 largeur MIN = "DEMANDER UN DEVIS" */
  padding: 0 26px;
  border-radius: 999px;

  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.btn-ghost{
  min-width: 245px;
}
@media (max-width: 700px) {
  .btn-primary,
  .btn-ghost,
  .switch-btn,
  .landing-menu a {
    min-width: 100%;
  }
}

/* ===== FORMULAIRE — TEXTE GRIS UNIFIÉ ===== */
.contact-form,
.contact-form label,
.contact-form span,
.contact-form p {
  color: rgba(0, 0, 0, 0.65);
}

.contact-form input,
.contact-form textarea {
  color: rgba(0, 0, 0, 0.7);
}

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

.flexible-checkbox,
.flexible-options span,
.radio-inline span {
  color: rgba(0, 0, 0, 0.65);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive-500);
  color: rgba(0, 0, 0, 0.8);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form .field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.6);
  padding-left: 10px;
}
/* ===== MOBILE — CARROUSEL SIMPLIFIÉ ===== */
@media (max-width: 700px) {
  .tvplus-gallery {
    overflow: hidden;
  }

  .item-container {
    gap: 12px;
  }

  .gallery-item,
  .plan-item {
    flex: 0 0 88vw;       /* quasi plein écran */
    height: 60vw;        /* ratio plus lisible */
    border-radius: 20px;
  }

  /* Pas de blur ni peek Apple sur mobile */
  .gallery-item.is-adjacent,
  .gallery-item.is-clone,
  .plan-item.is-adjacent,
  .plan-item.is-clone {
    opacity: 0;
    filter: none;
  }

  /* Info bar plus compacte */
  .gallery-info-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .gallery-info-title {
    font-size: 14px;
  }

  .gallery-info-meta {
    gap: 12px;
    font-size: 10px;
  }

  /* Désactiver paddlenav sur mobile */
  .paddlenav,
  .paddlenav--plans {
    display: none;
  }

  /* Dotnav plus visible */
  .dotnav {
    margin-top: 18px;
  }
  .info-bottom {
    display: none;
  }

  /* ===== MOBILE — BOUTONS SALONS / PLANS EN COLONNE ===== */
  .gallery-switch {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
  }

  .gallery-switch .switch-btn {
    width: 100%;
    min-width: 100%;
  }
}
/* ===== DESKTOP — ORDRE NAVBAR ===== */
@media (min-width: 701px) {
  .btn-home {
    order: 1;
  }

  .btn-ghost {
    order: 2;
  }

  .btn-primary {
    order: 3;
  }

  .btn-login {
    order: 4;
  }
}
/* ===== FORM ERROR ===== */
.field-error {
  margin-top: 6px;
  font-size: 12px;
  color: #d60000;
  line-height: 1.3;
}

.is-invalid {
  border-color: #d60000 !important;
}


/* =======================================================
   SELECT2 — VERSION 1 : BEIGE / OLIVE SOFT (ÉLÉGANTE)
   Activer avec : class="js-multi-salle select2-soft"
======================================================= */

.select2-soft .select2-selection--multiple {
  min-height: 44px;
  border: 1px solid var(--sand-300);
  border-radius: 10px;
  background: var(--sand-100);
  padding: 6px 10px;
  display: flex;
  align-items: center;
}

.select2-soft.select2-container--focus .select2-selection--multiple {
  border-color: var(--olive-500);
  box-shadow: 0 0 0 3px rgba(92,107,92,0.08);
}

.select2-soft .select2-selection__choice {
  background: rgba(92,107,92,0.12);
  color: var(--olive-600);
  border: 1px solid rgba(92,107,92,0.25);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.select2-soft .select2-selection__choice__remove {
  color: var(--olive-600);
  margin-right: 6px;
}

/* =======================================================
   SELECT2 — VERSION 2 : ULTRA CLEAN OUTLINE ONLY
   Activer avec : class="js-multi-salle select2-outline"
======================================================= */

.select2-outline .select2-selection--multiple {
  min-height: 44px;
  border: 1px solid var(--sand-300);
  border-radius: 10px;
  background: transparent;
  padding: 6px 10px;
  display: flex;
  align-items: center;
}

.select2-outline.select2-container--focus .select2-selection--multiple {
  border-color: var(--olive-500);
}

.select2-outline .select2-selection__choice {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.select2-outline .select2-selection__choice__remove {
  color: var(--ink-900);
  margin-right: 6px;
}

/* Dropdown commun */
.select2-container .select2-dropdown {
  border: 1px solid var(--sand-300);
  border-radius: 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--olive-500);
  color: white;
}

.select2-container--default .select2-results__option {
  font-size: 14px;
  padding: 8px 12px;
}


/* ===== SELECT2 — ALIGNEMENT PARFAIT AVEC SELECT NATIF ===== */

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
  height: 44px;
  min-height: 44px;

  border: 1px solid var(--sand-300);
  border-radius: 10px;

  background-color: var(--sand-100);

  padding: 8px 38px 8px 14px;

  font-size: 14px;
  font-family: "Karla", sans-serif;

  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.select2-container--default.select2-container--focus
.select2-selection--multiple {
  border-color: var(--olive-500);
  outline: none;
}

/* Placeholder couleur identique */
.select2-container--default .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* Tags style neutre (comme texte select) */
.select2-container--default .select2-selection__choice {
  background: transparent;
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  margin-top: 4px;
}

.select2-container--default .select2-selection__choice__remove {
  margin-right: 6px;
}

/* Supprime fond blanc interne */
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  font-size: 14px;
  margin-top: 4px;
}

/* Dropdown identique */
.select2-container--default .select2-dropdown {
  border: 1px solid var(--sand-300);
  border-radius: 10px;
  overflow: hidden;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--olive-500);
  color: white;
}

.salon-carousel {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}

.salon-slide {
  min-width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.plan-image {
  position: absolute;
  inset: 0;              /* remplit tout le carré */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.plan-item {
  position: relative;
  overflow: hidden;
}

/* ===== ESPACES — PREMIUM NESTED CAROUSEL ===== */
.landing-section.spaces {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at top left, rgba(92, 107, 92, 0.14), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(138, 90, 59, 0.15), transparent 24%),
    linear-gradient(180deg, #f7f2e9 0%, #efe6d8 100%);
}

.spaces-shell {
  position: relative;
}

.spaces-backdrop {
  position: absolute;
  inset: 80px 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.spaces-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.spaces-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(77, 90, 77, 0.1);
  color: var(--olive-600);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spaces-header h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.spaces-lead {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.spaces-lead p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(42, 35, 32, 0.78);
}

.spaces-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spaces-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 22px 40px rgba(72, 53, 37, 0.08);
  backdrop-filter: blur(14px);
}

.spaces-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.spaces-stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(42, 35, 32, 0.62);
}

.gallery-switch {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-switch .switch-btn {
  min-width: 160px;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(42, 35, 32, 0.08);
  box-shadow: 0 18px 36px rgba(72, 53, 37, 0.08);
  backdrop-filter: blur(12px);
}

.gallery-switch .switch-btn.is-active {
  background: linear-gradient(135deg, #4d5a4d, #6b7b6b);
}

.tvplus-gallery {
  position: relative;
  overflow: hidden;
}

.tvplus-gallery.is-hidden {
  display: none;
}

.item-container {
  gap: 34px;
  padding: 18px 2vw 18px;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item {
  flex: 0 0 min(94vw, 1440px);
  height: auto;
  opacity: 0.38;
  filter: saturate(0.8) blur(1px);
  transform: translateY(20px) scale(0.965);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}

.gallery-item.is-current {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.gallery-item.is-adjacent {
  opacity: 0.72;
  filter: saturate(0.9);
  transform: translateY(12px) scale(0.985);
}

.gallery-item.is-clone,
.plan-item.is-clone {
  opacity: 0.56;
  filter: saturate(0.82);
  transform: translateY(12px) scale(0.955);
  pointer-events: none;
}

.gallery-card {
  position: relative;
  min-height: clamp(560px, 60vw, 920px);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 38px 80px rgba(41, 28, 18, 0.22);
  background: #171411;
}

.gallery-card-aura {
  position: absolute;
  inset: auto 8% -20% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 153, 0.24) 0%, rgba(255, 214, 153, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.salon-carousel {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.salon-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.salon-slide {
  position: relative;
  min-width: 100%;
  background-size: cover;
  background-position: center;
  transform: none !important;
}

.salon-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.22) 0%, rgba(11, 10, 9, 0.12) 35%, rgba(11, 10, 9, 0.84) 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.72) 0%, rgba(11, 10, 9, 0.18) 45%, rgba(11, 10, 9, 0.02) 72%);
}

.salon-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(255, 223, 184, 0.1), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.gallery-card-top,
.gallery-hero-copy,
.gallery-info-bar {
  position: absolute;
  z-index: 3;
}

.gallery-card-top {
  top: 26px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.gallery-room-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-hero-copy {
  left: 30px;
  top: 112px;
  width: min(440px, calc(100% - 60px));
  color: #fff;
}

.gallery-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.gallery-hero-copy h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-hero-copy p {
  margin: 0;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.paddlenav-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}

.paddlenav-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
}

.paddlenav-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: solid #1b1b1b;
  border-width: 0 2px 2px 0;
}

.paddlenav-arrow.prev::after {
  transform: translate(-35%, -50%) rotate(135deg);
}

.paddlenav-arrow.next::after {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.gallery-info-bar {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  gap: 24px;
  align-items: end;
  padding: 24px;
  background: rgba(248, 243, 235, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(27, 20, 14, 0.22);
  backdrop-filter: blur(18px);
}

.gallery-info-main,
.gallery-info-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-info-meta {
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(20, 18, 16, 0.72);
}

.gallery-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-highlight {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(77, 90, 77, 0.12);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.salon-thumbs {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.salon-thumb {
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  opacity: 0.55;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.salon-thumb.is-current {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85), 0 14px 24px rgba(0, 0, 0, 0.18);
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--olive-500), #6e806e);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(77, 90, 77, 0.28);
}

.paddlenav {
  padding: 0 4vw;
}

.dotnav {
  margin-top: 20px;
  gap: 12px;
}

.dotnav-item {
  width: 10px;
  height: 10px;
  background: rgba(42, 35, 32, 0.18);
  transition: width 0.25s ease, background 0.25s ease;
}

.dotnav-item.is-current {
  width: 34px;
  background: rgba(42, 35, 32, 0.68);
}

.item-container--plans {
  gap: 26px;
}

.plan-item {
  flex-basis: min(94vw, 1440px);
  min-height: clamp(560px, 60vw, 920px);
  opacity: 0.42;
  border-radius: 36px;
  overflow: hidden;
  background: #171411;
  box-shadow: 0 30px 70px rgba(41, 28, 18, 0.16);
}

.plan-item.is-current {
  opacity: 1;
}

.plan-item.is-current .plan-image {
  transform: scale(1);
  filter: saturate(0.96) contrast(1.02);
}

.plan-item.is-current .plan-caption {
  transform: translateY(0);
  opacity: 1;
}

.plan-item.is-adjacent .plan-image,
.plan-item.is-clone .plan-image {
  transform: scale(0.985);
  filter: saturate(0.9) contrast(0.98);
}

.plan-item.is-adjacent .plan-caption,
.plan-item.is-clone .plan-caption {
  transform: translateY(10px);
  opacity: 0.82;
}

.plan-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.02);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.plan-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.08) 0%, rgba(16, 14, 12, 0.6) 100%);
}

.plan-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background: rgba(248, 243, 235, 0.9);
  backdrop-filter: blur(18px);
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.plan-caption span,
.plan-caption p {
  color: rgba(42, 35, 32, 0.7);
}

.plan-caption span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-caption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-caption p {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .spaces-header {
    grid-template-columns: 1fr;
  }

  .spaces-header h2 {
    max-width: none;
  }

  .gallery-info-bar {
    grid-template-columns: 1fr;
  }

  .gallery-info-side {
    align-items: flex-start;
  }

  .salon-thumbs {
    justify-content: flex-start;
  }

  .gallery-cta {
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .landing-section.spaces {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .spaces-stats {
    grid-template-columns: 1fr;
  }

  .item-container,
  .item-container--plans {
    gap: 18px;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .gallery-item,
  .plan-item {
    flex-basis: 98vw;
  }

  .gallery-card {
    min-height: 760px;
    border-radius: 28px;
  }

  .gallery-card-top {
    top: 18px;
    left: 18px;
    right: 18px;
    flex-wrap: wrap;
  }

  .gallery-hero-copy {
    top: 96px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .gallery-hero-copy h3 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .gallery-info-bar {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .salon-thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .paddlenav,
  .paddlenav--plans {
    display: none;
  }
}

@media (max-width: 640px) {
  .spaces-eyebrow {
    margin-bottom: 12px;
  }

  .gallery-switch {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-switch .switch-btn {
    min-width: 100%;
  }

  .gallery-room-label,
  .logo-pill {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .gallery-hero-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .gallery-info-meta {
    gap: 12px;
    font-size: 10px;
  }

  .gallery-highlight-row {
    gap: 8px;
  }

  .gallery-highlight {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
