@font-face {
  font-family: 'Geometrik';
  src: url('../fonts/Geometrik-light.ttf') format('truetype');
  font-weight: 300;
}
:root {
  --lf-vert: #2e8b35;
  --lf-orange: #e86820;
  --lf-bleu: #1e4fd0;
  --lf-noir: #1d1d1b;
  --lf-blanc: #ffffff;
  --lf-creme: #faf9f6;
  --lf-nuage: #f0f4f0;
  --lf-gris: #6b6b6b;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--lf-creme);
  font-family: 'Geometrik', Arial, sans-serif;
  color: var(--lf-noir);
}

/* ── NAVBAR ── */
.lf-navbar {
  background: var(--lf-blanc);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ede8e3;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  gap: 1rem;
}
.lf-navbar .logo img {
  height: 40px;
  width: auto;
}
.lf-brand {
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--lf-noir) !important;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--lf-noir);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-links a:hover {
  color: var(--lf-vert);
  border-bottom-color: var(--lf-vert);
}
.nav-links a.active {
  color: var(--lf-orange);
  font-weight: 600;
  border-bottom-color: var(--lf-orange);
}
.cart-btn {
  background: var(--lf-vert);
  color: #fff !important;
  padding: 0.42rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.cart-btn i {
  font-size: 0.82rem;
}
.cart-btn:hover {
  background: var(--lf-orange) !important;
}
.nav-burger {
  display: none;
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lf-noir);
  font-size: 1.5rem;
  padding: 0.2rem 0.4rem;
  line-height: 1;
}
.lang-dropdown {
  position: relative;
  border-left: 1px solid #ddd;
  padding-left: 1rem;
  margin-left: 0.5rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--lf-noir);
  background: none;
  border: 1px solid #ddd;
  border-radius: 0.3rem;
  padding: 0.28rem 0.65rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.lang-toggle:hover {
  border-color: var(--lf-vert);
  color: var(--lf-vert);
}
.lang-toggle .bi-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.lang-dropdown.open .lang-toggle {
  border-color: var(--lf-vert);
  color: var(--lf-vert);
}
.lang-dropdown.open .bi-chevron-down {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  background: var(--lf-blanc);
  border: none;
  border-radius: 0.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 80px;
  overflow: hidden;
  display: none;
  z-index: 200;
}
.lang-dropdown.open .lang-menu {
  display: block;
}
.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.85rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--lf-gris);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.lang-menu a:hover {
  background: var(--lf-nuage);
  color: var(--lf-vert);
}
.lang-menu a.active {
  color: var(--lf-vert);
  font-weight: 600;
}
.lang-menu a.active::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lf-vert);
  border-radius: 50%;
  display: inline-block;
}

/* ── HERO ── */
.hero-band {
  background: var(--lf-nuage);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange)
  );
  background-size: 400% 100%;
  animation: stripe-flow 12s linear infinite;
}
.hero-logo {
  max-width: 340px;
  width: 100%;
  margin: 0 auto 1.2rem;
  display: block;
}
.hero-sub {
  color: var(--lf-gris);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.8rem;
}
.hero-cta {
  background: var(--lf-bleu);
  color: #fff;
  padding: 0.65rem 2.2rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.15s,
    transform 0.08s,
    box-shadow 0.08s;
}
.hero-cta:hover {
  background: var(--lf-orange);
  color: #fff;
  transform: translateY(-1px);
}
.hero-cta:active {
  transform: scale(0.95);
  background: var(--lf-noir);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* ── À PROPOS ── */
.about-section {
  padding: 4rem 2rem;
  background: var(--lf-blanc);
  border-bottom: 1px solid #ede8e3;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lf-vert);
  margin-bottom: 0.5rem;
  font-family: 'Geometrik', Arial, sans-serif;
}
.about-inner h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.lf-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--lf-orange), var(--lf-vert));
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}
.about-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lf-gris);
  margin-bottom: 2rem;
}
.voies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.voie-card {
  background: var(--lf-creme);
  border-radius: 0.5rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border-top: 3px solid var(--lf-vert);
}
.voie-card:nth-child(2) {
  border-top-color: var(--lf-orange);
}
.voie-card:nth-child(3) {
  border-top-color: var(--lf-bleu);
}
.voie-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.voie-card:nth-child(1) h3 {
  color: var(--lf-vert);
}
.voie-card:nth-child(2) h3 {
  color: var(--lf-orange);
}
.voie-card:nth-child(3) h3 {
  color: var(--lf-bleu);
}
.voie-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--lf-gris);
}
.about-close {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--lf-gris);
  font-style: italic;
}

/* ── GALLERY ── */
.gallery-header {
  text-align: center;
  padding: 3.5rem 1rem 1.5rem;
}
.gallery-header h2 {
  font-size: 1.8rem;
  color: var(--lf-noir);
  letter-spacing: 0.06em;
  font-weight: 300;
}
.lf-divider-center {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--lf-orange), var(--lf-vert));
  border-radius: 2px;
  margin: 0.8rem auto 1rem;
}
.gallery-intro {
  font-size: 0.88rem;
  color: var(--lf-gris);
}
.ig-handle {
  color: var(--lf-vert);
  text-decoration: none;
  transition: color 0.2s;
}
.ig-handle:hover {
  color: var(--lf-orange);
}
/* ── GALLERY COLLAGE ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 0.5rem;
  padding: 0 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
/* pattern 5 cartes : grande · petite · petite · petite · large */
.ig-card:nth-child(5n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}
.ig-card:nth-child(5n + 5) {
  grid-column: span 2;
}

/* ── carte ── */
.ig-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.6rem;
  background: var(--lf-nuage);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s;
}
.ig-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s ease,
    opacity 0.4s ease;
  opacity: 0;
}
.ig-card img.loaded {
  opacity: 1;
}
.ig-card:hover img {
  transform: scale(1.06);
}

/* shimmer pendant le chargement */
.ig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--lf-nuage) 25%, #e8ece8 50%, var(--lf-nuage) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  z-index: 0;
}
.ig-card img.loaded ~ * {
  position: relative;
  z-index: 1;
}
.ig-card img.loaded + .ig-overlay,
.ig-card img.loaded ~ .ig-badge {
  z-index: 1;
}
.ig-card img.loaded {
  position: relative;
  z-index: 1;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* image cassée / indisponible : on arrête le shimmer au lieu de tourner indéfiniment */
.ig-card.load-error::before {
  animation: none;
  background: var(--lf-nuage);
}
.ig-card.load-error {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.ig-card:hover .ig-overlay {
  opacity: 1;
}
.ig-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.ig-icon-vert {
  background: var(--lf-vert);
}
.ig-icon-orange {
  background: var(--lf-orange);
}
.ig-icon-bleu {
  background: var(--lf-bleu);
}
.ig-caption {
  font-size: 0.82rem;
  line-height: 1.45;
}
.ig-likes {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Geometrik', Arial, sans-serif;
  margin-top: 0.1rem;
}
.ig-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--lf-noir);
  border-radius: 2rem;
  padding: 3px 10px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 4px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-weight: 600;
  z-index: 2;
}
/* ── icône ▶ vidéo (toujours visible, couverte par l'overlay au survol) ── */
.ig-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.ig-play-overlay i {
  font-size: 3rem;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.btn-lf {
  background: var(--lf-vert);
  color: #fff;
  border: none;
  padding: 0.7rem 2.4rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition:
    background 0.15s,
    transform 0.08s,
    box-shadow 0.08s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.btn-lf:hover {
  background: var(--lf-orange);
  color: #fff;
  transform: translateY(-1px);
}
.btn-lf:active {
  transform: scale(0.95);
  background: var(--lf-noir);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}
.btn-lf.btn-sm {
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
}

/* ── ATELIERS ── */
.ateliers-section {
  padding: 4rem 2rem;
  background: var(--lf-creme);
}
.ateliers-inner {
  max-width: 960px;
  margin: 0 auto;
}
.ateliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 0;
}
.atelier-card {
  background: var(--lf-blanc);
  border-radius: 0.5rem;
  padding: 1.6rem 1.4rem 1.4rem;
  border-top: 3px solid var(--lf-vert);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.atelier-card:nth-child(2) {
  border-top-color: var(--lf-orange);
}
.atelier-card:nth-child(3) {
  border-top-color: var(--lf-bleu);
}
.atelier-card:nth-child(4) {
  border-top-color: var(--lf-vert);
}
.atelier-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
  font-weight: 300;
}
.atelier-card:nth-child(1) h3 {
  color: var(--lf-vert);
}
.atelier-card:nth-child(2) h3 {
  color: var(--lf-orange);
}
.atelier-card:nth-child(3) h3 {
  color: var(--lf-bleu);
}
.atelier-card:nth-child(4) h3 {
  color: var(--lf-vert);
}
.atelier-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--lf-gris);
  flex-grow: 1;
}
.atelier-meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--lf-gris);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-inscrire {
  margin-top: 0.4rem;
  background: none;
  border: none;
  color: var(--lf-vert);
  padding: 0.25rem 0;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.08s;
  -webkit-user-select: none;
  user-select: none;
}
.btn-inscrire:hover {
  color: var(--lf-orange);
}
.btn-inscrire:active {
  transform: scale(0.88);
}
.atelier-card:nth-child(2) .btn-inscrire {
  color: var(--lf-orange);
}
.atelier-card:nth-child(2) .btn-inscrire:hover {
  color: var(--lf-vert);
}
.atelier-card:nth-child(3) .btn-inscrire {
  color: var(--lf-bleu);
}
.atelier-card:nth-child(3) .btn-inscrire:hover {
  color: var(--lf-vert);
}

/* ── FORM BUTTON ── */
.btn-form {
  background: none;
  color: inherit;
  border: none;
  padding: 0.42rem 0;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Geometrik', Arial, sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color 0.15s,
    transform 0.08s;
  -webkit-user-select: none;
  user-select: none;
}
.btn-form:hover {
  color: var(--lf-vert);
}
.btn-form:active {
  transform: scale(0.95);
}

/* ── SCROLL TO TOP ── */
.scroll-top-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background: var(--lf-blanc);
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--lf-gris);
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    border-color 0.2s,
    color 0.2s;
  z-index: 400;
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  border-color: var(--lf-vert);
  color: var(--lf-vert);
}
.scroll-top-btn:active {
  transform: scale(0.88);
}

/* ── POPUP INSCRIPTION ── */
.inscrire-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.65);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.inscrire-backdrop.active {
  display: flex;
}
.inscrire-box {
  background: var(--lf-blanc);
  border-radius: 0.8rem;
  padding: 2.2rem 2.2rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  max-height: 90vh;
  overflow-y: auto;
}
.inscrire-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #bbb;
  transition: color 0.2s;
}
.inscrire-close:hover {
  color: var(--lf-noir);
}
.inscrire-atelier-name {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--lf-vert);
  margin: 0.3rem 0 0.6rem;
}
.inscrire-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.inscrire-form label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lf-noir);
  display: block;
  margin-bottom: 0.2rem;
}
.inscrire-form input,
.inscrire-form textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #ddd;
  border-radius: 0.4rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.88rem;
  background: var(--lf-blanc);
  transition: border-color 0.2s;
  outline: none;
  color: var(--lf-noir);
}
.inscrire-form input:focus,
.inscrire-form textarea:focus {
  border-color: var(--lf-vert);
}
.inscrire-form textarea {
  height: 90px;
  resize: vertical;
}
.inscrire-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.contact-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 20, 0.38);
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-card {
  background: rgba(250, 249, 246, 0.93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 2rem 2rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: var(--lf-gris);
  line-height: 1.5;
}
.contact-item i {
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--lf-gris);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--lf-vert);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--lf-noir);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 0.4rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.9rem;
  background: var(--lf-blanc);
  transition: border-color 0.2s;
  outline: none;
  color: var(--lf-noir);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lf-vert);
}
.contact-form textarea {
  height: 140px;
  resize: vertical;
}
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 0.8rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.88rem;
}
.form-sent-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem 1rem;
  height: 100%;
}
.form-sent-msg p {
  font-size: 0.88rem;
  color: var(--lf-gris);
  margin: 0;
}
.form-redirect-info {
  font-size: 0.78rem;
  color: #bbb;
}
.form-error {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  color: #e65100;
  padding: 0.8rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.88rem;
}

/* ── TOAST ── */
/* ── COOKIE NOTICE ── */
.lf-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(29, 29, 27, 0.96);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.4rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 0.78rem;
  line-height: 1.5;
  font-family: 'Geometrik', Arial, sans-serif;
}
.lf-cookie-notice.visible {
  transform: translateY(0);
}
.lf-cookie-icon {
  font-size: 1.4rem;
  color: var(--lf-vert);
  flex-shrink: 0;
}
.lf-cookie-text {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.lf-cookie-btn {
  flex-shrink: 0;
  background: var(--lf-vert);
  color: #fff;
  border: none;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.lf-cookie-btn:hover {
  background: var(--lf-orange);
}
@media (max-width: 600px) {
  .lf-cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1rem 1.2rem 1.4rem;
  }
  .lf-cookie-btn {
    align-self: flex-end;
  }
}

.lf-toast-wrap {
  position: fixed;
  bottom: 4.5rem;
  right: 1.5rem;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.lf-toast {
  background: var(--lf-noir);
  color: #fff;
  border-radius: 0.45rem;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.lf-toast.show {
  opacity: 1;
  transform: none;
}
.lf-toast.success {
  border-left: 3px solid var(--lf-vert);
}
.lf-toast.error {
  border-left: 3px solid var(--lf-orange);
}
.lf-toast-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.lf-toast.success .lf-toast-icon {
  color: #6fcf77;
}
.lf-toast.error .lf-toast-icon {
  color: var(--lf-orange);
}
.lf-toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 0.5rem;
  flex-shrink: 0;
}
.lf-toast-close:hover {
  color: #fff;
}

/* ── FOOTER ── */
.lf-footer {
  background: var(--lf-blanc);
  border-top: 1px solid #ede8e3;
  padding: 1.5rem 2rem;
  text-align: center;
}
@keyframes stripe-flow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 400% 0;
  }
}
/* stripe-1: orange → vert → bleu  |  stripe-2: vert → bleu → orange  |  stripe-3: bleu → orange → vert */
.lf-stripe-1,
.lf-stripe-2,
.lf-stripe-3 {
  height: 4px;
  background-size: 400% 100%;
  animation: stripe-flow 12s linear infinite;
}
.lf-stripe-1 {
  background-image: linear-gradient(
    90deg,
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange)
  );
}
.lf-stripe-2 {
  background-image: linear-gradient(
    90deg,
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert)
  );
}
.lf-stripe-3 {
  background-image: linear-gradient(
    90deg,
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu)
  );
}
.footer-stripe {
  height: 3px;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    90deg,
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert),
    var(--lf-bleu),
    var(--lf-orange),
    var(--lf-vert)
  );
  background-size: 400% 100%;
  animation: stripe-flow 12s linear infinite;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.6rem;
}
.footer-social-link {
  font-size: 1rem;
  color: #bbb;
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.15s;
}
.footer-social-link:hover {
  color: var(--lf-vert);
  transform: translateY(-2px);
}
.footer-copy {
  color: #aaa;
  font-size: 0.72rem;
  margin-top: 0.4rem;
}
.footer-copy a {
  color: #aaa;
  text-decoration: none;
}
.footer-copy a:hover {
  color: var(--lf-vert);
}
.andes-link {
  color: #2c3e5e !important;
  font-weight: 500;
}
.andes-link:hover {
  color: #ff9f00 !important;
}

/* ── AGENDA POPUP ── */
.nav-shop-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #ccc;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}
.nav-soon-badge {
  font-size: 0.58rem;
  background: var(--lf-orange);
  color: #fff;
  padding: 1px 6px;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  vertical-align: middle;
  opacity: 0.85;
}
.nav-agenda-btn {
  color: var(--lf-noir);
}
.agenda-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.6);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem 1rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}
.agenda-backdrop.active {
  display: flex;
}
.agenda-box {
  background: var(--lf-blanc);
  border-radius: 0.8rem;
  padding: 2.2rem 2rem 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.agenda-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #bbb;
  transition: color 0.2s;
}
.agenda-close:hover {
  color: var(--lf-noir);
}
.agenda-section {
  margin-bottom: 0.2rem;
}
.agenda-section-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Geometrik', Arial, sans-serif;
  color: var(--lf-gris);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.agenda-sep {
  height: 1px;
  background: #ede8e3;
  margin: 1.2rem 0;
}
.agenda-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.agenda-date {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--lf-blanc);
  background: var(--lf-noir);
  border-radius: 0.3rem;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.agenda-item-body strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lf-noir);
  letter-spacing: 0.03em;
}
.agenda-item-body p {
  font-size: 0.78rem;
  color: var(--lf-gris);
  margin-top: 0.15rem;
  line-height: 1.5;
}
.agenda-empty {
  font-size: 0.82rem;
  color: #bbb;
  font-style: italic;
}
.agenda-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--lf-bleu);
  text-decoration: none;
  margin-top: 0.3rem;
  transition: color 0.2s;
}
.agenda-lien:hover {
  color: var(--lf-orange);
}
.agenda-dev-badge {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lf-orange);
  color: #fff;
  border-radius: 2rem;
  padding: 0.15rem 0.55rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-family: 'Geometrik', Arial, sans-serif;
}
.agenda-flyer-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0 0.25rem;
  color: var(--lf-bleu);
  cursor: pointer;
  font-size: 0.85em;
  vertical-align: middle;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.agenda-flyer-btn:hover { opacity: 1; }

.agenda-available-badge {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lf-vert);
  color: #fff;
  border-radius: 2rem;
  padding: 0.15rem 0.55rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-family: 'Geometrik', Arial, sans-serif;
}
.agenda-ecommerce-box {
  background: var(--lf-nuage);
  border-radius: 0.4rem;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--lf-gris);
  line-height: 1.6;
}

/* ── ANNONCE (popup auto "prochaine activité") ── */
.announce-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.announce-backdrop.active {
  display: flex;
}
.announce-box {
  background: var(--lf-creme);
  border-top: 5px solid var(--lf-vert);
  border-radius: 0.8rem;
  padding: 2rem 1.8rem 1.8rem;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: announce-pop 0.35s ease-out;
}
@keyframes announce-pop {
  from { opacity: 0; transform: scale(0.94) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.announce-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Geometrik', Arial, sans-serif;
  color: var(--lf-vert);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.announce-image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.announce-image {
  display: block;
  width: 100%;
  max-height: 160px;
  object-fit: cover;
}
.announce-date {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.announce-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lf-noir);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.announce-info {
  font-size: 0.85rem;
  color: var(--lf-gris);
  line-height: 1.5;
  margin-bottom: 1.3rem;
}
.announce-cta {
  background: var(--lf-vert);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border: none;
}
.announce-cta:hover {
  background: var(--lf-orange);
  color: #fff;
}

/* ── CREDITS ── */
.credits-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.credits-btn:hover {
  color: var(--lf-vert);
}
.credits-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.credits-backdrop.active {
  display: flex;
}
.credits-box {
  background: var(--lf-blanc);
  border-radius: 0.8rem;
  padding: 2.2rem 2.2rem 2rem;
  max-width: 340px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.credits-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #bbb;
  transition: color 0.2s;
}
.credits-close:hover {
  color: var(--lf-noir);
}
.credits-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lf-vert);
  margin-bottom: 0.5rem;
  font-family: 'Geometrik', Arial, sans-serif;
}
.credits-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 0;
}
.credits-role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  font-family: 'Geometrik', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.credits-name {
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.credits-name:hover {
  opacity: 0.75;
}
.credits-sep {
  height: 1px;
  background: #ede8e3;
  margin: 0.2rem 2rem;
}
.credits-line .andes-link {
  color: #2c3e5e !important;
  font-weight: 500;
}
.credits-line .andes-link:hover {
  color: #ff9f00 !important;
}

/* ── LIGHTBOX ── */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lb-backdrop.active {
  display: flex;
}
.lb-inner {
  position: relative;
  max-width: min(90vw, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-inner img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 0.5rem;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.lb-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover {
  opacity: 1;
}
.lb-caption {
  color: #ccc;
  margin-top: 0.9rem;
  font-size: 0.84rem;
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
}
.lb-ig-link {
  margin-top: 0.5rem;
  color: var(--lf-vert);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.lb-ig-link:hover {
  color: var(--lf-orange);
}
.lb-media-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.lb-video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 0.5rem;
}
.lb-video-icon {
  font-size: 5rem;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}
.lb-video-btn {
  background: var(--lf-orange);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-family: 'Geometrik', Arial, sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}
.lb-video-btn:hover {
  background: var(--lf-vert);
  color: #fff;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-nav:hover {
  background: var(--lf-vert);
}
.lb-prev {
  left: -3.5rem;
}
.lb-next {
  right: -3.5rem;
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--lf-blanc);
    border-bottom: 2px solid #ede8e3;
    padding: 3.5rem 1.5rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
    z-index: 590;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .lf-navbar {
    min-height: 3rem;
    padding: 0;
  }
  .lang-dropdown {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    position: fixed;
    top: 0.65rem;
    right: 0.8rem;
    z-index: 600;
  }
  .hero-logo {
    max-width: 240px;
  }
  .lb-prev,
  .lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 72px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2010;
    font-size: 1.2rem;
  }
  .lb-prev {
    left: 0;
    border-radius: 0 6px 6px 0;
  }
  .lb-next {
    right: 0;
    border-radius: 6px 0 0 6px;
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    padding: 0 0.75rem 2rem;
    gap: 0.4rem;
  }
  .ig-card:nth-child(5n + 1),
  .ig-card:nth-child(5n + 5) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .about-section {
    padding: 2.5rem 1.2rem;
  }
  .ateliers-section {
    padding: 2.5rem 1.2rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .contact-section {
    min-height: unset;
  }
}
