/* Un Pelage Au Poil - Minimaliste & Épuré (Phase 2) */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Palette (Conservée) */
  --primary: #690008;
  --primary-light: #FDFAF7;
  --primary-dark: #201212;
  --accent-gold: #D4AF37;
  --accent-champagne: #E8DCC8;

  /* Backgrounds */
  --bg: var(--primary-light);
  --bg-alt: #F5F0EB;

  /* Text */
  --text: var(--primary-dark);
  --text-light: #524747;

  /* Shadows (Subtiles) */
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);

  /* Layout */
  --radius: 16px;
  --radius-sm: 12px;
  --transition: 0.3s ease-out;

  /* ── Design system v2 (mai 2026 · tokens.css) ── */
  --bordeaux: #8B1A3A;
  --bordeaux-deep: #6E1430;
  --bordeaux-soft: #8B1A3A14;
  --dore: #C9A961;
  --dore-soft: #C9A96126;
  --ivoire: #FAF7F2;
  --ivoire-warm: #F3EFE6;
  --anthracite: #2B2B2B;
  --anthracite-soft: #3A3A3A;
  --pierre: #6B6B6B;
  --pierre-light: #9A9A9A;
  --white: #FFFFFF;
  --v2-white: #FFFFFF; /* alias rétrocompat */
  --line: #E8E2D6;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(43, 43, 43, 0.04), 0 1px 3px rgba(43, 43, 43, 0.03);
  --shadow-md: 0 4px 12px rgba(43, 43, 43, 0.06), 0 2px 4px rgba(43, 43, 43, 0.04);
  --shadow-lg: 0 12px 32px rgba(43, 43, 43, 0.08), 0 4px 8px rgba(43, 43, 43, 0.04);
  --shadow-bordeaux: 0 8px 24px rgba(139, 26, 58, 0.18);
  --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
  --t-med: 260ms cubic-bezier(.4, 0, .2, 1);
  /* gold rule shared element */
  --gold-rule-h: 2px;
  --gold-rule-w: 48px;

  /* ── Aliases rétrocompat : anciens tokens → v2 (override) ── */
  --primary:           var(--bordeaux);
  --primary-light:     var(--ivoire);
  --primary-dark:      var(--anthracite);
  --accent-gold:       var(--dore);
  --accent-champagne:  var(--ivoire-warm);
  --bg:                var(--ivoire);
  --bg-alt:            var(--ivoire-warm);
  --text:              var(--anthracite);
  --text-light:        var(--pierre);
  --radius:            var(--r-lg);
  --radius-sm:         var(--r-md);
  --transition:        var(--t-med);
}

[data-theme="dark"] {
  --bg:         var(--anthracite);
  --bg-alt:     #222222;
  --text:       var(--ivoire);
  --text-light: var(--pierre-light);
  --shadow:     0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 2px 8px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--anthracite);
  background-color: var(--ivoire);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--bordeaux);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lead {
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
}

.accent-gold {
  color: var(--accent-gold);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

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

/* ═══════════════════════════════════════════════════════════════════ */
/* NAVBAR */
/* ═══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   TOPBAR — titre, toujours visible
   ══════════════════════════════════════════════════ */

.wh-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.wh-topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.wh-topbar__left  { display: flex; align-items: center; }
.wh-topbar__right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.wh-topbar__brand { text-align: center; }

/* Hamburger */
.wh-navbar__hamburger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  color: var(--primary-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.wh-navbar__hamburger:hover { opacity: 0.65; }
.wh-navbar__menu-label { line-height: 1; }

/* Brand */
.wh-navbar__brand-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.wh-topbar__brand {
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* Réduit à 80% après disparition complète du menu (0.525s) */
.wh-topbar.is-compact .wh-topbar__brand {
  transform: scale(0.8);
  transition: transform 0.3s ease 0.525s;
}
.wh-navbar__brand-name {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}
.wh-navbar__brand-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Boutons droite */
.wh-navbar__icon-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  padding: 4px;
}
.wh-navbar__icon-btn:hover { opacity: 1; }
#dark-mode-toggle { display: none !important; }

.wh-navbar__cta {
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(149,76,115,0.25);
}
.wh-navbar__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(149,76,115,0.35);
  color: #fff;
}
.wh-navbar__cta--connected {
  background: rgba(149,76,115,0.12);
  color: var(--primary-dark);
  box-shadow: none;
  border: 1.5px solid var(--primary);
}
.wh-navbar__cta--connected:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(149,76,115,0.25);
}

/* ── Mobile drawer ── */
.wh-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0.5rem 0 1rem;
}
.wh-mobile-menu.is-open { display: flex; }
.wh-mobile-menu__link {
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.wh-mobile-menu__link:hover { background: rgba(0,0,0,0.03); }
.wh-mobile-menu__link--cta {
  color: var(--primary, #a01a1a);
  font-weight: 700;
  border-bottom: none;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════
   NAVBAR — menu, disparaît au scroll bas
   ══════════════════════════════════════════════════ */

.wh-navbar {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Fond séparé — se cache après le texte */
.wh-navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Texte : disparaît immédiatement */
.wh-navbar.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Fond : commence à disparaître quand texte est à 50% (delay = 0.175s) */
.wh-navbar.is-hidden::before {
  opacity: 0;
  transition: opacity 0.35s ease 0.175s;
}

.wh-navbar__link {
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 11px 18px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.wh-navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary, #a01a1a);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.wh-navbar__link:hover { color: var(--primary, #a01a1a); }
.wh-navbar__link:hover::after { transform: scaleX(1); }

/* ── Mode dashboard : navbar = sélecteur d'onglets ── */
.wh-navbar--dashboard .wh-navbar__link {
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 13px 22px;
  font-weight: 600;
}
.wh-navbar__link--active {
  color: var(--primary, #a01a1a);
  font-weight: 700;
}
.wh-navbar__link--active::after { transform: scaleX(1); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .wh-topbar__inner { padding: 0.6rem 1rem; }
  .wh-navbar__brand-name { font-size: 1.1rem; }
  .wh-topbar__right .wh-navbar__cta { display: none; }
  .wh-navbar { display: none; }
  #portal-inline-form { display: none !important; }
  #portal-label { display: none !important; }
  #topbar-mobile-btns { display: flex !important; }
}
@media (min-width: 769px) {
  .wh-navbar__hamburger { display: none; }
  .wh-mobile-menu { display: none !important; }
}

/* ── Ajustement contenu sous les deux barres ── */
main { padding-top: 115px; }

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-secondary {
  background-color: var(--bg-alt);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: #E8E0D8;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  color: var(--text);
  position: relative;
  padding-top: 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  animation: fadeIn 0.6s ease-out;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: none;
  color: var(--primary);
  border: none;
  padding: 0;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--text-light);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid rgba(255, 255, 255, 0.8);
}

.asymmetric-shape {
  border-radius: 4rem 10rem 4rem 8rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  align-self: start;
}

.hero-image-wrap .blur-circle {
  display: none;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 768px) {
  main { padding-top: 70px; }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    height: 300px;
    order: -1;
  }
  .hero-image-wrap img {
    border-radius: 2rem 5rem 2rem 4rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* SECTIONS */
/* ═══════════════════════════════════════════════════════════════════ */

section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.intro {
  background: var(--bg-alt);
  padding: 4rem 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  align-items: center;
}

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

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.intro-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  color: var(--text);
  line-height: 1.8;
}

.intro-quote footer {
  font-style: normal;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* HORIZONTAL TAB SERVICES */
/* ═══════════════════════════════════════════════════════════════════ */

.services {
  padding: 4rem 0;
}

/* Tab buttons container */
.services-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual tab button */
.services-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.services-tab:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: var(--primary);
  color: white;
}

.services-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.services-tab.active:hover {
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.25);
}

.services-tab.has-active-pill {
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 4px 16px rgba(105, 0, 8, 0.35);
}


/* Tab icon styling */
.tab-icon {
  font-size: 1.25rem;
}

.tab-title {
  font-size: 0.9rem;
}

/* Desktop : panels s'affichent en accordéon comme mobile */
.services-content { display: none; }
.svc-submenu { display: none !important; }

/* Panels : order 10 pour apparaître sous tous les boutons */
@media (min-width: 769px) {
  .services-tab-wrap .service-panel {
    display: none;
    order: 10;
    width: 100%;
  }
  .services-tab-wrap .service-panel.active {
    display: block;
    padding: 0.75rem 0.25rem;
    margin-bottom: 0.25rem;
  }
}

/* Content container */
.services-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Service panels */
.service-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.service-panel.active {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.3s ease-out forwards;
}

/* Content typography within panels */
.service-panel > .lead {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
  margin-top: 0;
  position: relative;
  display: block;
  min-height: 2.8em;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-shadow: 2px 3px 6px rgba(139, 26, 26, 0.12);
  font-style: italic;
  padding-bottom: 12px;
  font-variant-ligatures: contextual;
}

.service-panel > .lead::after {
  content: '|';
  display: inline;
  margin-left: 4px;
  animation: manuscript-cursor 0.6s infinite;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
}

@keyframes manuscript-cursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.service-panel h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-panel h4:first-of-type {
  margin-top: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  padding-left: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-list strong {
  color: var(--primary);
  font-weight: 700;
}

/* Service sections with icons */
.service-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139, 26, 26, 0.08);
}

.service-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.bullet-icon {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--primary);
  font-weight: bold;
  min-width: 1.2rem;
}

.commitment-highlight {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(105, 0, 8, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--primary);
}

.service-panel > .philosophy {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 1rem;
  background: rgba(139, 26, 26, 0.03);
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
}

.service-panel > p:not(.lead):not(.philosophy) {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Responsive tabs */
/* ── Accordéon minimaliste — s'applique mobile ET desktop ── */
.services-tab-wrap .service-panel.active {
  background: transparent;
  padding: 0 0 0.75rem;
  margin-bottom: 0.25rem;
}

.services-tab-wrap .accordion-item,
.expertise-tab-wrap .accordion-item {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(105, 0, 8, 0.1);
  box-shadow: none;
}

.services-tab-wrap .accordion-item:hover,
.expertise-tab-wrap .accordion-item:hover {
  border-color: rgba(105, 0, 8, 0.2);
  box-shadow: none;
}

.services-tab-wrap .accordion-header,
.expertise-tab-wrap .accordion-header {
  padding: 0.65rem 0.25rem;
  background: transparent;
  font-size: 0.88rem;
}

.services-tab-wrap .accordion-header:hover,
.expertise-tab-wrap .accordion-header:hover {
  background: transparent;
  color: var(--primary);
}

.services-tab-wrap .accordion-header.active,
.expertise-tab-wrap .accordion-header.active {
  background: transparent;
  color: var(--primary);
}

.services-tab-wrap .accordion-icon,
.expertise-tab-wrap .accordion-icon {
  font-size: 1.1rem;
}

.services-tab-wrap .accordion-body,
.expertise-tab-wrap .accordion-body {
  padding: 0 0.25rem 0.65rem;
  background: transparent;
  font-size: 0.82rem;
}

.services-tab-wrap .philosophy {
  display: none;
}

@media (max-width: 768px) {
  #expertise { display: none; }

  .services-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0 0.25rem;
  }

  .services-tab {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid rgba(105, 0, 8, 0.18);
    background: rgba(255,255,255,0.7);
    min-height: 52px;
    letter-spacing: 0.01em;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .services-tab:hover {
    transform: none;
    background: rgba(105, 0, 8, 0.06);
    box-shadow: none;
  }

  .services-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 3px 12px rgba(105, 0, 8, 0.25);
  }

  .tab-icon { font-size: 1.1rem; flex-shrink: 0; }
  .tab-title { font-size: 0.88rem; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* EXPERTISE SECTION (Nos Spécialités) - Horizontal Tabs */
/* ═══════════════════════════════════════════════════════════════════ */

.expertise {
  padding: 4rem 0;
}

/* Section expertise cachée — boutons intégrés dans services-tabs via JS */
#expertise { display: none; }

/* Expertise tab buttons container */
.expertise-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Individual expertise tab button */
.expertise-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.expertise-tab:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: rgba(139, 26, 26, 0.05);
}

.expertise-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.expertise-tab.active:hover {
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.25);
}

/* ── Couleurs distinctes par bouton expertise (desktop) ── */
.expertise-tab[data-expertise="eau-pure"] { border-color: #4AB8C1; color: #2a8a92; }
.expertise-tab[data-expertise="eau-pure"]:hover, .expertise-tab[data-expertise="eau-pure"].active { background: #4AB8C1; border-color: #4AB8C1; color: white; box-shadow: 0 4px 16px rgba(74,184,193,0.35); }

.expertise-tab[data-expertise="chiots"] { border-color: #E8A85C; color: #b07830; }
.expertise-tab[data-expertise="chiots"]:hover, .expertise-tab[data-expertise="chiots"].active { background: #E8A85C; border-color: #E8A85C; color: white; box-shadow: 0 4px 16px rgba(232,168,92,0.35); }

.expertise-tab[data-expertise="felins"] { border-color: #A0896B; color: #6e5538; }
.expertise-tab[data-expertise="felins"]:hover, .expertise-tab[data-expertise="felins"].active { background: #A0896B; border-color: #A0896B; color: white; box-shadow: 0 4px 16px rgba(160,137,107,0.35);
}

/* Expertise content container */
.expertise-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Expertise panels */
.expertise-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.expertise-panel.active {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.3s ease-out forwards;
}

/* Content typography within panels */
.expertise-panel > .lead {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

/* Desktop : expertise-tab-wrap transparent, panels masqués sauf actif */
.expertise-tab-wrap { display: contents; }

@media (min-width: 769px) {
  .expertise-tab-wrap .expertise-panel {
    display: none;
    order: 10;
    width: 100%;
  }
  .expertise-tab-wrap .expertise-panel.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.3s ease-out forwards;
  }
}

/* Responsive expertise tabs */
@media (max-width: 768px) {
  .expertise-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .expertise-tab-wrap { display: contents; }

  .expertise-tab {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid rgba(105, 0, 8, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    letter-spacing: 0.01em;
    justify-content: flex-start;
    transform: none;
    box-shadow: none;
    min-height: 52px;
  }

  .expertise-tab:hover {
    transform: none;
    background: rgba(105, 0, 8, 0.06);
    box-shadow: none;
  }

  .expertise-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 3px 12px rgba(105, 0, 8, 0.25);
  }

  .expertise-tab-wrap .expertise-panel.active {
    background: transparent;
    padding: 0.75rem 0.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(105, 0, 8, 0.1);
  }

  .expertise-tab-wrap .expertise-panel .service-section {
    margin-bottom: 0.75rem;
  }

  .expertise-tab-wrap .expertise-panel h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .expertise-tab-wrap .expertise-panel .service-list {
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .expertise-tab-wrap .expertise-panel .philosophy {
    display: none;
  }

}

/* ── Couleur accordéon = couleur du bouton parent (mobile ET desktop) ── */
.service-panel[data-service="bain"] .accordion-header { color: #4a7aaa; }
.service-panel[data-service="bain"] .accordion-header.active { color: #6B9FD4; }
.service-panel[data-service="bain"] .accordion-item { border-bottom-color: rgba(107,159,212,0.2); }

.service-panel[data-service="coupe"] .accordion-header { color: #4e8050; }
.service-panel[data-service="coupe"] .accordion-header.active { color: #7BAF7A; }
.service-panel[data-service="coupe"] .accordion-item { border-bottom-color: rgba(123,175,122,0.2); }

.service-panel[data-service="demelage"] .accordion-header { color: #9a6a3a; }
.service-panel[data-service="demelage"] .accordion-header.active { color: #C4956A; }
.service-panel[data-service="demelage"] .accordion-item { border-bottom-color: rgba(196,149,106,0.2); }

.service-panel[data-service="hygiene"] .accordion-header { color: #6a4ea0; }
.service-panel[data-service="hygiene"] .accordion-header.active { color: #9B7DC4; }
.service-panel[data-service="hygiene"] .accordion-item { border-bottom-color: rgba(155,125,196,0.2); }

.expertise-panel[data-expertise="eau-pure"] .accordion-header { color: #2a8a92; }
.expertise-panel[data-expertise="eau-pure"] .accordion-header.active { color: #4AB8C1; }
.expertise-panel[data-expertise="eau-pure"] .accordion-item { border-bottom-color: rgba(74,184,193,0.2); }

.expertise-panel[data-expertise="chiots"] .accordion-header { color: #b07830; }
.expertise-panel[data-expertise="chiots"] .accordion-header.active { color: #E8A85C; }
.expertise-panel[data-expertise="chiots"] .accordion-item { border-bottom-color: rgba(232,168,92,0.2); }

.expertise-panel[data-expertise="felins"] .accordion-header { color: #6e5538; }
.expertise-panel[data-expertise="felins"] .accordion-header.active { color: #A0896B; }
.expertise-panel[data-expertise="felins"] .accordion-item { border-bottom-color: rgba(160,137,107,0.2); }

/* ── Couleurs distinctes par bouton (mobile ET desktop) ── */
.services-tab[data-service="bain"] { border: 1.5px solid rgba(107,159,212,0.35); border-left: 4px solid #6B9FD4; background: rgba(107,159,212,0.08); color: #4a7aaa; }
.services-tab[data-service="bain"].active { background: #6B9FD4; border-color: #6B9FD4; color: white; box-shadow: 0 3px 12px rgba(107,159,212,0.35); }

.services-tab[data-service="coupe"] { border: 1.5px solid rgba(123,175,122,0.35); border-left: 4px solid #7BAF7A; background: rgba(123,175,122,0.08); color: #4e8050; }
.services-tab[data-service="coupe"].active { background: #7BAF7A; border-color: #7BAF7A; color: white; box-shadow: 0 3px 12px rgba(123,175,122,0.35); }

.services-tab[data-service="demelage"] { border: 1.5px solid rgba(196,149,106,0.35); border-left: 4px solid #C4956A; background: rgba(196,149,106,0.08); color: #9a6a3a; }
.services-tab[data-service="demelage"].active { background: #C4956A; border-color: #C4956A; color: white; box-shadow: 0 3px 12px rgba(196,149,106,0.35); }

.services-tab[data-service="hygiene"] { border: 1.5px solid rgba(155,125,196,0.35); border-left: 4px solid #9B7DC4; background: rgba(155,125,196,0.08); color: #6a4ea0; }
.services-tab[data-service="hygiene"].active { background: #9B7DC4; border-color: #9B7DC4; color: white; box-shadow: 0 3px 12px rgba(155,125,196,0.35); }

.expertise-tab[data-expertise="eau-pure"] { border: 1.5px solid rgba(74,184,193,0.35); border-left: 4px solid #4AB8C1; background: rgba(74,184,193,0.08); color: #2a8a92; }
.expertise-tab[data-expertise="eau-pure"].active { background: #4AB8C1; border-color: #4AB8C1; color: white; box-shadow: 0 3px 12px rgba(74,184,193,0.35); }

.expertise-tab[data-expertise="chiots"] { border: 1.5px solid rgba(232,168,92,0.35); border-left: 4px solid #E8A85C; background: rgba(232,168,92,0.08); color: #b07830; }
.expertise-tab[data-expertise="chiots"].active { background: #E8A85C; border-color: #E8A85C; color: white; box-shadow: 0 3px 12px rgba(232,168,92,0.35); }

.expertise-tab[data-expertise="felins"] { border: 1.5px solid rgba(160,137,107,0.35); border-left: 4px solid #A0896B; background: rgba(160,137,107,0.08); color: #6e5538; }
.expertise-tab[data-expertise="felins"].active { background: #A0896B; border-color: #A0896B; color: white; box-shadow: 0 3px 12px rgba(160,137,107,0.35); }

/* ═══════════════════════════════════════════════════════════════════ */
/* SERVICES PHILOSOPHY SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.services-philosophy {
  padding: 3rem 0;
  background: rgba(139, 26, 26, 0.02);
}

.philosophy-title {
  text-align: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.philosophy-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.philosophy-item {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: all 0.3s ease-out;
  position: relative;
  padding-left: 4rem;
}

.philosophy-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.philosophy-number {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.philosophy-item h4 {
  margin: 0 0 0.75rem 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.philosophy-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
}

.philosophy-item strong {
  color: var(--primary);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* SPECIALTIES PHILOSOPHY SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.specialties-philosophy {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(139, 26, 26, 0.02), transparent);
}

.specialty-commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.commitment-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 4px solid var(--primary);
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.commitment-icon {
  font-size: 2.5rem;
  text-align: center;
}

.commitment-card h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.commitment-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.commitment-card strong {
  color: var(--primary);
  font-weight: 700;
}

.commitment-pledge {
  padding: 1rem;
  background: rgba(139, 26, 26, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.commitment-pledge strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* PHILOSOPHIE SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.philosophie {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(139, 26, 26, 0.02));
}

.philosophie .section-title {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pilier {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pilier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pilier-icon {
  font-size: 3rem;
  text-align: center;
}

.pilier h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.pilier-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.pilier-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pilier-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pilier-content strong {
  color: var(--primary);
  font-weight: 700;
}

.pilier-highlight {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.05), rgba(139, 26, 26, 0.02));
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: auto;
}

.pilier-highlight strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.pilier-highlight em {
  color: var(--text-light);
  font-size: 0.85rem;
}

.philosophie-footer {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-left: 8px solid var(--primary);
}

.philosophie-footer p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.philosophie-footer strong {
  color: var(--primary);
  font-weight: 700;
}

.philosophie-footer em {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .philosophie {
    padding: 2rem 0;
  }

  .philosophie-grid {
    gap: 1.5rem;
  }

  .pilier {
    padding: 1.5rem;
  }

  .pilier h3 {
    font-size: 1.1rem;
  }

  .philosophie-footer p {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* SUBSCRIPTION SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.subscription {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux) 55%, var(--anthracite) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.subscription::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.subscription::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.subscription .section-title,
.subscription .section-subtitle {
  color: white;
}

.sub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.sub-text {
  padding: 2rem;
}

.sub-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--ivoire);
}

.sub-text p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sub-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.sub-list li::before {
  content: '✓';
  color: var(--dore);
  font-weight: 800;
  font-size: 1rem;
}

.sub-list li strong {
  color: var(--dore);
  font-size: 1.15rem;
}

.sub-promo {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sub-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.sub-tier {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sub-tier:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.sub-tier.featured {
  background: rgba(201,169,97,0.15);
  border-color: rgba(201,169,97,0.45);
}

.tier-badge {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dore);
  min-width: 70px;
  letter-spacing: -0.5px;
}

.sub-tier.featured .tier-badge {
  font-size: 1.9rem;
}

.tier-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.sub-tier.featured .tier-label {
  color: white;
  font-weight: 600;
}

.sub-promo-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* CONTACT SECTION */
/* ═══════════════════════════════════════════════════════════════════ */

.contact {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #E0D5CC;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═══════════════════════════════════════════════════════════════════ */

footer {
  background: #E5E2DF;
  color: var(--text);
  padding: 3rem 0 1rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.cta-final {
  margin-top: 3rem;
  padding: 4rem;
  background: var(--primary);
  border-radius: var(--radius);
  text-align: center;
  color: white;
}
.cta-final h3 {
  color: white;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ANIMATIONS */
/* ═══════════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-slide-up {
  animation: fadeInUp 0.3s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  section {
    padding: 2.5rem 0;
  }

  .header-actions {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-btns {
    gap: 0.75rem;
  }

  .scroll-to-top {
    bottom: 2rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .floating-access {
    gap: 0.75rem;
    bottom: 8rem;
  }

  .float-btn {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
  }

  .float-label {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* SCROLL TO TOP & FLOATING ACCESS */
/* ═══════════════════════════════════════════════════════════════════ */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(139, 26, 26, 0.12);
  transition: all 0.3s ease-out;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
}

.scroll-to-top.show {
  opacity: 0.85;
  visibility: visible;
}

.scroll-to-top:hover {
  opacity: 1;
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(139, 26, 26, 0.18);
}

.scroll-to-top:active {
  transform: translateY(0);
}

/* Floating Access Panel */
.floating-access {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 40;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: white;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-out;
  box-shadow: 0 2px 6px rgba(139, 26, 26, 0.1);
  opacity: 0.85;
  position: relative;
}

.float-btn:hover {
  opacity: 1;
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(139, 26, 26, 0.15);
}

.float-btn:active {
  transform: translateY(0);
}

.float-icon {
  font-size: 1.5rem;
}

.float-label {
  display: none;
}

.float-reserve {
  border-color: #4CAF50;
  color: #4CAF50;
}

.float-reserve:hover {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

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

.float-account:hover {
  background: var(--primary);
}

/* Responsive Floating Access */
@media (max-width: 768px) {
  .floating-access {
    right: 1rem;
    bottom: 1.5rem;
    gap: 0.7rem;
  }

  .scroll-to-top {
    right: 1rem;
    bottom: 5.5rem; /* au-dessus de la bottom nav (~5rem) */
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BAIN SUBMENU PILLS                                                  */
/* ═══════════════════════════════════════════════════════════════════ */

/* Wrapper transparent — display: contents pour intégration flex directe */
.services-tab-wrap {
  display: contents;
}

.svc-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid rgba(105, 0, 8, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 100;
  width: 420px;
  /* état caché */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.svc-submenu.submenu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Petite flèche en haut du dropdown */
.svc-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) !important;
  width: 10px;
  height: 10px;
  background: var(--bg);
  border-left: 1px solid rgba(105, 0, 8, 0.18);
  border-top: 1px solid rgba(105, 0, 8, 0.18);
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  margin: 0 0.35rem 0.35rem 0;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.svc-pill:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(105, 0, 8, 0.25);
}

.pill-icon { font-size: 1rem; line-height: 1; }
.pill-label { white-space: nowrap; }

.svc-submenu__footer {
  border-top: 1px solid rgba(105, 0, 8, 0.12);
  margin-top: 0.6rem;
  padding-top: 0.55rem;
}

.svc-submenu__title {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.svc-submenu__desc {
  width: 100%;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

.svc-submenu__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  width: 100%;
}



/* ═══════════════════════════════════════════════════════════════════ */
/* SERVICE ACCORDION (Détails expandables dans les panneaux) */
/* ═══════════════════════════════════════════════════════════════════ */

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.accordion-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease-out;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.accordion-header:hover {
  background: #f3f3f3;
}

.accordion-header.active {
  background: var(--primary);
  color: white;
}

.accordion-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
}

.accordion-toggle {
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 1rem;
  background: white;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.accordion-body.active {
  display: block;
  max-height: 500px;
  opacity: 1;
}

.accordion-body p {
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* PRODUITS SECTION */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   AVANT / APRÈS COMPARATEUR
   ══════════════════════════════════════════════════ */

.gallery { padding: 5rem 0; background: var(--bg-alt); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.ba-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.ba-wrap img-comparison-slider {
  width: 100%;
  aspect-ratio: 3/4;
  --divider-color: #fff;
  --divider-width: 2px;
  --default-handle-color: var(--primary);
}

.ba-wrap img-comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--primary-dark);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════ */

.produits {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #faf7f2 100%);
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.produit-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(139, 26, 26, 0.1);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.produit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-gold);
}

.produit-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.produit-icon {
  font-size: 2.5rem;
}

.produit-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--primary);
}

.produit-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.produit-link {
  align-self: flex-start;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease-out;
  border: 2px solid var(--primary);
}

.produit-link:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* QUOTE SECTION (Stitch Mobile) */
/* ═══════════════════════════════════════════════════════════════════ */

.quote-section {
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(229, 226, 223, 0.35);
}

.quote-bg-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  font-size: 12rem;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.quote-section blockquote {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-style: italic;
  color: var(--primary);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BOTTOM NAVIGATION BAR (Mobile Stitch) */
/* ═══════════════════════════════════════════════════════════════════ */

.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 5rem;
  }

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 1rem 1.4rem;
    background: rgba(253, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    border-radius: 2rem 2rem 0 0;
    box-shadow: 0 -8px 32px rgba(140, 113, 110, 0.1);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #8C716E;
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .bottom-nav-item.active {
    background: var(--primary);
    color: white;
    border-radius: 1.5rem;
    padding: 0.35rem 0.9rem;
    flex-direction: row;
    gap: 5px;
  }

  .bottom-nav-item.active .bottom-nav-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
  }

  .bottom-nav-item .material-symbols-outlined {
    font-size: 1.4rem;
  }

  .bottom-nav-item.active .material-symbols-outlined {
    font-size: 1.1rem;
  }

  .bottom-nav-label {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Hero mobile : image en dessous du texte */
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .hero-content {
    order: 0;
  }

  .hero-image-wrap {
    order: 1;
    height: 280px;
  }

  .hero-image-wrap img {
    border-radius: 2rem 5rem 2rem 4rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════ */
/* PROFIL CLIENT — Section vitrine                                              */
/* ══════════════════════════════════════════════════════════════════════════════ */
.mon-profil { padding: 3rem 0; }

.profil-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.5rem; }

.profil-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 1.4rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.profil-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.profil-card__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.profil-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(105,0,8,0.1), rgba(105,0,8,0.05));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.profil-card__title { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.profil-card__subtitle { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.profil-card__edit {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(105,0,8,0.08); border: 1px solid rgba(105,0,8,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; transition: all 0.2s;
  color: var(--primary);
}
.profil-card__edit:hover { background: var(--primary); color: #fff; }

.profil-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.profil-field__label { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.profil-field__value { font-size: 0.85rem; color: var(--text); margin-top: 2px; }
.profil-field__value--empty { color: var(--text-muted); font-style: italic; font-size: 0.8rem; }

.profil-pet-photo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(105,0,8,0.15);
  cursor: pointer; transition: border-color 0.2s, transform 0.2s;
}
.profil-pet-photo:hover { border-color: var(--primary); transform: scale(1.05); }
.profil-pet-photo-placeholder {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(105,0,8,0.08), rgba(105,0,8,0.03));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; border: 3px dashed rgba(105,0,8,0.2);
  transition: border-color 0.2s;
}
.profil-pet-photo-placeholder:hover { border-color: var(--primary); }

/* ── Panel slide-up ── */
.profil-edit-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  animation: profil-fade-in 0.2s ease;
}
@keyframes profil-fade-in { from { opacity: 0; } to { opacity: 1; } }

.profil-edit-panel {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px 24px 0 0;
  width: 100%; max-width: 520px;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  animation: profil-slide-up 0.3s ease;
}
@keyframes profil-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

.profil-edit-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(30px); z-index: 1; border-radius: 24px 24px 0 0;
}
.profil-edit-panel__header h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.profil-edit-panel__close {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.profil-edit-panel__close:hover { background: rgba(0,0,0,0.12); }

.profil-edit-panel__body { padding: 1.5rem; }

.profil-form-group { margin-bottom: 1rem; }
.profil-form-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.profil-form-input {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.1); font-size: 0.9rem;
  background: rgba(255,255,255,0.8); transition: border-color 0.2s;
  font-family: inherit; color: var(--text); box-sizing: border-box;
}
.profil-form-input:focus { outline: none; border-color: var(--primary); }
.profil-form-select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.1); font-size: 0.9rem;
  background: rgba(255,255,255,0.8); font-family: inherit; color: var(--text);
  cursor: pointer; box-sizing: border-box;
}
.profil-form-select:focus { outline: none; border-color: var(--primary); }
.profil-form-textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.1); font-size: 0.9rem;
  background: rgba(255,255,255,0.8); font-family: inherit; color: var(--text);
  resize: vertical; min-height: 80px; box-sizing: border-box;
}
.profil-form-textarea:focus { outline: none; border-color: var(--primary); }

.profil-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.profil-save-btn {
  width: 100%; padding: 14px; border-radius: 14px; border: none;
  background: var(--primary); color: #fff; font-size: 0.9rem;
  font-weight: 700; cursor: pointer; margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.profil-save-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.profil-save-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.profil-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #2e7d32; color: #fff; padding: 12px 24px; border-radius: 12px;
  font-size: 0.85rem; font-weight: 600; z-index: 10000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: profil-toast-in 0.3s ease, profil-toast-out 0.3s ease 2.7s forwards;
}
@keyframes profil-toast-in { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes profil-toast-out { from { opacity: 1; } to { opacity: 0; } }

@media (max-width: 600px) {
  .profil-cards { grid-template-columns: 1fr; }
  .profil-fields { grid-template-columns: 1fr; }
  .profil-form-row { grid-template-columns: 1fr; }
  .profil-edit-panel { max-width: 100%; border-radius: 20px 20px 0 0; }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN V2 — Sections ajoutées juin 2026
   ═══════════════════════════════════════════════════════════ */

/* ── Shared helper ── */
.gold-rule {
  display: inline-block;
  height: 1px;
  width: 32px;
  background: var(--dore);
  flex-shrink: 0;
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dore);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-row .gold-rule { background: var(--dore); }

/* ── Hero v2 ── */
.hero-v2 {
  position: relative;
  background: var(--anthracite);
  color: var(--ivoire);
  overflow: hidden;
  padding: 96px 32px 110px;
}
.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 26, 58, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-v2-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
}
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--dore);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-v2 h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  font-weight: 400;
  color: var(--ivoire);
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero-v2 h1 em {
  font-style: italic;
  color: var(--dore);
  font-weight: 400;
}
.hero-v2-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.75);
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-v2-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  background: var(--bordeaux);
  color: var(--ivoire);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 18px rgba(139, 26, 58, 0.35);
  white-space: nowrap;
}
.hero-v2-btn-primary:hover {
  background: var(--bordeaux-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 26, 58, 0.4);
}
.hero-v2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  background: transparent;
  color: rgba(250, 247, 242, 0.85);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(250, 247, 242, 0.25);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.hero-v2-btn-outline:hover {
  border-color: rgba(201, 169, 97, 0.5);
  color: var(--dore);
}
.hero-v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 247, 242, 0.6);
  font-size: 13px;
  margin-top: 20px;
}
.hero-v2-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--dore); flex-shrink: 0; }

/* Hero art frame */
.hero-v2-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 500px;
  justify-self: end;
  width: 100%;
}
.hero-v2-art-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 35%, #3a3a3a 0%, #232323 70%);
  border: 1px solid rgba(201, 169, 97, 0.15);
}
.hero-v2-art-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.hero-v2-art-frame svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-levrier-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
}
.hero-v2-art-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--ivoire);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-v2-stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--ivoire);
  color: var(--anthracite);
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-v2-stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--bordeaux);
  line-height: 1;
}
.hero-v2-stat-lbl {
  font-size: 12px;
  color: var(--pierre);
  line-height: 1.35;
  max-width: 110px;
}

/* ── Services v2 grid ── */
.services-v2-block {
  padding: 100px 32px;
  background: var(--ivoire);
}
.services-v2-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.services-v2-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.services-v2-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--anthracite);
  max-width: 640px;
  margin-bottom: 0;
}
.services-v2-head h2 em { font-style: italic; color: var(--bordeaux); }
.services-v2-head p {
  font-size: 14px;
  color: var(--pierre);
  line-height: 1.65;
  max-width: 340px;
  font-family: var(--font-sans);
}
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-v2-card {
  background: var(--v2-white);
  border-radius: var(--r-md);
  padding: 28px 22px 24px;
  border: 1px solid var(--line);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.service-v2-card:hover {
  transform: translateY(-4px);
  border-color: var(--dore);
  box-shadow: var(--shadow-md);
}
.service-v2-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivoire);
  display: grid;
  place-items: center;
  color: var(--dore);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.service-v2-card:hover .service-v2-icon {
  background: var(--dore-soft);
  border-color: var(--dore);
}
.service-v2-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 0;
  letter-spacing: 0;
}
.service-v2-card p {
  font-size: 13px;
  color: var(--pierre);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.service-v2-price {
  font-size: 12px;
  color: var(--anthracite);
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-sans);
}
.service-v2-price em { font-style: normal; color: var(--pierre); font-weight: 400; }

/* ── Atelier v2 ── */
.atelier-v2-block {
  padding: 100px 32px;
  background: var(--ivoire-warm);
}
.atelier-v2-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.atelier-v2-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.atelier-v2-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.atelier-v2-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--anthracite);
  margin-bottom: 24px;
}
.atelier-v2-text h2 em { color: var(--bordeaux); font-style: italic; }
.atelier-v2-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--anthracite);
  padding-left: 22px;
  border-left: 2px solid var(--dore);
  margin: 28px 0;
}
.atelier-v2-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pierre);
  margin-bottom: 16px;
}
.atelier-v2-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.atelier-v2-sig-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bordeaux);
  line-height: 1;
}
.atelier-v2-sig-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pierre);
  font-family: var(--font-sans);
}

/* ── Témoignages v2 ── */
.testimonials-v2-block {
  padding: 80px 32px 100px;
  background: var(--ivoire);
}
.testimonials-v2-inner { max-width: 1240px; margin: 0 auto; }
.testimonials-v2-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.testimonials-v2-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--anthracite);
  margin-bottom: 0;
}
.testimonials-v2-head h2 em { color: var(--bordeaux); font-style: italic; }
.testimonials-v2-head p {
  font-size: 14px;
  color: var(--pierre);
  max-width: 300px;
  line-height: 1.6;
}
.testimonials-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-v2 {
  background: var(--v2-white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-v2-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0.4;
  color: var(--dore);
  height: 22px;
}
.testimonial-v2 p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--anthracite);
  flex: 1;
  margin: 0;
}
.testimonial-v2-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testimonial-v2-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivoire-warm);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  color: var(--bordeaux);
  font-style: italic;
  font-size: 15px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.testimonial-v2-name { font-size: 13px; font-weight: 600; color: var(--anthracite); line-height: 1.2; }
.testimonial-v2-meta { font-size: 11px; color: var(--pierre); }
.testimonial-v2-stars { display: flex; gap: 2px; color: var(--dore); font-size: 12px; margin-left: auto; }

/* ── CTA rail v2 ── */
.cta-rail-v2-block { padding: 0 32px 100px; }
.cta-rail-v2 {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--bordeaux);
  color: var(--ivoire);
  border-radius: var(--r-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-rail-v2::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.12);
  pointer-events: none;
}
.cta-rail-v2 h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ivoire);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 0;
}
.cta-rail-v2 h2 em { font-style: italic; color: var(--dore); }
.cta-rail-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 30px;
  border-radius: 12px;
  background: var(--ivoire);
  color: var(--bordeaux);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.cta-rail-v2-btn:hover {
  background: var(--v2-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Footer v2 ── */
.footer-v2 {
  background: var(--bordeaux-deep);
  color: rgba(250, 247, 242, 0.78);
  padding: 80px 32px 32px;
}
.footer-v2-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-v2-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivoire);
  display: grid;
  place-items: center;
  color: var(--bordeaux);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.footer-v2-brand-name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ivoire);
  line-height: 1;
}
.footer-v2-brand-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
  margin-top: 4px;
  font-style: normal;
}
.footer-v2-blurb {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-v2-col h4 {
  font-family: var(--font-sans);
  color: var(--dore);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-v2-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-v2-col a { font-size: 13px; color: rgba(250,247,242,0.75); text-decoration: none; transition: color var(--t-fast); }
.footer-v2-col a:hover { color: var(--dore); }
.footer-v2-col p { font-size: 13px; line-height: 1.7; }
.footer-v2-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-v2-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.08);
  display: grid;
  place-items: center;
  color: rgba(250,247,242,0.75);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.footer-v2-socials a:hover { background: var(--dore); color: var(--bordeaux-deep); }
.footer-v2-bottom {
  max-width: 1240px;
  margin: 52px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-v2-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--dore);
  font-size: 14px;
  text-align: center;
  flex: 1;
}
.footer-v2-legal { font-size: 11px; color: rgba(250,247,242,0.5); }
.footer-v2-legal a { color: rgba(250,247,242,0.5); text-decoration: none; }
.footer-v2-legal a:hover { color: var(--dore); }

/* ── Responsive v2 ── */
@media (max-width: 1024px) {
  .services-v2-grid { grid-template-columns: repeat(3, 1fr); }
  .services-v2-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .atelier-v2-inner { grid-template-columns: 1fr; gap: 48px; }
  .atelier-v2-visual { aspect-ratio: 3/2; max-height: 420px; }
  .testimonials-v2-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-v2-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-rail-v2 { flex-direction: column; align-items: flex-start; padding: 40px 32px; gap: 28px; }
  .footer-v2-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-v2 { padding: 64px 20px 80px; }
  .hero-v2-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-v2-art { max-width: 380px; margin: 0 auto; justify-self: center; }
  .hero-v2-stat { left: 8px; bottom: -20px; }
  .services-v2-block { padding: 72px 20px; }
  .services-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .atelier-v2-block { padding: 72px 20px; }
  .testimonials-v2-block { padding: 60px 20px 80px; }
  .testimonials-v2-grid { grid-template-columns: 1fr; }
  .cta-rail-v2-block { padding: 0 20px 72px; }
  .cta-rail-v2 { padding: 36px 24px; }
  .footer-v2 { padding: 60px 20px 28px; }
  .footer-v2-inner { grid-template-columns: 1fr; }
  .footer-v2-bottom { flex-direction: column; text-align: center; gap: 12px; }
}
@media (max-width: 480px) {
  .services-v2-grid { grid-template-columns: 1fr; }
  .hero-v2 h1 { font-size: 34px; }
}
