/* ============================================
   WARDÉ BEAUTY – Feuille de style principale
   ============================================ */

:root {
  --bg: #0d090b;
  --surface: #1a1216;
  --glass: rgba(26, 18, 22, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --ink: #fdf8fa;
  --ink-soft: #e2d1d9;
  --muted: #a38d97;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #dfb15b;
  --gold-light: #f5d697;
  --gold-dark: #b88d3d;
  --gold-muted: rgba(223, 177, 91, 0.12);
  --rose: #331520;
  --rose-mid: #8a3356;
  --rose-deep: #e85d92;
  --rose-blush: rgba(232, 93, 146, 0.05);
  --accent: var(--gold);
  --accent-hover: var(--gold-light);
  --accent-soft: rgba(223, 177, 91, 0.15);
  --accent-ring: rgba(223, 177, 91, 0.4);
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.6);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  /* compat */
  --cream: var(--bg);
  --text: var(--ink-soft);
  --text-light: var(--muted);
  --dark: var(--ink);
  --dark2: var(--ink-soft);
  --border: var(--line);
  --nav-offset: 5.5rem;
  --section-y: clamp(5rem, 12vw, 8rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

::selection {
  background: rgba(173, 20, 87, 0.18);
  color: var(--ink);
}

.section-anchor {
  scroll-margin-top: var(--nav-offset);
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-nav:focus-visible,
.burger:focus-visible {
  outline-offset: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.125rem; font-weight: 600; }
em { font-style: normal; color: var(--gold); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}
.section-sub {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--text-light);
}
.divider {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-pill);
}
.divider--left {
  margin: 1.2rem 0 1.5rem;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1a1216;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0;
  transition: var(--transition);
  border: 1px solid var(--accent);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--ink);
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--bg);
  border-color: var(--ink-soft);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  background: var(--surface);
}
.btn-outline i { font-size: 1rem; color: var(--accent); }
.btn-outline:hover i { color: var(--white); }
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-full { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.navbar:not(.scrolled) {
  background: rgba(13, 9, 11, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
  background: rgba(13, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.65rem 0;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-w { color: var(--rose-deep); }
.logo-b { font-style: normal; font-weight: 500; color: var(--gold-dark); }
.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active {
  color: var(--accent);
  font-weight: 600;
}
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.btn-nav {
  background: var(--accent);
  color: #1a1216;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--accent);
}
.btn-nav:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  position: relative;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.logo {
  position: relative;
  z-index: 1001;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #2a1a22;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.02);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(13, 9, 11, 0.96) 0%,
    rgba(13, 9, 11, 0.85) 34%,
    rgba(13, 9, 11, 0.45) 52%,
    rgba(13, 9, 11, 0.75) 78%,
    rgba(13, 9, 11, 0.9) 100%
  );
}
.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
}
.hero__blob:first-child {
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  background: rgba(244, 143, 177, 0.5);
  top: -8%;
  right: -5%;
}
.hero__blob--2 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  background: rgba(198, 160, 82, 0.35);
  bottom: -15%;
  left: -10%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.35;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23c6a052' fill-opacity='0.12'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 7rem) 1.5rem 4rem;
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.hero__panel {
  flex: 1;
  min-width: 0;
  max-width: min(100%, 38rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero__accent {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  min-height: 12rem;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--rose-deep) 100%);
  box-shadow: 0 0 24px rgba(198, 160, 82, 0.35);
}
.hero__copy {
  flex: 1;
  min-width: 0;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.85rem;
}
.hero__copy h1 {
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 34rem;
}
.hero-sub strong {
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  list-style: none;
  padding: 0;
}
.hero-chips li {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0;
}
.hero-cta-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-icon-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.hero-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero-icon-btn--call:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.hero-icon-btn--wa {
  background: linear-gradient(145deg, #3ae67f 0%, #25d366 50%, #1da851 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-icon-btn--wa:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.hero-icon-btn svg { display: block; }
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.badge-label {
  font-size: 0.6875rem;
  color: var(--muted);
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.badge-label i { color: var(--gold); font-size: 0.65rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-scroll:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%) translateY(-2px);
}
.hero-scroll__chev {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  animation: scroll-bounce 1.4s ease-in-out infinite;
  opacity: 0.75;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(-3px); opacity: 0.65; }
  50% { transform: rotate(45deg) translateY(2px); opacity: 1; }
}

/* ============ PROMO BANNER ============ */
.promo-banner {
  background: linear-gradient(90deg, #1a1216 0%, #2a1a22 50%, var(--gold-muted) 100%);
  text-align: center;
  padding: 0.65rem 1rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--line);
}
.promo-banner p {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  max-width: 52rem;
  margin: 0 auto;
}
.promo-banner i { color: var(--gold-dark); }
.promo-banner strong { font-weight: 600; color: var(--ink); }
.promo-banner a { color: var(--rose-deep); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(173, 20, 87, 0.25); }
.promo-banner a:hover { color: var(--gold-dark); }

/* ============ SERVICES ============ */
.services {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--rose-blush) 0%, var(--bg) 40%, var(--bg) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before { display: none; }
.service-card:hover {
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
}
.featured-service .service-icon {
  background: var(--gold-muted);
  color: var(--gold-dark);
}
.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--dark);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0;
  transition: var(--transition);
}
.service-link i { font-size: 0.65rem; transition: transform var(--transition); }
.service-link:hover { color: var(--accent-hover); }
.service-link:hover i { transform: translateX(2px); }
.featured-service {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(226, 183, 100, 0.1) 100%);
  border-color: rgba(198, 160, 82, 0.35);
  color: var(--ink);
}
.featured-service h3 { color: var(--ink); }
.featured-service p { color: var(--muted); }
.featured-service .service-link { color: var(--accent); }
.service-badge-card {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--accent);
  color: #1a1216;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* ============ À PROPOS ============ */
.apropos {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.apropos-lead {
  margin-top: 1rem;
}
.btn-cta-apropos {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ap-img-frame {
  position: relative;
  height: 460px;
}
.ap-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(154, 118, 40, 0.2);
}
.ap-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(173, 20, 87, 0.12);
}
.ap-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ap-stat-bubble {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  border: 1px solid var(--glass-border);
}
.ap-stat-bubble strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.ap-stat-bubble strong i { color: var(--gold); font-size: 0.85rem; }
.ap-stat-bubble span { font-size: 0.72rem; color: var(--text-light); }
.apropos-text p { color: var(--text-light); font-size: 0.98rem; }
.apropos-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.apropos-list li {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.apropos-list li i {
  color: var(--rose-deep);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ============ GALERIE ============ */
.galerie {
  padding: var(--section-y) 0;
  background: var(--bg);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gal-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--line);
  min-height: 220px;
  box-shadow: var(--shadow);
}
.gal-item.gal-large { grid-row: span 2; min-height: 460px; }
.gal-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-item:hover .gal-photo { transform: scale(1.06); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 20, 0.72) 0%, transparent 58%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  z-index: 2;
  opacity: 1;
  transition: var(--transition);
}
.gal-item:hover .gal-overlay {
  background: linear-gradient(to top, rgba(42, 26, 34, 0.88) 0%, transparent 52%);
}
.gal-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0;
  font-family: var(--font-display);
}
.gal-item:hover { transform: translateY(-2px); }
.gallery-cta-text { color: var(--text-light); margin-bottom: 1rem; }

/* ============ WHY US ============ */
.why-us {
  background: var(--surface);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--bg);
}
.why-item:hover {
  border-color: var(--accent-ring);
  background: var(--surface);
}
.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.05rem;
  border: none;
}
.why-item h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.why-item p { color: var(--muted); font-size: 0.8125rem; line-height: 1.55; }

/* ============ AVIS ============ */
.avis {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.avis-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.avis-card:hover { border-color: var(--accent-ring); box-shadow: var(--shadow-md); }
.featured-avis {
  background: linear-gradient(160deg, var(--surface) 0%, var(--rose-blush) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(198, 160, 82, 0.15);
}
.featured-avis .avis-quote p { color: var(--muted); }
.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.featured-avis .stars { color: var(--gold-dark); }
.avis-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  font-style: italic;
}
.avis-quote p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}
.featured-avis .avis-quote { font-style: normal; }
.avis-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-avatar--a { background: linear-gradient(135deg, var(--rose-mid), var(--rose-deep)); }
.author-avatar--f { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.author-avatar--m { background: linear-gradient(135deg, #f8bbd0, #c2185b); }
.avis-author strong { display: block; font-size: 0.8125rem; color: var(--ink); font-weight: 600; }
.featured-avis .avis-author strong { color: var(--ink); }
.avis-author span { font-size: 0.75rem; color: var(--muted); }
.featured-avis .avis-author span { color: var(--muted); }
.avis-summary {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.avis-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.score-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.score-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1rem;
  color: var(--gold);
}
.score-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============ RDV / FORMULAIRE ============ */
.rdv-section {
  padding: var(--section-y) 0;
  background: var(--surface);
}
.rdv-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.rdv-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: none;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(252, 228, 236, 0.5);
  color: var(--ink);
  border: 1px solid rgba(198, 160, 82, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.form-success i { color: var(--rose-deep); font-size: 1rem; flex-shrink: 0; }
.rdv-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.info-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-card h4 i { color: var(--gold); font-size: 0.9rem; }
.info-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-card a:not(.btn-whatsapp):not(.info-link) { color: var(--rose-deep); font-weight: 600; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gold-dark);
  font-weight: 600;
  transition: var(--transition);
}
.info-link i { font-size: 0.7rem; opacity: 0.85; }
.info-link:hover { color: var(--rose-deep); }
/* WhatsApp — carte contact */
.btn-whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-body);
  background: linear-gradient(135deg, #2fe077 0%, #25d366 38%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 16px rgba(18, 140, 126, 0.28),
    0 14px 36px rgba(7, 94, 84, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.25s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 8px 24px rgba(18, 140, 126, 0.35),
    0 20px 44px rgba(7, 94, 84, 0.14);
}
.btn-whatsapp:active { transform: translateY(0); }
.btn-whatsapp__glow {
  position: absolute;
  inset: -50% -20% auto -20%;
  height: 120%;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 255, 255, 0.38) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.75;
}
.btn-whatsapp__icon-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-whatsapp__icon { display: block; }
.btn-whatsapp__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  text-align: left;
}
.btn-whatsapp__title {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.btn-whatsapp__sub {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.35;
}
.btn-whatsapp__arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease;
}
.btn-whatsapp:hover .btn-whatsapp__arrow { transform: translateX(3px); }
.horaires { margin: 0.5rem 0; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-light);
}
.h-open { color: #2d8653; font-weight: 700; }
.h-note {
  font-size: 0.82rem;
  margin-top: 0.6rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.h-note i { color: var(--gold); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  color: var(--muted);
  padding: 3rem 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer .logo { color: var(--ink); }
.logo--footer {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.btn-primary--footer {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
}
.footer-brand p { font-size: 0.8125rem; line-height: 1.6; margin-bottom: 1.25rem; color: var(--muted); }
.social-links { display: flex; gap: 0.65rem; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-deep); padding-left: 2px; }
.footer-contact p { font-size: 0.8125rem; line-height: 1.65; margin-bottom: 0.35rem; color: var(--muted); }
.footer-contact p i { color: var(--gold); margin-right: 0.35rem; }
.footer-contact a { color: var(--rose-deep); font-weight: 500; }
.footer-contact a i { margin-right: 0.35rem; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom p { margin: 0; }
.footer-bottom p + p { margin-top: 0.5rem; }
.footer-credits {
  font-size: 0.6875rem;
  opacity: 0.9;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.footer-credits a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credits a:hover { color: var(--gold-dark); }

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  z-index: 999;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

/* Flottants : icônes seules (WhatsApp + appel) */
.float-wa {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.float-wa__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  opacity: 0.38;
  z-index: 0;
  animation: float-fab-ping 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.float-wa__body {
  position: relative;
  z-index: 1;
  width: clamp(54px, 14vw, 60px);
  height: clamp(54px, 14vw, 60px);
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3ae67f 0%, #25d366 45%, #1da851 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 4px 14px rgba(37, 211, 102, 0.38),
    0 12px 32px rgba(7, 94, 84, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-wa:hover .float-wa__body {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3) inset,
    0 8px 22px rgba(37, 211, 102, 0.45),
    0 16px 40px rgba(7, 94, 84, 0.18);
}
.float-wa:active .float-wa__body { transform: scale(0.96); }
.float-wa__svg {
  display: block;
  width: clamp(26px, 7vw, 30px);
  height: clamp(26px, 7vw, 30px);
}

.float-call {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  align-self: flex-end;
  -webkit-tap-highlight-color: transparent;
}
.float-call__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  opacity: 0.35;
  z-index: 0;
  animation: float-fab-ping 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.6s;
}
.float-call__body {
  position: relative;
  z-index: 1;
  width: clamp(54px, 14vw, 60px);
  height: clamp(54px, 14vw, 60px);
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 14px rgba(198, 160, 82, 0.4),
    0 10px 28px rgba(42, 26, 34, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-call:hover .float-call__body {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 8px 22px rgba(198, 160, 82, 0.45),
    0 14px 36px rgba(42, 26, 34, 0.12);
}
.float-call:active .float-call__body { transform: scale(0.96); }
.float-call__body svg {
  width: clamp(22px, 5.5vw, 26px);
  height: clamp(22px, 5.5vw, 26px);
}

@keyframes float-fab-ping {
  0% { transform: scale(1); opacity: 0.4; }
  55% { transform: scale(1.12); opacity: 0.06; }
  100% { transform: scale(1.16); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .float-wa__pulse,
  .float-call__pulse { animation: none; opacity: 0.18; }
  .float-wa:hover .float-wa__body,
  .float-call:hover .float-call__body { transform: none; }
  .btn-whatsapp:hover { transform: none; }
  .btn-whatsapp:hover .btn-whatsapp__arrow { transform: none; }
}

/* ============ ANIMATIONS ============ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .apropos-grid { grid-template-columns: 1fr; }
  .ap-img-frame { height: 300px; max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 9, 11, 0.97);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.15rem; color: var(--ink); }
  .nav-links.open a:hover { color: var(--rose-deep); }
  .hero__scrim {
    background: linear-gradient(
      165deg,
      rgba(13, 9, 11, 0.98) 0%,
      rgba(13, 9, 11, 0.85) 45%,
      rgba(13, 9, 11, 0.5) 100%
    );
  }
  .hero__photo { object-position: center 20%; }
  .hero-content {
    flex-direction: column;
    padding-top: 5.25rem;
    gap: 1rem;
  }
  .hero__panel { max-width: none; }
  .hero__accent {
    width: 100%;
    height: 4px;
    min-height: 0;
    align-self: stretch;
    max-width: 8rem;
  }
  .hero__copy h1 { max-width: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta-icons { justify-content: flex-start; }
  .hero-badges { gap: 0.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item.gal-large { grid-row: span 1; min-height: 280px; }
  .avis-grid { grid-template-columns: 1fr; }
  .rdv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .badge { flex-direction: row; gap: 0.7rem; align-items: center; width: 100%; max-width: 220px; }
}
