/* ==========================
   BODY
========================== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #222;
  font-family: Georgia, "Times New Roman", serif;
}

.hide {
  opacity: 0;
  pointer-events: none;

}

#main,
#header {
  transition: opacity 1s ease;
}

#preloader {
  position: fixed;
  inset: 0;
  transition: opacity .8s ease;
  display: flex;
  justify-content: center;
  align-items: center;

}

#preloader svg {
  width: 80%;
}

#preloader.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

}

/* ==========================
   HEADER
========================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

/* ==========================
   LOGO
========================== */

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 5px;
}

.logo-container {
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  width: 80px;
  /* à ajuster selon ton logo */
  height: auto;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu-logo {
  display: flex;
  gap: 20px;
  margin: 0 20px;
  height: 100px;
  transition: all 0.4s ease;
  opacity: 1;
  overflow: hidden;
  transition:
    height .4s ease,
    opacity .3s ease,
    margin .4s ease;
}

.menu-logo.hide {
  height: 0;
  opacity: 0;
  margin: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

/* ==========================
   NAVBAR
========================== */

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 30px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 60px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .3s ease;
}

.nav-links a:hover {
  color: #b48b4b;
}

.navbar {
  transition: height .4s ease;
}

.navbar.scrolled {
  height: 40px;
}

/* ==========================
   SECTIONS
========================== */

section {
  min-height: 100vh;
  padding: 120px 40px;
}

/* ==========================
   VIDEO
========================== */

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.signature-video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px) {

  .navbar {
    padding: 18px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: .9rem;
  }

}

.hero {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

}

.hero-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .35),
      rgba(0, 0, 0, .55));

  z-index: 1;

}

.hero-content {

  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  color: white;

  max-width: 900px;

  padding: 0 30px;

}

.hero-subtitle {

  text-transform: uppercase;

  letter-spacing: 6px;

  font-size: .85rem;

  opacity: .9;

  margin-bottom: 20px;

}

.hero-title {

  font-size: clamp(4rem, 9vw, 8rem);

  font-weight: 300;

  letter-spacing: 10px;

  text-transform: uppercase;

  margin: 0;

}

.hero-description {

  max-width: 650px;

  margin: 35px 0 50px;

  line-height: 1.8;

  font-size: 1.15rem;

  opacity: .92;

}

.hero-button {

  background: white;
  color: #111;
  text-decoration: none;
  padding: 18px 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: .35s;

}

.hero-button:hover {
  background: #b48b4b;
  color: white;
}

.scroll-indicator {

  position: absolute;

  bottom: 20%;

  left: 50%;

  transform: translateX(-50%);

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  color: white;

  gap: 12px;

}

.scroll-indicator span {

  font-size: .8rem;

  letter-spacing: 3px;

  text-transform: uppercase;

}

#header-signature {
  flex: 0 0 100%;
}

.mouse {

  width: 28px;
  height: 48px;

  border: 2px solid white;
  border-radius: 20px;

  display: flex;
  justify-content: center;

}

.wheel {

  width: 4px;
  height: 8px;

  background: white;

  border-radius: 20px;

  margin-top: 8px;

  animation: scroll 1.6s infinite;

}

@keyframes scroll {

  0% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

.hero-content>* {

  opacity: 0;

  transform: translateY(35px);

  animation: fadeUp .9s ease forwards;

}

.hero-subtitle {
  animation-delay: .3s;
}

.hero-title {
  animation-delay: .5s;
}

.hero-description {
  animation-delay: .8s;
}

.hero-button {
  animation-delay: 1.1s;
}

@keyframes fadeUp {

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

#signatures {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.signature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  opacity: 0.1;
}

#signatures {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  background: #f7f5f1d9;

}

.signature-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: min(1300px, 90%);

}

.signature-image {

  flex: 0 0 420px;

}

.signature-image img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  transition: opacity .5s ease, transform .8s ease;

}

.signature-content {

  flex: 1;

}

.signature-subtitle {

  letter-spacing: 4px;

  text-transform: uppercase;

  color: #b48b4b;

}

.signature-content h2 {

  font-size: 4rem;

  margin: 20px 0;

  font-weight: 300;

}

.signature-content p {
  line-height: 1.8;

  font-size: 1.05rem;

  color: #666;

}

.signature-button {

  display: inline-block;
  font-size: 21px;
  margin-top: 35px;

  padding: 18px 40px;

  text-decoration: none;

  color: #222;

  border: 1px solid #222;

  transition: .3s;

}

.signature-button:hover {

  background: #222;
  color: white;

}

.signature-navigation {

  display: flex;

  align-items: center;

  gap: 30px;

  margin-top: 60px;

}

.signature-navigation button {

  background: none;

  border: none;

  font-size: 2rem;

  cursor: pointer;

}

.signature-dots {

  display: flex;

  gap: 12px;

}

.dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #ccc;

  transition: .3s;

}

.img-prestation {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.dot.active {

  background: #b48b4b;
  transform: scale(1.4);

}

.histoire {
  background: #f8f5ef;
  padding: 100px 14%;
}

.citation-intro {
  position: relative;
  padding-left: 70px;
}

.citation-intro::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -15px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
}


.histoire-header {
  text-align: center;
  margin-bottom: 70px;
}


.histoire-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}


.histoire-header span {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 3px;
}



/* GRANDE PHOTO */

.histoire-photo-principale img {

  width: 100%;
  height: 60vh;
  min-height: 450px;

  object-fit: cover;

}



/* INTRO */

.histoire-introduction {

  max-width: 800px;
  margin: 60px auto;

  text-align: center;

}


.histoire-introduction p {

  font-size: 22px;
  line-height: 1.8;

}



/* PHRASE */

.histoire-signature {

  text-align: center;
  margin: 100px 0;

}


.histoire-signature h3 {

  font-family: "Cormorant Garamond", serif;
  font-size: 65px;
  font-weight: 400;

}



/* BLOCS */

.histoire-bloc {

  display: flex;
  align-items: center;

  gap: 80px;

  margin: 100px 0;

}


.histoire-bloc img {
  object-fit: cover;
}

.img-histoire-container {
  width: 100%;
  overflow: hidden;

}

.img-histoire {
  display: block;
  width: 100%;
  transition: transform 0.6s ease;
}

.img-histoire:hover {
  transform: scale(1.04);
}

.images-superposees {
  position: relative;
  width: 100%;
}

.photo-fond {
  display: block;
  width: 45%;
  height: auto;
}

.photo-dessus {
  position: absolute;
  width: 30%;
  height: auto;
  top: 1%;
  right: -2%;
  z-index: 1;
}

.photo-dessus-2 {
  position: absolute;
  width: 40%;
  height: auto;
  left: 38%;
  bottom: -13%;
  z-index: 4;
}

.histoire-bloc p {

  font-size: 20px;
  line-height: 1.8;

}



.histoire-bloc h3 {

  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 400;

}

.logo-top {
  height: 800px;
  margin-top: -200px;
  margin-bottom: -200px;
}

/* CITATION */

.histoire-citation {

  position: relative;

  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  text-align: center;

  isolation: isolate;
  /* important */
}


/* Fond */

.histoire-citation::before {

  content: "";

  position: absolute;

  inset: -50px;

  background-image:
    linear-gradient(rgba(20, 15, 10, 0.55),
      rgba(20, 15, 10, 0.55)),
    url("images/cocktail-fond.webp");


  background-size: cover;
  background-position: center;

  filter: blur(5px);

  transform: scale(1.1);

  z-index: -1;

}


/* Texte */

.histoire-citation p {

  position: relative;

  z-index: 1;

  color: white;

  max-width: 900px;

  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: 45px;

  font-style: italic;

  line-height: 1.4;

}

.section {
  min-height: 100vh;
}

/* PRESTATIONS */
.prestations {
  background: #f8f5ef;
  padding: 120px 8%;
  background: #f8f5ef;
}


.prestations-header {
  text-align: center;
  margin-bottom: 100px;
}


.prestations-header h2 {

  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;

}


.prestations-header p {

  font-size: 20px;
  letter-spacing: 1px;

}



.prestation {

  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;

}


.prestation.inverse {

  flex-direction: row-reverse;

}



.prestation img {

  width: 50%;
  height: 550px;

  object-fit: cover;

}



.prestation-text {

  width: 50%;

}



.prestation-text h3 {

  font-family: "Cormorant Garamond", serif;

  font-size: 55px;

  font-weight: 400;

  margin-bottom: 30px;

}



.prestation-text p {

  font-size: 18px;

  line-height: 1.9;

}

.separateur-luxe {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  margin: 80px auto;

  width: 60%;

}


.separateur-luxe span {

  height: 1px;

  flex: 1;

  background: rgba(35, 27, 20, 0.25);

}


.separateur-luxe i {

  font-family: "Cormorant Garamond", serif;

  font-size: 22px;

  font-style: normal;

  color: #231b14;

}

.btn-prestation {

  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 35px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #231b14;
  text-decoration: none;

  position: relative;

  padding: 20px 0;

  transition: 0.3s ease;

}


/* ligne sous le texte */

.btn-prestation::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: #231b14;

  transform-origin: left;

  transition: transform .4s ease;

}



.btn-prestation span {

  transition: transform .3s ease;

}



/* animation hover */

.btn-prestation:hover::after {

  transform: scaleX(.4);

}


.btn-prestation:hover span {

  transform: translateX(8px);

}

/* =========================
   FAQ
========================= */

.faq-section {
  padding: 120px 8%;
  background: #f5f3ef;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
}

.faq-header span {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

.faq-container {
  max-width: 950px;
  margin: auto;
}

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 28px 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border: none;
  background: transparent;

  color: inherit;
  cursor: pointer;

  text-align: left;

  font-family: inherit;
  font-size: 1.2rem;
}

.faq-question span:first-child {
  padding-right: 30px;
}

.faq-icon {
  font-size: 2rem;
  font-weight: 300;

  transition: transform 0.4s ease;
}

.faq-link {
  color: #b48b4b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer-content ul li {
  line-height: 1;
}

.faq-link:hover {
  color: #030302;
  text-decoration: underline;
}

/* Réponse fermée */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.5s ease;
}

.faq-answer-content {
  overflow: hidden;

  padding: 0 10px;

  line-height: 1.7;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    padding 0.5s ease;
}

/* Réponse ouverte */

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer-content {
  padding: 0 10px 30px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* Liste dans les réponses */

.faq-answer ul {
  margin: 20px 0 20px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}


/* Responsive */

@media (max-width: 768px) {

  .faq-section {
    padding: 80px 6%;
  }

  .faq-question {
    padding: 22px 5px;
    font-size: 1rem;
  }

  .faq-icon {
    font-size: 1.7rem;
  }

}

/* =========================
   CONTACT - FIN FAQ
========================= */

.faq-contact {
  margin-top: 100px;
}

.faq-contact-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 60px;
}

.faq-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
}


/* TEXTE */

.faq-contact-text {
  max-width: 550px;
}

.faq-contact-label {
  display: block;
  margin-bottom: 20px;

  font-size: 0.7rem;
  letter-spacing: 3px;

  opacity: 0.5;
}

.faq-contact h3 {
  margin: 0 0 18px;

  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.faq-contact p {
  margin: 0;

  max-width: 450px;

  font-size: 0.95rem;
  line-height: 1.7;

  opacity: 0.65;
}

/* LIENS */

.faq-contact-links {
  width: 300px;

  display: flex;
  flex-direction: column;
}

.faq-contact-links a {
  padding: 17px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);

  color: inherit;
  text-decoration: none;

  font-size: 0.95rem;

  transition:
    padding 0.3s ease,
    opacity 0.3s ease;
}


/* Animation élégante */

.faq-contact-links a:hover {
  padding-left: 12px;
  opacity: 0.55;
}

.faq-contact-links .arrow {
  font-size: 1.2rem;

  transition: transform 0.3s ease;
}

.faq-contact-links a:hover .arrow {
  transform: translate(4px, -2px);
}

/* Le lien mail légèrement différent */

.mail-link {
  margin-top: 15px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .faq-contact {
    margin-top: 70px;
  }

  .faq-contact-line {
    margin-bottom: 45px;
  }

  .faq-contact-content {
    flex-direction: column;
    align-items: flex-start;

    gap: 45px;
  }

  .faq-contact-links {
    width: 100%;
  }

}

/* =========================
   POPUP CONTACT
========================= */

.contact-modal {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}


/* POPUP OUVERTE */

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}


/* FOND FLOU */

.contact-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15, 15, 15, 0.295);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* CONTENU */

.contact-modal-content {
  position: relative;

  width: 100%;
  max-width: 900px;
  max-height: 90vh;

  overflow-y: auto;

  padding: 70px;

  background: #f5f3ef;

  transform: translateY(30px) scale(0.98);

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ANIMATION D'OUVERTURE */

.contact-modal.active .contact-modal-content {
  transform: translateY(0) scale(1);
}


/* BOUTON FERMER */

.contact-close {
  position: absolute;

  top: 25px;
  right: 30px;

  width: 45px;
  height: 45px;

  display: flex;
  justify-content: center;
  align-items: center;

  border: none;
  background: transparent;

  color: inherit;

  font-size: 2.2rem;
  font-weight: 200;

  cursor: pointer;

  transition: transform 0.3s ease;
}

.contact-close:hover {
  transform: rotate(90deg);
}


/* HEADER */

.contact-modal-header {
  margin-bottom: 50px;
}

.contact-label {
  display: block;

  margin-bottom: 20px;

  font-size: 0.7rem;
  letter-spacing: 3px;

  opacity: 0.5;
}

.contact-modal-header h2 {
  margin: 0 0 20px;

  font-size: clamp(2.8rem, 6vw, 5rem);

  font-weight: 400;
  line-height: 0.95;
}

.contact-modal-header p {
  max-width: 500px;

  margin: 0;

  line-height: 1.7;

  opacity: 0.65;
}


/* FORMULAIRE */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 30px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}


/* LABELS */

.form-group label {
  margin-bottom: 10px;
  font-weight: bolder;
  opacity: 0.8;
  text-transform: uppercase;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 15px 0;

  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);

  background: transparent;

  color: inherit;

  font-family: inherit;
  font-size: 1rem;

  outline: none;

  transition:
    border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #000;
}


/* SELECT */

.form-group select {
  cursor: pointer;
}


/* BOUTON */

.contact-submit {
  width: 100%;

  margin-top: 20px;
  padding: 20px 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border: none;

  color: #1f1f1f;
  background: #b48b4b;

  font-family: inherit;
  font-size: 0.9rem;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.submit-arrow {
  font-size: 1.3rem;

  transition: transform 0.3s ease;
}

.contact-submit:hover .submit-arrow {
  transform: translateX(5px);
}

/* =========================
   RESPONSIVE POPUP
========================= */

@media (max-width: 700px) {

  .contact-modal {
    align-items: flex-end;
    padding: 0;
  }

  .contact-modal-content {
    max-height: 92vh;

    padding: 60px 25px 40px;

    border-radius: 20px 20px 0 0;

    transform: translateY(100%);
  }

  .contact-modal.active .contact-modal-content {
    transform: translateY(0);
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .contact-modal-header {
    margin-bottom: 40px;
  }

  .contact-modal-header h2 {
    font-size: 3rem;
  }

  .contact-close {
    top: 15px;
    right: 15px;
  }

}


.formules-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.formule-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 48px 38px 36px;

  background: #f8f6f1;
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: 4px;

  color: #222;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.formule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 35, 35, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.formule-card h3 {
  margin: 0 0 10px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.formule-meta {
  margin-bottom: 30px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.formule-meta span {
  margin: 0 7px;
}

.formule-card p {
  margin: 0 0 30px;

  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.formule-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.formule-card li {
  position: relative;
  padding-left: 22px;

  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.formule-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  font-size: 12px;
  opacity: 0.65;
}

.formule-price {
  margin-top: 40px;
  padding-top: 25px;

  border-top: 1px solid rgba(35, 35, 35, 0.14);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.formule-price span {
  display: block;
  margin-bottom: 8px;

  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}


/* Tablette */
@media (max-width: 1000px) {
  .formules-container {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .formule-card {
    padding: 42px 34px 32px;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .formules-container {
    gap: 16px;
  }

  .formule-card {
    padding: 36px 26px 30px;
  }

  .formule-card h3 {
    font-size: 26px;
  }

  .formule-card p {
    font-size: 13px;
  }

  .formule-price {
    margin-top: 32px;
  }
}

.categories-evenements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.categorie-bouton {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 68px;
  padding: 0 30px;

  background: #f8f6f1;
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: 4px;

  color: #222;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.categorie-bouton:hover {
  background: #222;
  color: #fff;
  border-color: #222;
  transform: translateY(-3px);
}


/* Tablette */
@media (max-width: 1000px) {
  .categories-evenements {
    grid-template-columns: 1fr;
    max-width: 650px;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .categories-evenements {
    gap: 14px;
  }

  .categorie-bouton {
    min-height: 62px;
    font-size: 18px;
  }
}

.choix-prestation h3 {
  font-size: 40px;
  font-weight: 400;
  color: #f5f3ef;
}

.categories-evenements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.categorie-bouton {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 68px;
  padding: 0 30px;

  background: transparent;
  border: 1px solid rgba(35, 35, 35, 0.25);
  border-radius: 4px;

  color: #222;
  cursor: pointer;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;

  transition:
    background 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s ease;
}

.categorie-bouton:hover,
.categorie-bouton.active {
  background: #222;
  color: #fff;
  border-color: #222;
  transform: translateY(-3px);
}


/* Section de contenu */

.contenu-evenement {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: auto;
  padding: 120px 40px 0px 40px;
}

.contenu-type {
  display: none;
  max-width: 900px;
  text-align: center;

  opacity: 0;
  transform: translateY(25px);
}

.contenu-type.active {
  display: block;
  animation: apparition 0.8s ease forwards;
}

.contenu-label {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.contenu-type h2 {
  margin: 0 0 25px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.contenu-type p {
  margin: 0 auto;

  max-width: 740px;

  font-size: 15px;
  line-height: 1.8;
}

@keyframes apparition {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Mobile */

@media (max-width: 1000px) {
  .categories-evenements {
    grid-template-columns: 1fr;
    max-width: 650px;
  }
}

@media (max-width: 600px) {
  .categories-evenements {
    gap: 14px;
  }

  .categorie-bouton {
    min-height: 62px;
    font-size: 18px;
  }

  .contenu-evenement {
    padding: 20px;
  }
}

.categories-evenements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.categorie-bouton {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 68px;
  padding: 0 30px;

  background: #f8f6f1;
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: 4px;

  color: #222;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.categorie-bouton:hover {
  background: #222;
  color: #fff;
  border-color: #222;
  transform: translateY(-3px);
}


/* Tablette */
@media (max-width: 1000px) {
  .categories-evenements {
    grid-template-columns: 1fr;
    max-width: 650px;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .categories-evenements {
    gap: 14px;
  }

  .categorie-bouton {
    min-height: 62px;
    font-size: 18px;
  }
}

.exigence-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 40px 40px 40px;
  color: #222;
}


/* =========================
   INTRODUCTION
========================= */

.exigence-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  padding-bottom: 100px;
}

.exigence-eyebrow {
  display: block;
  margin-bottom: 22px;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.5;
}

.exigence-intro h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.exigence-intro h2 em,
.exigence-cta h2 em {
  font-style: italic;
}

.exigence-description {
  max-width: 560px;
  padding-bottom: 5px;
}

.exigence-description p {
  margin: 0 0 18px;

  font-size: 15px;
  line-height: 1.85;
}

.exigence-description p:last-child {
  margin-bottom: 0;
}


/* =========================
   GRILLE
========================= */

.exigence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(35, 35, 35, 0.16);
  border-left: 1px solid rgba(35, 35, 35, 0.16);
}

.exigence-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;

  min-height: 150px;
  padding: 42px 45px;

  border-right: 1px solid rgba(35, 35, 35, 0.16);
  border-bottom: 1px solid rgba(35, 35, 35, 0.16);

  transition:
    background 0.5s ease,
    transform 0.5s ease;
}

.exigence-item:hover {
  background: #f8f6f1;
}

.exigence-number {
  padding-top: 4px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  opacity: 0.45;
}

.exigence-item h3 {
  margin: 0 0 18px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.exigence-item p {
  max-width: 520px;
  margin: 0;

  font-size: 13px;
  line-height: 1.8;
  opacity: 0.75;
}


/* =========================
   CTA
========================= */

.exigence-cta {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 760px;
  margin: 140px auto 0;

  text-align: center;
}

.exigence-cta h2 {
  margin: 0 0 30px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.exigence-cta p {
  max-width: 620px;
  margin: 0 0 38px;

  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

.exigence-button {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  padding: 17px 25px 17px 28px;

  border: 1px solid #222;
  border-radius: 2px;

  color: #222;
  text-decoration: none;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    gap 0.4s ease;
}

.exigence-button span {
  font-size: 17px;
  line-height: 0;
  transition: transform 0.4s ease;
}

.exigence-button:hover {
  background: #222;
  color: #fff;
  gap: 45px;
}

.exigence-button:hover span {
  transform: translateX(3px);
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

  .exigence-section {
    padding: 100px 30px;
  }

  .exigence-header {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 70px;
  }

  .exigence-grid {
    grid-template-columns: 1fr;
  }

  .exigence-item {
    min-height: auto;
  }

  .exigence-cta {
    margin-top: 100px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .exigence-section {
    padding: 80px 20px;
  }

  .exigence-intro h2 {
    font-size: 48px;
  }

  .exigence-description p {
    font-size: 14px;
  }

  .exigence-item {
    grid-template-columns: 35px 1fr;
    gap: 12px;

    padding: 32px 24px;
  }

  .exigence-item h3 {
    font-size: 21px;
  }

  .exigence-item p {
    font-size: 13px;
    line-height: 1.7;
  }

  .exigence-cta {
    margin-top: 80px;
  }

  .exigence-cta h2 {
    font-size: 43px;
  }
}

.hide-contenu {
  display: none;
}

.options-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 40px 140px 40px;
  color: #222;
}

.title-button-prestation {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}


/* =========================
   INTRODUCTION
========================= */

.options-header {
  max-width: 900px;
  margin: 0 auto 130px;
  text-align: center;
}

.options-eyebrow {
  display: block;
  margin-bottom: 22px;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.5;
}

.options-header h2 {
  margin: 0 0 38px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.options-header h2 em {
  font-style: italic;
}

.options-header p {
  max-width: 650px;
  margin: 0 auto;

  font-size: 15px;
  line-height: 1.85;
  opacity: 0.75;
}


/* =========================
   BLOCS
========================= */

.option-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;

  align-items: center;

  margin-bottom: 140px;
}

.option-row:last-child {
  margin-bottom: 0;
}

.option-row-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.option-row-reverse .option-image {
  order: 2;
}

.option-row-reverse .option-text {
  order: 1;
}


/* =========================
   IMAGES
========================= */

.option-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 4 / 3;
  border-radius: 3px;
}

.option-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.option-image:hover img {
  transform: scale(1.04);
}


/* =========================
   TEXTE
========================= */

.option-text {
  max-width: 480px;
}

.option-number {
  display: block;
  margin-bottom: 25px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;

  opacity: 0.45;
}

.option-text h3 {
  margin: 0 0 28px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.option-text h3 em {
  font-style: italic;
}

.option-text p {
  margin: 0 0 16px;

  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

.option-text p:last-child {
  margin-bottom: 0;
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

  .options-section {
    padding: 100px 30px;
  }

  .options-header {
    margin-bottom: 90px;
  }

  .option-row,
  .option-row-reverse {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-bottom: 100px;
  }

  .option-row-reverse .option-image,
  .option-row-reverse .option-text {
    order: initial;
  }

  .option-text {
    max-width: 650px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .options-section {
    padding: 80px 20px;
  }

  .options-header {
    margin-bottom: 75px;
  }

  .options-header h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .options-header p {
    font-size: 14px;
  }

  .option-row,
  .option-row-reverse {
    gap: 32px;
    margin-bottom: 80px;
  }

  .option-text h3 {
    font-size: 30px;
  }

  .option-text p {
    font-size: 13px;
  }

  .option-image {
    aspect-ratio: 4 / 3;
  }
}

.atelier-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 40px;
  color: #222;
}


/* =========================
   HEADER
========================= */

.atelier-header {
  margin-bottom: 65px;
  text-align: center;
}

.atelier-eyebrow {
  display: block;
  margin-bottom: 22px;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.5;
}

.atelier-header h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.atelier-header h2 em {
  font-style: italic;
}


/* =========================
   IMAGE
========================= */

.atelier-image {
  width: 100%;
  aspect-ratio: 16 / 7;

  overflow: hidden;
  border-radius: 3px;

  margin-bottom: 110px;
}

.atelier-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.3, 1);
}

.atelier-image:hover img {
  transform: scale(1.035);
}


/* =========================
   INTRODUCTION
========================= */

.atelier-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;

  max-width: 1100px;
  margin: 0 auto 140px;
}

.atelier-lead {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.atelier-intro-text {
  max-width: 650px;
}

.atelier-intro-text p {
  margin: 0 0 20px;

  font-size: 14px;
  line-height: 1.85;
  opacity: 0.78;
}

.atelier-intro-text p:last-child {
  margin-bottom: 0;
}


/* =========================
   EXPERIENCE
========================= */

.atelier-experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  border-top: 1px solid rgba(35, 35, 35, 0.16);
  border-bottom: 1px solid rgba(35, 35, 35, 0.16);
}

.atelier-experience-intro,
.atelier-inclus {
  padding: 65px 60px;
}

.atelier-experience-intro {
  border-right: 1px solid rgba(35, 35, 35, 0.16);
}

.atelier-number {
  display: block;
  margin-bottom: 30px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;

  opacity: 0.45;
}

.atelier-experience h3 {
  margin: 0 0 25px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.atelier-experience h3 em {
  font-style: italic;
}

.atelier-experience-intro p {
  max-width: 400px;
  margin: 0;

  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}


/* =========================
   LISTE
========================= */

.atelier-inclus ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.atelier-inclus li {
  position: relative;
  padding-left: 20px;

  font-size: 13px;
  line-height: 1.45;
}

.atelier-inclus li::before {
  content: "—";

  position: absolute;
  left: 0;
  top: 0;

  opacity: 0.45;
}


/* =========================
   CTA
========================= */

.atelier-cta {
  display: flex;
  flex-direction: column;
  align-items: center;

  max-width: 750px;
  margin: 140px auto 0;

  text-align: center;
}

.atelier-cta h2 {
  margin: 0 0 30px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.atelier-cta h2 em {
  font-style: italic;
}

.atelier-cta p {
  max-width: 550px;
  margin: 0 0 38px;

  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

.atelier-button {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  padding: 17px 25px 17px 28px;

  border: 1px solid #222;
  border-radius: 2px;

  color: #222;
  text-decoration: none;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    gap 0.4s ease;
}

.atelier-button span {
  font-size: 17px;
  line-height: 0;

  transition: transform 0.4s ease;
}

.atelier-button:hover {
  background: #222;
  color: #fff;
  gap: 45px;
}

.atelier-button:hover span {
  transform: translateX(3px);
}


/* =========================
   TABLETTE
========================= */

@media (max-width: 900px) {

  .atelier-section {
    padding: 100px 30px;
  }

  .atelier-image {
    aspect-ratio: 16 / 8;
    margin-bottom: 80px;
  }

  .atelier-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 100px;
  }

  .atelier-experience {
    grid-template-columns: 1fr;
  }

  .atelier-experience-intro {
    border-right: none;
    border-bottom: 1px solid rgba(35, 35, 35, 0.16);
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .atelier-section {
    padding: 80px 20px;
  }

  .atelier-header {
    margin-bottom: 45px;
  }

  .atelier-header h2 {
    font-size: 55px;
  }

  .atelier-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 65px;
  }

  .atelier-intro {
    gap: 30px;
    margin-bottom: 75px;
  }

  .atelier-lead {
    font-size: 30px;
  }

  .atelier-intro-text p {
    font-size: 13px;
  }

  .atelier-experience-intro,
  .atelier-inclus {
    padding: 42px 25px;
  }

  .atelier-inclus ul {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .atelier-cta {
    margin-top: 80px;
  }

  .atelier-cta h2 {
    font-size: 46px;
  }
}

/* =========================================================
   CORRECTIONS RESPONSIVE — MAISON LÉONIE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1000px) {

  section {
    min-height: auto;
    padding: 100px 30px;
  }


  /* HERO */

  .hero {
    min-height: 100svh;
    padding: 30px;
  }

  .hero-content {
    width: 100%;
    max-width: 700px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
  }

  .hero-description {
    max-width: 600px;
    font-size: 1rem;
  }

  .logo-top {
    width: min(70vw, 550px);
    height: auto;
    margin: 0;
  }


  /* SIGNATURES */

  #signatures {
    min-height: auto;
    padding: 100px 30px;
  }

  .signature-container {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    gap: 50px;
  }

  .signature-image {
    flex: 0 1 auto;
    width: min(420px, 70vw);
  }

  .signature-content {
    width: 100%;
    max-width: 650px;
    text-align: center;
  }

  .signature-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .signature-navigation {
    justify-content: center;
  }


  /* HISTOIRE */

  .histoire {
    padding: 100px 8%;
  }

  .histoire-bloc {
    gap: 50px;
  }

  .histoire-bloc h3 {
    font-size: 45px;
  }

  .histoire-bloc p {
    font-size: 17px;
  }


  /* PRESTATIONS */

  .prestations {
    padding: 100px 8%;
  }

  .prestation {
    gap: 50px;
  }

  .prestation img {
    width: 50%;
    height: 450px;
  }

  .prestation-text {
    width: 50%;
  }

  .prestation-text h3 {
    font-size: 45px;
  }


  /* CONTACT */

  .faq-contact-content {
    gap: 50px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  section {
    min-height: auto;
    padding: 75px 20px;
  }


  /* HEADER */

  .header {
    width: 100%;
  }

  .menu-logo {
    height: 65px;
    gap: 10px;
    margin: 0 12px;
  }

  .menu-logo .logo {
    width: 55px;
  }

  .navbar {
    padding: 8px 15px;
  }

  .nav-links {
    gap: 10px 15px;
    padding: 0;
    margin: 0;
  }

  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }


  /* HERO */

  .hero {
    min-height: 100svh;
    padding: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    line-height: 1.5;
  }

  .logo-top {
    width: 82vw;
    max-width: 380px;
    height: auto;
    margin: 0;
  }

  .hero-description {
    max-width: 330px;
    margin: 25px 0 35px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-button {
    padding: 15px 25px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .scroll-indicator {
    bottom: 5%;
  }


  /* TITRES */

  .histoire-header h2,
  .prestations-header h2 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .histoire-header span,
  .prestations-header p {
    font-size: 13px;
    letter-spacing: 1.5px;
  }


  /* SIGNATURE */

  #signatures {
    padding: 75px 20px;
  }

  #header-signature {
    width: 100%;
  }

  .signature-container {
    width: 100%;
    margin-top: 0;
    flex-direction: column;
    gap: 35px;
  }

  .signature-image {
    width: min(75vw, 300px);
    flex: none;
  }

  .signature-content {
    width: 100%;
  }

  .signature-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .signature-content h2 {
    font-size: 2.6rem;
    margin: 15px 0;
  }

  .signature-content p {
    font-size: 0.7rem;
    line-height: 1.7;
  }

  .signature-button {
    font-size: 14px;
    padding: 14px 25px;
    margin-top: 25px;
  }

  .signature-navigation {
    margin-top: 35px;
    gap: 20px;
    justify-content: center;
  }


  /* HISTOIRE */

  .histoire {
    padding: 75px 20px;
  }

  .histoire-photo-principale img {
    height: 45vh;
    min-height: 280px;
  }

  .histoire-introduction {
    margin: 40px auto;
  }

  .histoire-introduction p {
    font-size: 17px;
    line-height: 1.7;
  }

  .histoire-signature {
    margin: 65px 0;
  }

  .histoire-signature h3 {
    font-size: 40px;
    line-height: 1.1;
  }

  .histoire-bloc,
  .histoire-bloc.inverse {
    flex-direction: column;
    gap: 35px;
    margin: 70px 0;
  }

  .histoire-bloc img {
    width: 100% !important;
    height: auto;
  }

  .histoire-bloc h3 {
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 1.05;
  }

  .histoire-bloc p {
    font-size: 16px;
    line-height: 1.7;
  }

  .histoire-citation {
    height: auto;
    min-height: 320px;
    padding: 60px 25px;
  }

  .histoire-citation p {
    font-size: 30px;
    line-height: 1.25;
  }


  /* PRESTATIONS */

  .prestations {
    padding: 75px 20px;
  }

  .prestations-header {
    margin-bottom: 60px;
  }

  .prestation,
  .prestation.inverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
  }

  .prestation img,
  .prestation-text {
    width: 100%;
  }

  .prestation img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .prestation-text h3 {
    margin: 0 0 20px;
    font-size: 38px;
    line-height: 1.05;
  }

  .prestation-text p {
    font-size: 15px;
    line-height: 1.75;
  }

  .btn-prestation {
    font-size: 11px;
  }


  /* FAQ */

  .faq-section {
    padding: 75px 20px;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 0.95rem;
  }

  .faq-question span:first-child {
    padding-right: 20px;
  }

  .faq-answer-content {
    font-size: 0.9rem;
  }

  .faq-contact {
    margin-top: 70px;
  }

  .faq-contact-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }

  .faq-contact-links {
    width: 100%;
  }


  /* MODAL */

  .contact-modal {
    padding: 15px;
  }

  .contact-modal-content {
    max-height: 92svh;
    padding: 55px 25px 30px;
  }

}

/* =========================================================
   HEADER DESKTOP
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  height: 88px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 0 55px;

  background: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}


/* =========================================================
   NAVIGATION GAUCHE / DROITE
========================================================= */

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-left {
  justify-content: center;
}

.nav-right {
  justify-content: center;
}


/* =========================================================
   LIENS
========================================================= */

.nav-left a,
.nav-right a {
  position: relative;

  color: #222;
  text-decoration: none;

  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  white-space: nowrap;

  transition: opacity 0.35s ease;
}

.nav-left a::after,
.nav-right a::after,
.nav-left a.active::after,
.nav-right a.active::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: #222;

  transition: width 0.4s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  opacity: 0.6;
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 86px;
  height: 86px;

  text-decoration: none;
}

.site-logo img {
  display: block;

  width: 66px;
  height: auto;

  transition: transform 0.5s ease;
}

.site-logo:hover img {
  transform: scale(1.04);
}


/* =========================================================
   BOUTON HAMBURGER
========================================================= */

.menu-toggle {
  display: none;

  position: absolute;
  right: 22px;
  top: 50%;

  width: 38px;
  height: 38px;

  padding: 0;

  border: none;
  background: transparent;

  cursor: pointer;

  transform: translateY(-50%);
}

.menu-toggle span {
  position: absolute;
  left: 8px;

  width: 22px;
  height: 1px;

  background: #222;

  transition:
    transform 0.4s ease,
    top 0.4s ease;
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 22px;
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #f8f6f1;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu nav a {
  color: #222;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 9vw, 48px);
  font-weight: 400;

  line-height: 1;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mobile-menu nav a:hover {
  opacity: 0.55;
  transform: translateX(5px);
}

.mobile-menu-signature {
  position: absolute;
  bottom: 35px;

  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.45;
}


/* =========================================================
   MENU MOBILE OUVERT
========================================================= */

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

body.menu-open .menu-toggle {
  z-index: 1001;
}

body.menu-open .menu-toggle span:first-child {
  top: 19px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  top: 19px;
  transform: rotate(-45deg);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1050px) {

  .site-header {
    padding: 0 30px;
  }

  .nav-left,
  .nav-right {
    gap: 24px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 10px;
    letter-spacing: 0.10em;
  }

  .site-logo {
    width: 75px;
  }

  .site-logo img {
    width: 58px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .site-header {
    height: 58px;
    padding: 0 20px;

    display: flex;
    justify-content: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .site-logo {
    width: auto;
    height: 70px;
  }

  .site-logo img {
    width: 45px;
  }

  .menu-toggle {
    display: block;
  }
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 150px 40px;
  background: #f8f6f1;
  color: #222;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;

  max-width: 1200px;
  margin: 0 auto;

  align-items: start;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.contact-intro {
  max-width: 450px;
}

.contact-eyebrow {
  display: block;
  margin-bottom: 24px;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  opacity: 0.5;
}

.contact-intro h2 {
  margin: 0 0 32px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.contact-intro h2 em {
  font-style: italic;
}

.contact-intro p {
  max-width: 420px;
  margin: 0;

  font-size: 14px;
  line-height: 1.85;

  opacity: 0.7;
}


/* =========================================================
   INPUTS — DESIGN MAISON LÉONIE
========================================================= */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.form-field {
  position: relative;
}

.form-field-full {
  margin-bottom: 18px;
}


/* LABEL */

.form-field label {
  display: block;
  margin-bottom: 9px;

  color: #222;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  opacity: 0.8;
}

.form-field label span {
  margin-left: 5px;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;

  opacity: 0.65;
}


/* CHAMPS */

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: 7px;

  background: rgba(255, 255, 255, 0.55);

  color: #222;

  font-family: inherit;
  font-size: 14px;

  outline: none;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}


/* INPUTS + SELECT */

.form-field input,
.form-field select {
  height: 56px;
  padding: 0 18px;
}


/* TEXTAREA */

.form-field textarea {
  min-height: 150px;
  padding: 17px 18px;

  resize: vertical;

  line-height: 1.65;
}


/* HOVER */

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(35, 35, 35, 0.3);
}


/* FOCUS */

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #222;

  background: #fff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}


/* PLACEHOLDER */

.form-field textarea::placeholder {
  color: rgba(35, 35, 35, 0.35);
}


/* SELECT */

.form-field select {
  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;

  padding-right: 45px;

  background-image:
    linear-gradient(45deg, transparent 50%, #222 50%),
    linear-gradient(135deg, #222 50%, transparent 50%);

  background-position:
    calc(100% - 21px) 25px,
    calc(100% - 16px) 25px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}


/* DATE */

.form-field input[type="date"] {
  color: #222;
  cursor: pointer;
}


/* NUMBER */

.form-field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}


/* =========================================================
   BOUTON
========================================================= */

.form-submit {
  display: flex;
  justify-content: flex-start;

  margin-top: 10px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  padding: 17px 25px 17px 28px;

  border: 1px solid #222;
  border-radius: 2px;

  background: transparent;

  color: #222;

  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    gap 0.4s ease;
}

.contact-button span {
  font-size: 17px;
  line-height: 0;

  transition: transform 0.4s ease;
}

.contact-button:hover {
  background: #222;
  color: #fff;
  gap: 45px;
}

.contact-button:hover span {
  transform: translateX(3px);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 900px) {

  .contact-section {
    padding: 110px 30px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 75px;

    max-width: 700px;
  }

  .contact-intro {
    max-width: 650px;
  }

  .contact-intro p {
    max-width: 600px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .contact-section {
    padding: 80px 20px;
  }

  .contact-container {
    gap: 55px;
  }

  .contact-intro h2 {
    font-size: 45px;
  }

  .contact-intro p {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-field-full {
    margin-bottom: 30px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 14px;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }
}

.contact-socials {
  margin-top: 55px;
  padding-top: 28px;

  border-top: 1px solid rgba(35, 35, 35, 0.12);
}

.contact-socials-label {
  display: block;
  margin-bottom: 18px;

  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  opacity: 0.45;
}

.contact-socials-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-socials-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 190px;

  color: #222;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.contact-socials-links a span {
  font-family: Arial, sans-serif;
  font-size: 13px;

  opacity: 0.45;

  transition: transform 0.35s ease;
}

.contact-socials-links a:hover {
  opacity: 0.6;
  transform: translateX(4px);
}

.contact-socials-links a:hover span {
  transform: translate(3px, -3px);
}

.site-footer {
  padding: 16px 40px;

  background: #f8f6f1;
  color: #222;

  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;

  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;

  text-transform: uppercase;

  opacity: 0.8;
}

.footer-link,
.footer-creator {
  color: inherit;
  text-decoration: none;

  transition: opacity 0.3s ease;
}

.footer-link:hover,
.footer-creator:hover {
  opacity: 0.55;
}

.footer-separator {
  opacity: 0.45;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .site-footer {
    padding: 25px 20px;
  }

  .footer-content {
    gap: 5px 9px;

    font-size: 8px;
    letter-spacing: 0.06em;
  }
}