/* ============================================
   PERLE RARE — Institut de Beauté by Laura
   Design : Moderne, Élégant, Responsive
   Inspiration : Goldust Spa
   ============================================ */

/* Fonts auto-hébergées */
@import url("fonts.css");

/* ===== VARIABLES ===== */
:root {
  --primary: #c09a7e;
  --primary-light: #d0aa8e;
  --primary-dark: #9a7a5e;
  --primary-alpha: rgba(192, 154, 126, 0.15);
  --primary-border: rgba(192, 154, 126, 0.3);

  --bg: #faf7f4;
  --bg-alt: #f2ede6;
  --bg-dark: #1e1b18;

  --text: #28211e;
  --text-muted: #7a6b62;
  --text-light: #a89488;
  --white: #ffffff;

  --border: rgba(192, 154, 126, 0.22);
  --shadow-sm: 0 2px 12px rgba(40, 33, 30, 0.07);
  --shadow: 0 6px 32px rgba(40, 33, 30, 0.12);
  --shadow-lg: 0 12px 56px rgba(40, 33, 30, 0.16);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", system-ui, sans-serif;

  --section-py: clamp(4.5rem, 9vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 4rem);
  --radius: 0.5rem;
  --radius-lg: 1.25rem;
  --radius-pill: 9999px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ff-body);
}

/* ===== TYPOGRAPHIE ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
}
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}
h3 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
}
h4 {
  font-size: clamp(1.2rem, 2vw, 1.625rem);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
}

section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section--alt {
  background: var(--bg-alt);
}

/* Fondu doux entre sections blanches et sections crème */
.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 2;
}

.section--alt::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.section--alt::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* Pas de fondu blanc en bas si suivi d'une section sombre */
.section--alt:has(+ .cta-section)::after,
.section--alt:has(+ .gift-section)::after {
  display: none;
}

/* Pas de fondu blanc en haut si précédé d'une section sombre */
.cta-section + .section--alt::before,
.gift-section + .section--alt::before {
  display: none;
}

.section--dark {
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 1rem auto 0;
  animation: lineExpand 0.8s ease forwards;
}

.section-header p {
  margin-top: 1.25rem;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn--primary:hover::after {
  left: 160%;
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(192, 154, 126, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 24px rgba(40, 33, 30, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.header--scrolled .logo-text {
  color: var(--text);
}

.header__logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition);
}

.header--scrolled .header__logo img {
  height: 40px;
}

/* Navigation desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header--scrolled .nav__link {
  color: var(--text-muted);
}

.header--scrolled .nav__link:hover {
  color: var(--primary);
}

/* Dropdown */
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-width: 230px;
  padding: 0.625rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}

.nav__dropdown-link {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.nav__dropdown-link:hover {
  background: var(--bg);
  color: var(--primary-dark);
  padding-left: 1.35rem;
}

/* CTA nav */
.nav__cta {
  margin-left: 1.25rem;
  flex-shrink: 0;
}

.header--scrolled .nav__cta {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.header--scrolled .nav__cta:hover {
  background: var(--primary);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header--scrolled .hamburger__line {
  background: var(--text);
}

.hamburger.active .hamburger__line {
  background: var(--text);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(4.7px, 4.7px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(4.7px, -4.7px);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 7rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

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

.mobile-menu__link {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--primary);
}

.mobile-sub-toggle::after {
  content: "＋";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--primary-border);
  border-radius: 50%;
  margin-left: 0.5rem;
  vertical-align: middle;
  transition: all var(--transition);
  line-height: 1;
}

.mobile-sub-toggle.open::after {
  content: "−";
  background: var(--primary-alpha);
}

.mobile-menu__sub {
  border-bottom: 1px solid var(--border);
}

.mobile-menu__sub-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-weight: 300;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(192, 154, 126, 0.08);
  transition: color var(--transition);
}

.mobile-menu__sub-link:hover {
  color: var(--primary);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2.5rem;
  text-align: center;
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-menu__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-menu__contact-link:hover {
  color: var(--primary);
}

.mobile-menu__contact-link svg {
  flex-shrink: 0;
  color: var(--primary);
}

.mobile-menu__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== TOPBAR ===== */
.header__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  max-height: 2.5rem;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    margin 0.35s ease,
    padding 0.35s ease;
}

.header--scrolled .header__topbar {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

.header__topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition);
}

.header__topbar-link:hover {
  color: rgba(255, 255, 255, 1);
}

.header--scrolled .header__topbar-link {
  color: var(--text-muted);
}

.header--scrolled .header__topbar-link:hover {
  color: var(--primary);
}

.header__topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__topbar-social-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition);
}

.header__topbar-social-link:hover {
  color: rgba(255, 255, 255, 1);
}

.header--scrolled .header__topbar-social-link {
  color: var(--text-muted);
}

.header--scrolled .header__topbar-social-link:hover {
  color: var(--primary);
}

/* Masquer la topbar sur tablette/mobile (géré par le menu mobile) */
@media (max-width: 900px) {
  .header__topbar {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 20, 0.18) 0%,
    rgba(28, 24, 20, 0.42) 55%,
    rgba(28, 24, 20, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
  display: block;
}

.hero__title {
  font-size: clamp(3.75rem, 10vw, 6.5rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero__title em {
  font-style: italic;
  color: #e8c9b0;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===== PAGE HERO (pages secondaires) ===== */
.page-hero {
  position: relative;
  height: clamp(300px, 40vw, 520px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 0;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 8s ease-out forwards;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 20, 0.15) 0%,
    rgba(28, 24, 20, 0.65) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-hero__content .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary);
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb__sep {
  color: var(--primary-border);
}

/* ===== INTRO / SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.split--reverse .split__visual {
  order: -1;
}

.split__content {
  padding: 1.5rem 0;
}

.split__content h2 {
  margin-bottom: 1.5rem;
}

.split__content p {
  margin-bottom: 1.25rem;
}

.split__content p:last-of-type {
  margin-bottom: 2rem;
}

.split__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split__img {
  width: 100%;
  /* aspect-ratio: 4/5; */
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split__visual:hover .split__img {
  transform: scale(1.04);
}

.split__img-bg {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8d5c4 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-light);
}

.split__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1;
  background: var(--primary-alpha);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ===== PRESTATIONS GRID ===== */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ===== CARD ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 2px 16px rgba(40, 33, 30, 0.07),
    0 1px 3px rgba(40, 33, 30, 0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 12px 40px rgba(40, 33, 30, 0.13),
    0 4px 12px rgba(40, 33, 30, 0.07),
    0 0 0 1px rgba(192, 154, 126, 0.25);
  border-color: rgba(192, 154, 126, 0.35);
}

.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 24, 20, 0.22) 0%,
    transparent 45%
  );
  pointer-events: none;
  z-index: 1;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__img img {
  transform: scale(1.08);
}

.card__img-bg {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card__body p {
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.card__body .btn {
  align-self: flex-start;
}

/* ===== TARIFS ===== */
.tarifs-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.tarif-group {
  margin-bottom: 2.5rem;
}

.tarif-group__title {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--border);
  color: var(--primary-dark);
  font-style: italic;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(192, 154, 126, 0.1);
  gap: 1rem;
}

.tarif-item:last-child {
  border-bottom: none;
}

.tarif-name {
  font-size: 0.95rem;
  color: var(--text);
}

.tarif-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.tarif-price {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--primary-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat__number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== MARQUES CAROUSEL ===== */
.brands-carousel {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: brandScroll 12s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-logo {
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 10px;
}


@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(192, 154, 126, 0.06) 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-border);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-alpha);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.value-card h4 {
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background-color: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: var(--section-py) 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-inner {
  opacity: 1;
  transform: none;
}

/* Warm ambient glow — bottom center */
.cta-section::before {
  content: "";
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 65%;
  background: radial-gradient(
    ellipse,
    rgba(192, 154, 126, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Large ornament watermark */
.cta-section::after {
  content: none;
}

.cta-section > .container {
  position: relative;
  z-index: 2;
}

/* Vertical accent line before eyebrow */
.cta-section .eyebrow {
  color: var(--primary-light);
}

.cta-section .eyebrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(192, 154, 126, 0.45)
  );
  margin: 0 auto 1.5rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto 2.75rem;
  font-size: 0.95rem;
  line-height: 2;
}

/* Transition depuis gift-section (maintenant section--alt) vers cta */

/* ===== GIFT OFFERS ===== */
.gift-offers {
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gift-offer {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.gift-offer:first-child {
  border-top: 1px solid var(--border);
}

.gift-offer__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.gift-offer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.gift-offer__name em {
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gift-offer__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

.gift-offer__detail {
  font-size: 0.875rem;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--primary-alpha);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.horaires {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.horaires h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
  font-style: italic;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(192, 154, 126, 0.1);
  font-size: 0.9rem;
}

.horaire-row:last-child {
  border-bottom: none;
}

.horaire-row .jour {
  color: var(--text-muted);
}
.horaire-row .heure {
  color: var(--text);
  font-weight: 400;
}
.horaire-row.ferme .heure {
  color: var(--text-light);
  font-style: italic;
}

/* Formulaire */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.form-card .subtitle {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
select,
textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
}

.footer__brand .logo-text {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 270px;
  line-height: 1.9;
}

.footer__title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.footer__contact-item a {
  color: inherit;
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--primary-light);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}
[data-reveal-delay="6"] {
  transition-delay: 0.6s;
}

/* ===== ORNAMENT ===== */
.ornament {
  text-align: center;
  color: var(--primary-light);
  letter-spacing: 0.8em;
  opacity: 0.5;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav,
  .nav__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split--reverse .split__visual {
    order: 0;
  }

  .split__img,
  .split__img-bg {
    aspect-ratio: 4/3;
  }

  .split__accent {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid > :last-child {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .form-group.full {
    grid-column: auto;
  }

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

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

  .hero__bg {
    background-attachment: scroll;
  }

  .page-hero__bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .brands-track {
    gap: 3rem;
  }
}

/* ===== VIDÉOS ===== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(192, 154, 126, 0.4);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.75s ease,
    visibility 0.75s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anneau */
.loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 154, 126, 0.5);
  animation: loaderPulse 2.5s ease-in-out infinite;
}

.loader__ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(192, 154, 126, 0.15);
}

/* Texte circulaire rotatif */
.loader__svg-text {
  position: absolute;
  inset: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  animation: loaderSpin 22s linear infinite;
}

/* Logo centré */
.loader__logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: loaderPulse 2.5s ease-in-out infinite;
}

.loader__brand {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: block;
}

.loader__title {
  font-family: var(--ff-display);
  font-size: 2.35rem;
  font-weight: 400;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}

.loader__by {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-top: 0.4rem;
}

/* Conteneur perles */
.loader__pearls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Perles individuelles */
.loader__pearls .pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(242, 228, 218, 0.93) 18%,
    rgba(215, 192, 176, 0.85) 42%,
    rgba(182, 152, 132, 0.72) 68%,
    rgba(148, 118, 96, 0.48) 88%
  );
  box-shadow:
    inset -1px -2px 4px rgba(0, 0, 0, 0.12),
    inset 2px 2px 6px rgba(255, 255, 255, 0.7),
    0 3px 10px rgba(0, 0, 0, 0.08);
  animation: pearlBob var(--dur, 2.4s) var(--delay, 0s) ease-in-out infinite;
}

/* Animations */
@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pearlBob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-7px) scale(1.03);
  }
  65% {
    transform: translateY(-3px) scale(0.98);
  }
}

/* ===== KEYFRAMES — ANIMATIONS ===== */

/* CTA ornament gentle sway */
@keyframes ctaOrnamentSway {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) rotate(3deg) scale(1.04);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-2deg) scale(0.97);
  }
}

/* Page hero subtle zoom-in on load */
@keyframes heroZoom {
  0% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

/* Section header line expand */
@keyframes lineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 2.5rem;
    opacity: 1;
  }
}

/* ===== FLOATING PEARLS — DÉCORATION DE PAGE ===== */
.pearls-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Ensure section content sits above pearl layer (z-index:1) */
section > .container {
  position: relative;
  z-index: 2;
}

.pearl-float {
  position: relative;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 30% 26%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 222, 208, 0.9) 18%,
    rgba(210, 182, 160, 0.8) 42%,
    rgba(175, 140, 115, 0.6) 68%,
    rgba(140, 108, 84, 0.25) 100%
  );
  box-shadow:
    inset -2px -2px 5px rgba(0, 0, 0, 0.14),
    inset 2px 3px 7px rgba(255, 255, 255, 0.75),
    0 4px 14px rgba(140, 108, 84, 0.18),
    0 0 0 1px rgba(192, 154, 126, 0.2);
  animation: pearlDrift var(--dur, 12s) var(--delay, 0s) ease-in-out infinite;
  opacity: var(--opacity, 0.55);
}

@keyframes pearlDrift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  20% {
    transform: translateY(-18px) translateX(6px) scale(1.02);
  }
  45% {
    transform: translateY(-8px) translateX(-4px) scale(0.98);
  }
  70% {
    transform: translateY(-22px) translateX(8px) scale(1.01);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}
