/* =========================================================
   F&S COIFFURE — HOME.CSS
   DESIGN BLANC, LUMINEUX, ARRONDI ET ULTRA ÉLÉGANT
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap");

/* =========================================================
   VARIABLES
========================================================= */

.home-page {
  --white: #ffffff;
  --white-soft: #fdfcf9;
  --cream: #f7f3ec;
  --cream-soft: #fbf8f3;
  --cream-dark: #ece4d8;

  --ink: #171511;
  --ink-soft: #35312b;
  --text: #625d55;
  --muted: #8b857c;

  --gold: #b38a52;
  --gold-dark: #7c5d36;
  --gold-light: #dfc79f;
  --gold-soft: #f4eadb;

  --border: rgba(45, 38, 29, 0.1);
  --border-strong: rgba(45, 38, 29, 0.18);
  --border-gold: rgba(179, 138, 82, 0.34);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --radius-extra: 42px;
  --radius-pill: 999px;

  --container:
    min(1180px, calc(100% - 48px));

  --shadow-small:
    0 10px 30px rgba(54, 43, 29, 0.07);

  --shadow-medium:
    0 22px 60px rgba(54, 43, 29, 0.11);

  --shadow-large:
    0 35px 90px rgba(54, 43, 29, 0.16);

  min-width: 320px;
  margin: 0;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--white-soft);

  font-family:
    "Poppins",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-page.menu-open {
  overflow: hidden;
}

/* =========================================================
   RESET
========================================================= */

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page img {
  display: block;
  max-width: 100%;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
  font: inherit;
}

.home-page button {
  cursor: pointer;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page figure,
.home-page blockquote {
  margin: 0;
}

.home-page ul,
.home-page ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page main {
  position: relative;
  z-index: 1;
}

/* =========================================================
   SÉLECTION ET SCROLLBAR
========================================================= */

.home-page ::selection {
  color: var(--white);
  background: var(--gold);
}

.home-page::-webkit-scrollbar {
  width: 9px;
}

.home-page::-webkit-scrollbar-track {
  background: #f2ede5;
}

.home-page::-webkit-scrollbar-thumb {
  border: 2px solid #f2ede5;
  border-radius: var(--radius-pill);
  background: #bca47f;
}

.home-page::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* =========================================================
   STRUCTURE
========================================================= */

.home-page .container {
  width: var(--container);
  max-width: 1180px;
  margin-inline: auto;
}

.home-page .section-padding {
  padding: 112px 0;
}

/* =========================================================
   TYPOGRAPHIE ÉLÉGANTE
========================================================= */

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;
}

.home-page .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 17px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-page .section-label::before {
  content: "";

  width: 34px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      rgba(179, 138, 82, 0.08)
    );
}

.home-page .section-heading {
  position: relative;

  max-width: 800px;
  margin: 0 auto 62px;

  text-align: center;
}

.home-page .section-heading .section-label {
  justify-content: center;
}

.home-page .section-heading .section-label::before {
  display: none;
}

.home-page .section-heading h2 {
  margin: 5px 0 18px;

  color: var(--ink);

  font-size:
    clamp(48px, 5.8vw, 76px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-page .section-heading p {
  max-width: 660px;
  margin-inline: auto;

  color: var(--text);

  font-size: 13px;
  line-height: 1.85;
}

/* =========================================================
   BOUTONS ARRONDIS
========================================================= */

.home-page .btn,
.home-page .phone-btn,
.home-page .reserve-btn {
  position: relative;

  min-height: 52px;
  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border: 1px solid transparent;
  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.home-page .btn::after,
.home-page .phone-btn::after,
.home-page .reserve-btn::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;

  width: 65%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.home-page .btn:hover::after,
.home-page .phone-btn:hover::after,
.home-page .reserve-btn:hover::after {
  left: 150%;
}

.home-page .btn:hover,
.home-page .phone-btn:hover,
.home-page .reserve-btn:hover {
  transform: translateY(-3px);
}

.home-page .btn-primary,
.home-page .reserve-btn {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #26231f,
      #12110f
    );

  border-color: #171511;

  box-shadow:
    0 14px 34px rgba(23, 21, 17, 0.18);
}

.home-page .btn-primary:hover,
.home-page .reserve-btn:hover {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border-color: var(--gold);

  box-shadow:
    0 18px 42px rgba(124, 93, 54, 0.25);
}

.home-page .btn-outline,
.home-page .phone-btn {
  color: var(--ink);

  background:
    rgba(255, 255, 255, 0.88);

  border-color: var(--border-strong);

  box-shadow:
    0 8px 24px rgba(54, 43, 29, 0.05);
}

.home-page .btn-outline:hover,
.home-page .phone-btn:hover {
  color: var(--gold-dark);
  background: var(--white);
  border-color: var(--gold);

  box-shadow: var(--shadow-small);
}

.home-page .btn:focus-visible,
.home-page .phone-btn:focus-visible,
.home-page .reserve-btn:focus-visible,
.home-page .menu-toggle:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible,
.home-page a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   LOADER
========================================================= */

.home-page .page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(179, 138, 82, 0.08),
      transparent 30%
    ),
    var(--white);

  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.home-page .page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-page .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.home-page .loader-inner img {
  width: 150px;
  max-height: 100px;
  object-fit: contain;
}

.home-page .loader-line {
  position: relative;

  width: 150px;
  height: 2px;

  overflow: hidden;

  border-radius: var(--radius-pill);

  background:
    rgba(23, 21, 17, 0.1);
}

.home-page .loader-line::after {
  content: "";

  position: absolute;
  inset-block: 0;
  left: -70%;

  width: 70%;

  border-radius: var(--radius-pill);

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      transparent
    );

  animation:
    loaderMovement 1.2s ease-in-out infinite;
}

@keyframes loaderMovement {
  to {
    left: 120%;
  }
}

/* =========================================================
   SKIP LINK
========================================================= */

.home-page .skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;

  padding: 12px 18px;

  color: var(--white);
  background: var(--ink);

  border-radius: var(--radius-pill);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;
  font-weight: 700;

  transform: translateY(-160%);

  transition: transform 0.25s ease;
}

.home-page .skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   HEADER BLANC ET ARRONDI
========================================================= */

.home-page .site-header {
  position: fixed;
  top: 12px;
  right: 18px;
  left: 18px;
  z-index: 1000;

  height: 78px;

  display: flex;
  align-items: center;

  background:
    rgba(255, 255, 255, 0.92);

  border:
    1px solid rgba(45, 38, 29, 0.08);

  border-radius: var(--radius-medium);

  box-shadow:
    0 14px 42px rgba(54, 43, 29, 0.1);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transition:
    height 0.3s ease,
    top 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.home-page .site-header.is-scrolled {
  top: 8px;
  height: 70px;

  background:
    rgba(255, 255, 255, 0.98);

  box-shadow:
    0 16px 48px rgba(54, 43, 29, 0.14);
}

.home-page .header-inner {
  width:
    min(1280px, calc(100% - 34px));

  height: 100%;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.home-page .logo {
  width: 128px;
  min-width: 128px;
  height: 62px;

  display: flex;
  align-items: center;
}

.home-page .logo img {
  width: 100%;
  max-height: 59px;

  object-fit: contain;
  object-position: left center;
}

.home-page .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap:
    clamp(17px, 2vw, 28px);
}

.home-page .main-nav a {
  position: relative;

  padding: 27px 0;

  color: #575149;

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;

  transition: color 0.25s ease;
}

.home-page .main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;

  width: 0;
  height: 2px;
  margin-inline: auto;

  border-radius: var(--radius-pill);

  background: var(--gold);

  transition: width 0.3s ease;
}

.home-page .main-nav a:hover,
.home-page .main-nav a.active {
  color: var(--ink);
}

.home-page .main-nav a:hover::after,
.home-page .main-nav a.active::after {
  width: 100%;
}

.home-page .header-actions {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;
}

.home-page .phone-btn,
.home-page .reserve-btn {
  min-height: 42px;
  padding-inline: 17px;
}

.home-page .phone-btn {
  background: var(--cream);
}

.home-page .phone-btn svg {
  width: 17px;
  height: 17px;

  stroke: var(--gold-dark);
  stroke-width: 1.8;
}

.home-page .menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  border:
    1px solid var(--border-strong);

  border-radius: 50%;

  background: var(--white);
}

.home-page .menu-toggle span {
  width: 19px;
  height: 1.5px;

  background: var(--ink);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.home-page .menu-toggle.active span:nth-child(1) {
  transform:
    translateY(7.5px)
    rotate(45deg);
}

.home-page .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.home-page .menu-toggle.active span:nth-child(3) {
  transform:
    translateY(-7.5px)
    rotate(-45deg);
}

/* =========================================================
   HERO BLANC AVEC PHOTO
========================================================= */

.home-page .home-hero {
  position: relative;

  min-height: 820px;
  margin: 0 18px;
  padding-top: 105px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  border-radius:
    0 0 var(--radius-extra) var(--radius-extra);

  background: var(--cream);
}

.home-page .home-hero::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -3;

  background-image:
    url("../images/hero-home.jpg");

  background-size: cover;
  background-position: center 38%;

  transform: scale(1.025);
}

.home-page .home-hero::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 30%,
      rgba(255, 255, 255, 0.76) 54%,
      rgba(255, 255, 255, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(247, 243, 236, 0.78),
      transparent 48%
    );
}

.home-page .hero-decoration {
  position: absolute;
  top: 17%;
  right: -5%;
  z-index: -1;

  width: 520px;
  height: 520px;

  border:
    1px solid rgba(179, 138, 82, 0.28);

  border-radius: 50%;
}

.home-page .hero-decoration::before,
.home-page .hero-decoration::after {
  content: "";

  position: absolute;

  border:
    1px solid rgba(179, 138, 82, 0.16);

  border-radius: 50%;
}

.home-page .hero-decoration::before {
  inset: 70px;
}

.home-page .hero-decoration::after {
  inset: 145px;
}

.home-page .hero-lines {
  position: absolute;
  top: 0;
  right: 18%;
  z-index: -1;

  width: 1px;
  height: 100%;

  background:
    rgba(32, 28, 23, 0.065);

  box-shadow:
    130px 0 rgba(32, 28, 23, 0.04),
    -130px 0 rgba(32, 28, 23, 0.04);
}

.home-page .hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-page .hero-text {
  max-width: 820px;
}

.home-page .hero-text h1 {
  max-width: 800px;
  margin: 10px 0 25px;

  color: var(--ink);

  font-size:
    clamp(65px, 8vw, 112px);

  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.045em;

  text-shadow:
    0 12px 35px rgba(255, 255, 255, 0.75);
}

.home-page .hero-text h1 span {
  display: block;

  margin-top: 28px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size:
    clamp(16px, 2vw, 25px);

  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .hero-description {
  max-width: 640px;
  margin: 0 0 35px;

  color: #514b43;

  font-size: 14px;
  line-height: 1.9;
}

.home-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .hero-information {
  max-width: 790px;
  margin-top: 50px;
  padding: 8px;

  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  overflow: hidden;

  border:
    1px solid rgba(61, 53, 43, 0.1);

  border-radius: var(--radius-large);

  background:
    rgba(255, 255, 255, 0.82);

  box-shadow: var(--shadow-medium);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-page .hero-information-item {
  min-height: 100px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right:
    1px solid var(--border);
}

.home-page .hero-information-item:last-child {
  border-right: 0;
}

.home-page .hero-information-item small {
  margin-bottom: 7px;

  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-page .hero-information-item strong {
  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* =========================================================
   BANDE DE CONFIANCE
========================================================= */

.home-page .trust-strip {
  position: relative;
  z-index: 4;

  margin: 28px 18px 0;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}

.home-page .trust-grid {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);
}

.home-page .trust-item {
  min-height: 160px;
  padding: 38px 34px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  border-right:
    1px solid var(--border);
}

.home-page .trust-item:first-child {
  border-radius:
    var(--radius-large) 0 0 var(--radius-large);
}

.home-page .trust-item:last-child {
  border-right: 0;

  border-radius:
    0 var(--radius-large) var(--radius-large) 0;
}

.home-page .trust-number {
  color: var(--gold);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 21px;
  font-weight: 700;
}

.home-page .trust-item h3 {
  margin-bottom: 7px;

  color: var(--ink);

  font-size: 24px;
  font-weight: 700;
}

.home-page .trust-item p {
  color: var(--text);

  font-size: 12px;
  line-height: 1.75;
}

/* =========================================================
   PRÉSENTATION DU SALON
========================================================= */

.home-page .about-home {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(179, 138, 82, 0.08),
      transparent 24%
    ),
    var(--cream);
}

.home-page .about-grid {
  display: grid;

  grid-template-columns:
    minmax(420px, 0.96fr)
    minmax(0, 1.04fr);

  gap: 78px;
  align-items: center;
}

.home-page .about-image {
  position: relative;

  min-height: 575px;

  overflow: hidden;

  background: #ddd7cc;

  border:
    9px solid var(--white);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);
}

.home-page .about-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.34),
      transparent 48%
    );

  pointer-events: none;
}

.home-page .about-image img {
  width: 100%;
  height: 100%;
  min-height: 575px;

  object-fit: cover;
  object-position: center;

  filter:
    saturate(0.96)
    contrast(1.02)
    brightness(1.04);

  transition:
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .about-image:hover img {
  transform: scale(1.045);
}

.home-page .about-image-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;

  padding: 19px 21px;

  color: var(--white);

  background:
    rgba(25, 23, 20, 0.72);

  border:
    1px solid rgba(255, 255, 255, 0.2);

  border-radius: var(--radius-medium);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.home-page .about-image-label strong {
  display: block;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 22px;
  font-weight: 700;
}

.home-page .about-image-label span {
  display: block;
  margin-top: 4px;

  color: var(--gold-light);

  font-size: 11px;
}

.home-page .about-copy h2 {
  margin: 5px 0 24px;

  color: var(--ink);

  font-size:
    clamp(51px, 5.5vw, 75px);

  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-page .about-copy h2 span {
  display: block;
  color: var(--gold-dark);
}

.home-page .about-copy > p {
  max-width: 610px;
  margin-bottom: 18px;

  color: var(--text);

  font-size: 13px;
  line-height: 1.9;
}

.home-page .about-points {
  margin: 34px 0;

  display: grid;
  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}

.home-page .about-point {
  padding: 20px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-medium);

  box-shadow:
    0 8px 24px rgba(31, 25, 17, 0.045);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.home-page .about-point:hover {
  transform: translateY(-4px);

  border-color: var(--border-gold);

  box-shadow: var(--shadow-small);
}

.home-page .about-point strong {
  display: block;
  margin-bottom: 4px;

  color: var(--ink);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .about-point span {
  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* =========================================================
   SERVICES ARRONDIS
========================================================= */

.home-page .services-home {
  position: relative;

  overflow: hidden;

  margin: 0 18px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);
}

.home-page .services-home::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 38%;
  height: 100%;

  background:
    linear-gradient(
      135deg,
      transparent,
      rgba(179, 138, 82, 0.055)
    );

  pointer-events: none;
}

.home-page .services-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.home-page .service-card {
  position: relative;

  min-height: 190px;
  padding: 34px;

  display: grid;
  grid-template-columns:
    auto 1fr auto;

  align-items: center;
  gap: 23px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #faf7f1
    );

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  box-shadow:
    0 12px 30px rgba(31, 25, 17, 0.05);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.home-page .service-card::before {
  content: "";

  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;

  width: 4px;

  border-radius: var(--radius-pill);

  background: var(--gold);

  transform: scaleY(0);
  transform-origin: bottom;

  transition: transform 0.35s ease;
}

.home-page .service-card:hover {
  transform: translateY(-7px);

  background: var(--white);

  border-color: var(--border-gold);

  box-shadow: var(--shadow-medium);
}

.home-page .service-card:hover::before {
  transform: scaleY(1);
}

.home-page .service-card:last-child {
  grid-column: 1 / -1;
}

.home-page .service-number {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold-dark);
  background: var(--gold-soft);

  border-radius: 50%;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 19px;
  font-weight: 700;
}

.home-page .service-card h3 {
  margin-bottom: 7px;

  color: var(--ink);

  font-size: 26px;
  font-weight: 700;
}

.home-page .service-card p {
  color: var(--text);

  font-size: 12px;
  line-height: 1.7;
}

.home-page .service-price {
  min-width: 82px;

  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 31px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.home-page .services-action {
  margin-top: 46px;
  text-align: center;
}

/* =========================================================
   HORAIRES ET TARIFS
========================================================= */

.home-page .hours-prices {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f5f0e8,
      #fbfaf7
    );
}

.home-page .hours-prices::before {
  content: "";

  position: absolute;
  top: -140px;
  right: -140px;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(179, 138, 82, 0.14),
      transparent 68%
    );

  pointer-events: none;
}

.home-page .hours-prices-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    0.82fr 1.18fr;

  gap: 28px;
  align-items: stretch;
}

.home-page .hours-panel,
.home-page .prices-panel {
  padding: 48px;

  background:
    rgba(255, 255, 255, 0.96);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-medium);
}

.home-page .hours-panel h2,
.home-page .prices-panel h2 {
  margin: 3px 0 15px;

  color: var(--ink);

  font-size:
    clamp(48px, 5vw, 66px);

  font-weight: 600;
  line-height: 0.95;
}

.home-page .panel-intro {
  margin-bottom: 31px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.8;
}

.home-page .opening-row {
  padding: 23px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-top:
    1px solid var(--border);
}

.home-page .opening-row:last-of-type {
  border-bottom:
    1px solid var(--border);
}

.home-page .opening-row span {
  color: var(--ink-soft);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .opening-row strong {
  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 25px;
  font-weight: 700;
  white-space: nowrap;
}

.home-page .appointment-notice {
  margin: 26px 0;
  padding: 19px 20px;

  background: #fbf5e9;

  border:
    1px solid rgba(179, 138, 82, 0.14);

  border-radius: var(--radius-medium);
}

.home-page .appointment-notice strong {
  display: block;

  color: var(--ink);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .appointment-notice span {
  display: block;
  margin-top: 6px;

  color: var(--text);

  font-size: 11px;
  line-height: 1.7;
}

.home-page .hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.home-page .price-table {
  margin-top: 25px;
}

.home-page .price-row {
  min-height: 79px;

  display: grid;
  grid-template-columns:
    minmax(160px, auto)
    1fr
    auto;

  align-items: center;
  gap: 18px;

  border-top:
    1px solid var(--border);
}

.home-page .price-row:last-child {
  border-bottom:
    1px solid var(--border);
}

.home-page .price-name {
  color: var(--ink);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 22px;
  font-weight: 700;
}

.home-page .price-name small {
  display: block;
  margin-top: 4px;

  color: var(--muted);

  font-family:
    "Poppins",
    sans-serif;

  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .price-dots {
  height: 1px;

  background-image:
    linear-gradient(
      90deg,
      rgba(23, 23, 23, 0.24) 35%,
      transparent 35%
    );

  background-size:
    7px 1px;
}

.home-page .price-row strong {
  min-width: 68px;

  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 29px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* =========================================================
   RÉSERVATION
========================================================= */

.home-page .booking-home {
  position: relative;

  overflow: hidden;

  margin: 0 18px;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);
}

.home-page .booking-home::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97),
      rgba(255, 255, 255, 0.86)
    ),
    url("../images/booking-premium.jpg")
    center / cover no-repeat;

  opacity: 0.96;
}

.home-page .booking-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    0.82fr 1.18fr;

  gap: 62px;
  align-items: center;
}

.home-page .booking-copy h2 {
  margin: 3px 0 21px;

  color: var(--ink);

  font-size:
    clamp(50px, 5.5vw, 74px);

  font-weight: 600;
  line-height: 0.97;
}

.home-page .booking-copy h2 span {
  display: block;
  color: var(--gold-dark);
}

.home-page .booking-copy > p {
  margin-bottom: 29px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.9;
}

.home-page .booking-links {
  display: grid;
  gap: 11px;
}

.home-page .booking-link {
  min-height: 69px;
  padding: 18px 21px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  background:
    rgba(255, 255, 255, 0.94);

  border:
    1px solid var(--border);

  border-radius: var(--radius-medium);

  box-shadow:
    0 8px 24px rgba(31, 25, 17, 0.05);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home-page .booking-link:hover {
  transform: translateX(6px);

  border-color: var(--border-gold);

  box-shadow: var(--shadow-small);
}

.home-page .booking-link strong {
  color: var(--ink);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .booking-link span {
  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 18px;
  font-weight: 600;
  text-align: right;
}

.home-page .booking-form {
  padding: 42px;

  background:
    rgba(255, 255, 255, 0.96);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .form-row {
  margin-bottom: 13px;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}

.home-page .booking-form input,
.home-page .booking-form select,
.home-page .booking-form textarea {
  width: 100%;
  min-width: 0;

  color: var(--ink);

  background: #faf8f4;

  border:
    1px solid var(--border);

  border-radius: var(--radius-small);
  outline: none;

  font-size: 11px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-page .booking-form input,
.home-page .booking-form select {
  min-height: 55px;
  padding: 0 16px;
}

.home-page .booking-form textarea {
  min-height: 125px;
  margin-bottom: 16px;
  padding: 16px;

  resize: vertical;
}

.home-page .booking-form input::placeholder,
.home-page .booking-form textarea::placeholder {
  color: #8c8881;
  opacity: 1;
}

.home-page .booking-form select {
  color: #6f6a63;

  appearance: none;
  -webkit-appearance: none;

  padding-right: 38px;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #81786c 50%
    ),
    linear-gradient(
      135deg,
      #81786c 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 18px) 24px,
    calc(100% - 13px) 24px;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.home-page .booking-form option {
  color: var(--ink);
  background: var(--white);
}

.home-page .booking-form input:hover,
.home-page .booking-form select:hover,
.home-page .booking-form textarea:hover {
  border-color: var(--border-strong);
}

.home-page .booking-form input:focus,
.home-page .booking-form select:focus,
.home-page .booking-form textarea:focus {
  background: var(--white);
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px rgba(179, 138, 82, 0.11);
}

.home-page .booking-form .btn {
  width: 100%;
}

.home-page .form-feedback {
  min-height: 22px;
  margin-top: 14px;

  color: var(--gold-dark);

  font-size: 10px;
  line-height: 1.6;
}

/* =========================================================
   CONTACT
========================================================= */

.home-page .contact-home {
  background:
    linear-gradient(
      180deg,
      #f8f5ef,
      #ffffff
    );
}

.home-page .contact-grid {
  display: grid;
  grid-template-columns:
    1fr 1fr;

  overflow: hidden;

  background: var(--white);

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-medium);
}

.home-page .contact-copy,
.home-page .contact-details {
  padding: 50px;
}

.home-page .contact-copy {
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f5eee3
    );

  border-right:
    1px solid var(--border);
}

.home-page .contact-copy h2 {
  margin: 3px 0 19px;

  color: var(--ink);

  font-size:
    clamp(48px, 5vw, 67px);

  font-weight: 600;
  line-height: 0.97;
}

.home-page .contact-copy p {
  color: var(--text);

  font-size: 12px;
  line-height: 1.85;
}

.home-page .contact-detail {
  padding: 19px 0;

  display: grid;
  grid-template-columns:
    120px 1fr;

  gap: 18px;

  border-bottom:
    1px solid var(--border);
}

.home-page .contact-detail:first-child {
  padding-top: 0;
}

.home-page .contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-page .contact-detail strong {
  color: var(--gold-dark);

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .contact-detail span,
.home-page .contact-detail a {
  color: var(--ink-soft);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.home-page .contact-detail a:hover {
  color: var(--gold-dark);
}

/* =========================================================
   PHOTO DE FAÇADE
========================================================= */

.home-page .facade-banner {
  position: relative;

  min-height: 610px;
  margin: 0 18px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;

  border-radius: var(--radius-extra);

  background: var(--cream-dark);
}

.home-page .facade-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter:
    contrast(1.02)
    brightness(0.92)
    saturate(0.94);

  transition:
    transform 1.1s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .facade-banner:hover > img {
  transform: scale(1.035);
}

.home-page .facade-banner::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.61),
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.61)
    );
}

.home-page .facade-content {
  width:
    min(690px, calc(100% - 40px));

  padding: 44px;

  text-align: center;

  background:
    rgba(255, 255, 255, 0.9);

  border:
    1px solid rgba(255, 255, 255, 0.94);

  border-radius: var(--radius-extra);

  box-shadow: var(--shadow-large);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.home-page .facade-content img {
  width: 170px;
  max-height: 105px;
  margin: 0 auto;

  object-fit: contain;
}

.home-page .facade-content h2 {
  margin: 22px 0 10px;

  color: var(--ink);

  font-size:
    clamp(45px, 5vw, 64px);

  font-weight: 600;
  line-height: 0.95;
}

.home-page .facade-content p {
  margin-bottom: 27px;

  color: var(--text);

  font-size: 12px;
  line-height: 1.75;
}

/* =========================================================
   FOOTER CLAIR
========================================================= */

.home-page .site-footer {
  margin: 18px;
  padding: 72px 0 0;

  color: var(--ink);

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f2ede5
    );

  border:
    1px solid var(--border);

  border-radius: var(--radius-extra);
}

.home-page .footer-grid {
  display: grid;
  grid-template-columns:
    1.35fr
    repeat(3, 1fr);

  gap: 52px;
  padding-bottom: 56px;
}

.home-page .footer-brand img {
  width: 150px;
  max-height: 95px;
  margin-bottom: 20px;

  object-fit: contain;
}

.home-page .footer-brand p,
.home-page .footer-grid > div > p {
  width: fit-content;
  margin-bottom: 11px;

  color: var(--text);

  font-size: 10.5px;
  line-height: 1.8;
}

.home-page .footer-grid h3 {
  margin: 0 0 21px;

  color: var(--gold-dark);

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 22px;
  font-weight: 700;
}

.home-page .footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;

  color: var(--text);

  font-size: 10.5px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.home-page .footer-grid a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.home-page .footer-bottom {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border-top:
    1px solid var(--border);
}

.home-page .footer-bottom p {
  color: #827c73;
  font-size: 9.5px;
}

/* =========================================================
   WHATSAPP
========================================================= */

.home-page .floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 900;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-dark)
    );

  border:
    1px solid rgba(255, 255, 255, 0.56);

  border-radius: 50%;

  box-shadow:
    0 18px 45px rgba(62, 47, 30, 0.28);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.home-page .floating-whatsapp::before {
  content: "";

  position: absolute;
  inset: -6px;

  border:
    1px solid rgba(179, 138, 82, 0.48);

  border-radius: 50%;

  animation:
    whatsappPulse 2.4s ease-out infinite;
}

.home-page .floating-whatsapp:hover {
  transform:
    translateY(-5px)
    scale(1.04);

  background: var(--ink);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.28);
}

.home-page .floating-whatsapp svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.86);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

/* =========================================================
   ANIMATIONS
========================================================= */

.home-page [data-reveal] {
  opacity: 0;

  transform:
    translateY(34px);

  transition:
    opacity 0.85s
    cubic-bezier(0.22, 1, 0.36, 1),

    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page [data-reveal="left"] {
  transform:
    translateX(-40px);
}

.home-page [data-reveal="right"] {
  transform:
    translateX(40px);
}

.home-page [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0);
}

.home-page [data-delay="100"] {
  transition-delay: 0.1s;
}

.home-page [data-delay="200"] {
  transition-delay: 0.2s;
}

.home-page [data-delay="300"] {
  transition-delay: 0.3s;
}

/* =========================================================
   TABLETTES
========================================================= */

@media (max-width: 1120px) {
  .home-page .main-nav {
    gap: 16px;
  }

  .home-page .phone-btn span {
    display: none;
  }

  .home-page .about-grid,
  .home-page .hours-prices-grid,
  .home-page .booking-grid {
    gap: 42px;
  }
}

@media (max-width: 950px) {
  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    top: 8px;
    height: 70px;
  }

  .home-page .phone-btn {
    display: none;
  }

  .home-page .menu-toggle {
    display: flex;
  }

  .home-page .main-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    bottom: 18px;

    width:
      min(420px, calc(100% - 36px));

    padding: 32px 28px;

    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;

    background:
      rgba(255, 255, 255, 0.98);

    border:
      1px solid var(--border);

    border-radius: var(--radius-large);

    box-shadow:
      -20px 0 50px rgba(23, 23, 23, 0.12);

    transform:
      translateX(115%);

    visibility: hidden;

    transition:
      transform 0.4s ease,
      visibility 0.4s ease;
  }

  .home-page .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .home-page .main-nav a {
    padding: 18px 4px;

    font-size: 11px;

    border-bottom:
      1px solid var(--border);
  }

  .home-page .main-nav a::after {
    display: none;
  }

  .home-page .home-hero {
    min-height: 780px;
  }

  .home-page .home-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.91) 67%,
        rgba(255, 255, 255, 0.4)
      );
  }

  .home-page .hero-information {
    grid-template-columns: 1fr;
  }

  .home-page .hero-information-item {
    min-height: auto;

    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .home-page .hero-information-item:last-child {
    border-bottom: 0;
  }

  .home-page .trust-grid {
    grid-template-columns: 1fr;
  }

  .home-page .trust-item {
    min-height: auto;

    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .home-page .trust-item:first-child,
  .home-page .trust-item:last-child {
    border-radius: 0;
  }

  .home-page .trust-item:last-child {
    border-bottom: 0;
  }

  .home-page .about-grid,
  .home-page .hours-prices-grid,
  .home-page .booking-grid {
    grid-template-columns: 1fr;
  }

  .home-page .about-image,
  .home-page .about-image img {
    min-height: 510px;
  }

  .home-page .services-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-card:last-child {
    grid-column: auto;
  }

  .home-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .contact-copy {
    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .home-page .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .home-page {
    --container:
      min(100% - 30px, 1180px);

    --radius-large: 24px;
    --radius-extra: 30px;
  }

  .home-page .section-padding {
    padding: 76px 0;
  }

  .home-page .site-header {
    right: 10px;
    left: 10px;

    border-radius: 18px;
  }

  .home-page .header-inner {
    width:
      calc(100% - 24px);
  }

  .home-page .logo {
    width: 108px;
    min-width: 108px;
  }

  .home-page .reserve-btn {
    display: none;
  }

  .home-page .home-hero,
  .home-page .services-home,
  .home-page .booking-home,
  .home-page .facade-banner,
  .home-page .site-footer {
    margin-right: 10px;
    margin-left: 10px;
  }

  .home-page .home-hero {
    min-height: 750px;
  }

  .home-page .home-hero::before {
    background-position:
      63% center;
  }

  .home-page .home-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.91)
      );
  }

  .home-page .hero-decoration {
    right: -72%;
  }

  .home-page .hero-content {
    padding-top: 82px;
    padding-bottom: 68px;
  }

  .home-page .hero-text h1 {
    font-size:
      clamp(54px, 15vw, 76px);

    line-height: 0.84;
  }

  .home-page .hero-text h1 span {
    margin-top: 20px;

    font-size:
      clamp(13px, 4vw, 18px);

    line-height: 1.45;
    letter-spacing: 0.11em;
  }

  .home-page .hero-description {
    font-size: 13px;
  }

  .home-page .hero-buttons {
    display: grid;
  }

  .home-page .hero-buttons .btn {
    width: 100%;
  }

  .home-page .trust-strip {
    margin-right: 10px;
    margin-left: 10px;
  }

  .home-page .about-grid,
  .home-page .hours-prices-grid,
  .home-page .booking-grid {
    gap: 36px;
  }

  .home-page .about-image,
  .home-page .about-image img {
    min-height: 390px;
  }

  .home-page .about-image {
    border-width: 7px;
  }

  .home-page .about-image-label {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .home-page .about-points {
    grid-template-columns: 1fr;
  }

  .home-page .service-card {
    min-height: auto;
    padding: 25px 20px;

    grid-template-columns:
      auto 1fr;

    gap: 14px;
  }

  .home-page .service-price {
    grid-column: 2;

    min-width: auto;

    text-align: left;
  }

  .home-page .hours-panel,
  .home-page .prices-panel,
  .home-page .booking-form,
  .home-page .contact-copy,
  .home-page .contact-details {
    padding: 29px 21px;
  }

  .home-page .opening-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .home-page .price-row {
    min-height: auto;
    padding: 18px 0;

    grid-template-columns:
      1fr auto;

    gap: 11px;
  }

  .home-page .price-dots {
    display: none;
  }

  .home-page .price-name {
    font-size: 19px;
  }

  .home-page .price-row strong {
    font-size: 25px;
  }

  .home-page .form-row {
    grid-template-columns: 1fr;
  }

  .home-page .contact-detail {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .home-page .facade-banner {
    min-height: 520px;
  }

  .home-page .facade-banner::after {
    background:
      rgba(255, 255, 255, 0.48);
  }

  .home-page .facade-content {
    padding: 32px 20px;
  }

  .home-page .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-page .footer-bottom {
    padding: 20px 0;

    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .home-page .floating-whatsapp {
    right: 15px;
    bottom: 15px;

    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .home-page {
    --container:
      min(100% - 22px, 1180px);
  }

  .home-page .hero-text h1 {
    font-size: 50px;
  }

  .home-page .about-image,
  .home-page .about-image img {
    min-height: 330px;
  }

  .home-page .service-card h3 {
    font-size: 22px;
  }

  .home-page .facade-content img {
    width: 145px;
  }
}

/* =========================================================
   MOUVEMENTS RÉDUITS
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .home-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-page .floating-whatsapp::before {
    display: none;
  }
}
/* =========================================================
   CORRECTION DU MENU MOBILE — FOND BLANC OPAQUE
========================================================= */

@media (max-width: 950px) {
  .home-page .main-nav {
    position: fixed !important;
    top: 88px !important;
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
    z-index: 1200 !important;

    width: min(400px, calc(100% - 28px)) !important;
    padding: 28px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    overflow-y: auto !important;

    opacity: 1 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;

    border: 1px solid rgba(45, 38, 29, 0.12) !important;
    border-radius: 26px !important;

    box-shadow:
      0 30px 80px rgba(24, 20, 15, 0.28) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    transform: translateX(115%) !important;
    visibility: hidden !important;

    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.4s ease !important;
  }

  .home-page .main-nav.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .home-page .main-nav a {
    width: 100% !important;
    padding: 18px 8px !important;

    color: #191714 !important;
    background: transparent !important;

    border-bottom:
      1px solid rgba(45, 38, 29, 0.1) !important;

    font-family:
      "Montserrat",
      Arial,
      sans-serif !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-align: left !important;
    text-transform: uppercase !important;
  }

  .home-page .main-nav a:last-child {
    border-bottom: 0 !important;
  }

  .home-page .main-nav a:hover,
  .home-page .main-nav a.active {
    color: #7c5d36 !important;
    background: #f8f3eb !important;

    border-radius: 12px !important;
    padding-left: 16px !important;
  }

  .home-page .main-nav a::after {
    display: none !important;
  }

  body.home-page.menu-open::before {
    content: "";

    position: fixed;
    inset: 0;
    z-index: 999;

    background:
      rgba(20, 17, 13, 0.48);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .home-page .site-header {
    z-index: 1100 !important;
  }

  .home-page .menu-toggle {
    position: relative;
    z-index: 1300;
  }
}

@media (max-width: 650px) {
  .home-page .main-nav {
    top: 86px !important;
    right: 10px !important;
    bottom: 10px !important;

    width: calc(100% - 20px) !important;
    padding: 24px 20px !important;

    border-radius: 24px !important;
  }
}
/* =========================================================
   MENU MOBILE FINAL — TOUTES LES PAGES VISIBLES
========================================================= */

@media (max-width: 950px) {

  /* Arrière-plan sombre derrière le menu */

  body.home-page.menu-open::before {
    content: "";

    position: fixed;
    inset: 0;
    z-index: 1000;

    background: rgba(22, 18, 14, 0.42);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  /* Le header reste au-dessus */

  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    z-index: 1300 !important;
  }

  /* Carte contenant tout le menu */

  .home-page .main-nav {
    position: fixed !important;

    top: 94px !important;
    right: 14px !important;
    bottom: auto !important;
    left: 14px !important;

    z-index: 1400 !important;

    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 14px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;

    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;

    color: #171511 !important;

    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;

    border:
      1px solid rgba(45, 38, 29, 0.11) !important;

    border-radius: 26px !important;

    box-shadow:
      0 30px 80px rgba(30, 24, 18, 0.24) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
      translateY(-12px)
      scale(0.98) !important;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.35s
      cubic-bezier(0.22, 1, 0.36, 1) !important;

    scrollbar-width: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-page .main-nav::-webkit-scrollbar {
    display: none !important;
  }

  /* Menu ouvert */

  .home-page .main-nav.open {
    height: auto !important;
    max-height: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
      translateY(0)
      scale(1) !important;
  }

  /* Chaque lien */

  .home-page .main-nav a {
    position: relative !important;

    width: 100% !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    color: #211e1a !important;

    background: #faf8f4 !important;

    border:
      1px solid transparent !important;

    border-bottom:
      1px solid transparent !important;

    border-radius: 15px !important;

    font-family:
      "Montserrat",
      Arial,
      sans-serif !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;

    text-align: left !important;
    text-transform: uppercase !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    transition:
      color 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      padding-left 0.25s ease !important;
  }

  /* Petite flèche élégante */

  .home-page .main-nav a::before {
    content: "→";

    position: static !important;

    order: 2;

    width: auto !important;
    height: auto !important;

    color: #b38a52 !important;
    background: transparent !important;

    font-family:
      "Montserrat",
      Arial,
      sans-serif;

    font-size: 15px;
    font-weight: 500;

    opacity: 0;

    transform:
      translateX(-5px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .home-page .main-nav a::after {
    display: none !important;
  }

  .home-page .main-nav a:hover,
  .home-page .main-nav a.active {
    color: #7c5d36 !important;

    background: #f5eee3 !important;

    border-color:
      rgba(179, 138, 82, 0.18) !important;

    padding-left: 22px !important;
  }

  .home-page .main-nav a:hover::before,
  .home-page .main-nav a.active::before {
    opacity: 1;

    transform:
      translateX(0);
  }

  /* Bouton hamburger au-dessus */

  .home-page .menu-toggle {
    position: relative !important;
    z-index: 1500 !important;

    flex-shrink: 0 !important;
  }
}

/* =========================================================
   PETITS TÉLÉPHONES
========================================================= */

@media (max-width: 650px) {

  .home-page .main-nav {
    top: 88px !important;
    right: 10px !important;
    left: 10px !important;

    width: auto !important;

    padding: 12px !important;

    border-radius: 22px !important;
  }

  .home-page .main-nav a {
    min-height: 48px !important;
    padding: 0 16px !important;

    border-radius: 13px !important;

    font-size: 10.5px !important;
  }

  .home-page .main-nav a:hover,
  .home-page .main-nav a.active {
    padding-left: 20px !important;
  }
}