/* ==========================================================================
   DIANA BOTERO ABOGADA — Design System
   Palette extraite du logo officiel : or #A5721B / noir #0A0A0A / beige #F5F1EA
   ========================================================================== */

/* Polices chargées via <link rel="preload"> dans le <head> de chaque page (plus rapide que @import) */

:root {
  /* Couleurs */
  --gold: #A5721B;
  --gold-light: #C9A366;
  --gold-pale: #E4D4B8;
  --ink: #0E0D0B;
  --ink-soft: #4A4640;
  --paper: #F5F1EA;
  --paper-deep: #EDE6D8;
  --white: #FFFFFF;
  --line: rgba(165, 114, 27, 0.22);
  --shadow: rgba(14, 13, 11, 0.08);

  /* Typographie */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-label: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Rythme */
  --container: 1180px;
  --section-pad: clamp(52px, 7vw, 96px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

/* ---- Typographie ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 60ch;
}

/* ---- Boutons ---- */
.btn {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 34px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.55s var(--ease-hover), box-shadow 0.55s var(--ease-hover), background-position 0.6s var(--ease-hover), color 0.5s var(--ease-hover), border-color 0.5s var(--ease-hover), letter-spacing 0.5s var(--ease-hover);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-hover);
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn-primary {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 50%, var(--gold) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--paper);
}
.btn-primary:hover {
  background-position: 100% 0%;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 34px -10px rgba(165,114,27,0.45);
  letter-spacing: 0.17em;
}

.btn-outline {
  background: linear-gradient(90deg, transparent 0%, transparent 50%, var(--ink) 50%, var(--ink) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background-position: 100% 0%;
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 34px -12px var(--shadow);
  letter-spacing: 0.17em;
}

.btn-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--ink) 50%, var(--ink) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--white);
}
.btn-gold:hover {
  background-position: 100% 0%;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 34px -10px rgba(14,13,11,0.4);
  letter-spacing: 0.17em;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--paper);
  overflow: hidden;
}

.testimonials-viewport {
  position: relative;
  margin-top: 8px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 8px 8px 36px;
  margin: 0 -8px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.testimonial-card {
  flex: 0 0 auto;
  width: min(400px, 82vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 4px;
  padding: 40px 34px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--line);
  transition: transform 0.5s var(--ease-hover), box-shadow 0.5s var(--ease-hover);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -18px; right: 14px;
  font-family: var(--font-display);
  font-size: 8.5rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.testimonial-category {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 26px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.testimonial-origin {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* Flèches */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.testimonials-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s var(--ease-hover);
  flex-shrink: 0;
}
.testimonials-arrow:hover {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.08);
}
.testimonials-arrow:active { transform: scale(0.95); }
.testimonials-arrow svg { width: 18px; height: 18px; }
.testimonials-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

/* Barre de progression */
.testimonials-progress {
  flex-grow: 1;
  height: 2px;
  background: var(--line);
  margin: 0 28px;
  border-radius: 2px;
  overflow: hidden;
}
.testimonials-progress-bar {
  height: 100%;
  width: 12%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s var(--ease-hover);
}

@media (max-width: 720px) {
  .testimonial-card { padding: 32px 26px 26px; }
  .testimonials-arrow { width: 42px; height: 42px; }
  .testimonials-progress { margin: 0 16px; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 30px -10px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 86px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.header.scrolled .logo img { height: 62px; }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  transition: color 0.6s var(--ease-hover), transform 0.6s var(--ease-hover);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s var(--ease-hover);
}
.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--ink-soft);
  border-radius: 4px;
  transition: all 0.5s var(--ease-hover);
}

.flag-icon {
  width: 18px; height: 13px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14,13,11,0.12);
  flex-shrink: 0;
  display: block;
}

.lang-switch a.active {
  color: var(--ink);
  background: var(--paper-deep);
}

.lang-switch a:hover { color: var(--gold); }

.lang-switch-mobile { display: none; }
.mobile-header-actions { display: contents; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  width: 44px;
  height: 44px;
}
.burger span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all 0.4s var(--ease-hover);
  transform-origin: center;
}
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 62%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 118px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text .eyebrow { margin-bottom: 26px; }

.hero-text h1 {
  margin-bottom: 26px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text p.lead { margin-bottom: 40px; }

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}
.hero-meta-item:first-child { padding-left: 0; border-left: none; }

.hero-meta-item svg {
  width: 17px; height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-meta-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  line-height: 1.3;
}
.hero-meta-item strong {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.hero-visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 22px; left: 22px;
  right: -22px; bottom: -22px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}
.scroll-cue span {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--ink), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   SECTION HEADER (générique)
   ========================================================================== */
.section-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.section-head h2 { margin-top: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: var(--section-pad) 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}

.about-visual { position: relative; }
.about-visual img {
  border-radius: 4px;
  width: 100%;
  height: clamp(320px, 32vw, 440px);
  object-fit: cover;
  display: block;
}
.about-visual-tag {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 260px;
  line-height: 1.4;
  box-shadow: 0 20px 40px -14px var(--shadow);
}
.about-visual-tag span {
  display: block;
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 8px;
}

.about-body p { margin-bottom: 20px; color: var(--ink-soft); }
.about-body p:last-of-type { margin-bottom: 0; }

.about-langs {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-lang {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-lang .flag-icon {
  width: 20px; height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14,13,11,0.12);
}

/* ==========================================================================
   PRACTICE AREAS
   ========================================================================== */
.practice { padding: var(--section-pad) 0; background: var(--paper); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.practice-card {
  background: var(--paper);
  padding: 52px 46px;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease);
}

.practice-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px var(--shadow);
  z-index: 2;
}
.practice-card:hover::before {
  height: 100%;
}

.practice-num { display: none; }

.practice-card h3 { margin-bottom: 16px; }
.practice-card p { color: var(--ink-soft); font-size: 0.95rem; }

.practice-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
  transition: transform 0.5s var(--ease);
}
.practice-card:hover .practice-card-icon {
  transform: translateY(-4px) scale(1.06);
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why { padding: var(--section-pad) 0; background: var(--ink); color: var(--paper); }
.why .eyebrow { color: var(--gold-light); }
.why .eyebrow::before { background: var(--gold-light); }
.why h2 { color: var(--paper); }
.why .section-head p.lead { color: rgba(245,241,234,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.why-item {
  padding: 28px 24px 4px;
  margin: 0 -24px;
  border-top: 1px solid rgba(245,241,234,0.18);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  border-radius: 4px;
}
.why-item:hover {
  background: rgba(245,241,234,0.04);
  transform: translateY(-4px);
}
.why-item:hover .why-item-icon {
  color: var(--gold);
  transform: translateY(-2px);
}
.why-item-icon { transition: transform 0.4s var(--ease), color 0.4s var(--ease); }

.why-item-icon {
  width: 30px; height: 30px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
}

.why-item h3 { color: var(--paper); margin-bottom: 12px; font-weight: 500; }
.why-item p { color: rgba(245,241,234,0.6); font-size: 0.94rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: var(--section-pad) 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-icon.wa-icon-filled {
  fill: var(--gold);
  stroke: none;
}

.contact-info-item h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-info-item a:hover { color: var(--gold); }

.map-frame {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  position: relative;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}
.map-frame-cta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(14,13,11,0.9);
  backdrop-filter: blur(6px);
  color: var(--paper);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-frame-cta span {
  font-size: 0.85rem;
}
.map-frame-cta a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(245,241,234,0.7);
  padding: 76px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,241,234,0.14);
}

.footer-logo img {
  height: 92px;
  margin-bottom: 22px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 30ch; color: rgba(245,241,234,0.55); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,241,234,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-list svg {
  width: 15px; height: 15px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list .wa-icon-filled {
  fill: var(--gold-light);
  stroke: none;
}
.footer-col a, .footer-col span { font-size: 0.88rem; color: rgba(245,241,234,0.6); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.78rem;
  color: rgba(245,241,234,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(245,241,234,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   WHATSAPP FLOAT BUTTON
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: wa-pop 0.5s var(--ease) 1s both;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px -6px rgba(37,211,102,0.7);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

@keyframes wa-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--font-label);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-meta { flex-wrap: wrap; row-gap: 16px; }
  .hero-meta-item { border-left: none; padding: 0 20px 0 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual-tag { position: static; margin-top: 0; margin-left: 0; max-width: none; width: 100%; }
  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --section-pad: clamp(48px, 12vw, 80px); }

  .container { padding: 0 22px; }

  /* Header & logo adaptés au mobile */
  .header { padding: 12px 0; }
  .header.scrolled { padding: 9px 0; }
  .logo img { height: 46px; }
  .header.scrolled .logo img { height: 38px; }
  .hero { padding-top: 88px; }

  .nav { display: none; }
  .mobile-header-actions { display: flex; align-items: center; gap: 4px; }
  .burger { display: flex; }

  h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  /* CTA pleine largeur, empilés, faciles à toucher */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .contact-info .hero-cta { flex-direction: column; }

  .hero-visual-frame { aspect-ratio: 3/4; }
  .hero-visual::before { top: 14px; left: 14px; right: -14px; bottom: -14px; }

  .about-visual img { height: 220px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .practice-card { padding: 38px 26px; }
  .practice-card-icon { width: 38px; height: 38px; }

  .why { padding-bottom: calc(var(--section-pad) - 12px); }
  .why-item { margin: 0 -14px; padding: 26px 14px 22px; }

  .map-frame { aspect-ratio: 1/1; }
  .map-frame-cta { flex-direction: column; align-items: flex-start; gap: 10px; }

  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 25px; height: 25px; }
  .wa-tooltip { display: none; }

  .about-visual-tag { font-size: 0.95rem; padding: 18px 20px; }
}

@media (max-width: 400px) {
  .hero-meta { gap: 0; }
  .hero-meta-item { width: 50%; padding: 0 0 14px 0; }
}

/* Peaufinage mobile additionnel */
@media (max-width: 720px) {
  .logo img { height: 52px; }
  .header.scrolled .logo img { height: 42px; }

  .btn { padding: 16px 28px; font-size: 0.74rem; }

  .nav-links li, .mobile-nav li { -webkit-tap-highlight-color: transparent; }
  .mobile-nav a { transition: color 0.4s var(--ease-hover), transform 0.4s var(--ease-hover); display: inline-block; }
  .mobile-nav a:active { color: var(--gold); transform: translateX(6px); }

  .lang-switch a { padding: 9px 12px; }

  section { padding-left: 0; padding-right: 0; }
  h2 { line-height: 1.18; }

  .about-langs { flex-wrap: wrap; row-gap: 14px; }

  .why-item h3 { font-size: 1.15rem; }

  .contact-info-item { gap: 16px; }

  .footer-social a { width: 42px; height: 42px; }

  /* Sélecteur de langue compact, toujours visible dans la barre mobile */
  .lang-switch-mobile {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .lang-switch-mobile a {
    display: block;
    line-height: 0;
    padding: 3px;
    border-radius: 5px;
    opacity: 0.45;
    transition: opacity 0.4s var(--ease-hover), box-shadow 0.4s var(--ease-hover), transform 0.35s var(--ease-hover);
  }
  .lang-switch-mobile a.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--gold);
  }
  .lang-switch-mobile a:active { transform: scale(0.9); }
  .lang-switch-mobile .flag-icon { width: 22px; height: 16px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(14,13,11,0.15); display: block; }

  /* Carrousel de témoignages - snap net, aperçu de la carte suivante */
  .testimonials { padding-left: 0; padding-right: 0; }
  .testimonials-viewport { margin-top: 4px; }
  .testimonials-track {
    scroll-snap-type: x mandatory;
    padding: 4px 40px 30px 22px;
    margin: 0;
    gap: 16px;
  }
  .testimonial-card {
    width: 84vw;
    scroll-snap-stop: always;
    padding: 30px 24px 24px;
  }
  .testimonial-quote { font-size: 1.02rem; }
  .testimonials-nav { padding: 0 22px; margin-top: 14px; }
  .testimonials-arrow { width: 40px; height: 40px; }
  .testimonials-progress { margin: 0 14px; }
}


@media (max-width: 380px) {
  .hero-cta .btn { padding: 15px 20px; font-size: 0.7rem; }
  .practice-card { padding: 32px 22px; }
  h1 { font-size: 2rem; }
}

/* Feedback tactile (pas de hover fiable sur mobile) */
@media (hover: none) {
  .btn:active { transform: scale(0.97); }
  .practice-card:active { background: var(--white); transform: translateY(-2px); }
  .wa-float:active { transform: scale(0.94); }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100vh;
  height: 100svh;
  background: var(--paper);
  z-index: 1100;
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-hover);
  box-shadow: -20px 0 50px -20px rgba(0,0,0,0.3);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 26px; }
.mobile-nav li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease-hover), transform 0.5s var(--ease-hover);
}
.mobile-nav.open li { opacity: 1; transform: translateX(0); }
.mobile-nav.open li:nth-child(1) { transition-delay: 0.12s; }
.mobile-nav.open li:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav.open li:nth-child(3) { transition-delay: 0.24s; }
.mobile-nav.open li:nth-child(4) { transition-delay: 0.30s; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
}
.mobile-nav .lang-switch { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); font-size: 0.9rem; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(14,13,11,0.5);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-close {
  position: absolute; top: 30px; right: 30px;
  background: none; border: none; cursor: pointer;
}
.mobile-close span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
}
.mobile-close span:first-child { transform: rotate(45deg) translate(1px,1px); }
.mobile-close span:last-child { transform: rotate(-45deg) translate(1px,-1px); }
