/* ═══════════════════════════════════════════
   GIFTPRINT — style.css
   Palette : Rouge #D72B2B · Bleu #1A3A8F · Or #E8C84A
   Fonts   : Syne (headings) · DM Sans (body)
   ═══════════════════════════════════════════ */

:root {
  --c-bg:       #F7F6F3;
  --c-surface:  #FFFFFF;
  --c-ink:      #111111;
  --c-ink-soft: #555555;
  --c-ink-mute: #999999;
  --c-red:      #D72B2B;
  --c-red-dark: #B02020;
  --c-blue:     #1A3A8F;
  --c-gold:     #E8C84A;
  --c-border:   #E2E0D8;
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --tr:         0.28s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,246,243,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  padding: 0 clamp(1rem,4vw,3rem);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.02em; color: var(--c-ink);
  display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-red); flex-shrink:0; }
nav.main-nav { display: flex; gap: 2rem; align-items: center; }
nav.main-nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--c-ink-soft);
  transition: color var(--tr); padding: 4px 0;
}
nav.main-nav a:hover { color: var(--c-ink); }
nav.main-nav a.active {
  color: var(--c-ink); font-weight: 600;
  border-bottom: 2px solid var(--c-red); padding-bottom: 2px;
}
.nav-cta {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.25rem; border-radius: 100px;
  background: var(--c-red); color: #fff; letter-spacing: 0.04em;
  transition: background var(--tr), transform var(--tr);
}
.nav-cta:hover { background: var(--c-red-dark); transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 8px; z-index: 400;
  width: 44px; height: 44px; cursor: pointer;
  flex-shrink: 0; position: relative;
}
.nav-burger span {
  width: 24px; height: 2px; background: var(--c-ink); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.25s ease;
  display: block;
  transform-origin: center;
  pointer-events: none;
}
.nav-burger.open span { background: var(--c-ink); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 350;
  background: var(--c-bg); padding: 80px 2rem 2rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  flex-direction: column; overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); display: flex; }
.nav-mobile a {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 800;
  color: var(--c-ink); padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border); display: block;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile .mobile-cta {
  margin-top: 2rem; display: block;
  background: var(--c-red); color: #fff;
  padding: 1rem 2rem; border-radius: 100px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  text-align: center; border: none;
}

/* Cacher nav-cta dans le header sur mobile */
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .lang-switcher { margin-right: 0; }
}

/* ═══════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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 HELPERS
   ═══════════════════════════════════ */
.section-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,3rem);
}
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.section-label::before { content:''; display:block; width:24px; height:2px; background:var(--c-red); }
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem,4vw,3.5rem); line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-title span { color: var(--c-red); }
.section-sub {
  font-size: 1.0625rem; color: var(--c-ink-soft);
  max-width: 560px; line-height: 1.75; margin-top: 1rem;
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.04em;
  padding: 0.875rem 2rem; border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--tr);
}
.btn-primary { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn-primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(215,43,43,0.3); }
.btn-secondary { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn-secondary:hover { background: var(--c-ink); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1eab52; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ═══════════════════════════════════
   CARDS — SERVICE
   ═══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--c-surface); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--c-red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(215,43,43,0.08); color: var(--c-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.service-card p { font-size: 0.875rem; color: var(--c-ink-soft); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-red);
  padding: 3px 10px; border-radius: 100px;
  background: rgba(215,43,43,0.08);
}

/* ═══════════════════════════════════
   BENTO GRID — stats / about
   ═══════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 2fr;
  gap: 1.25rem;
}
/* Les 3 stats en colonne 1, la mission en colonne 2 sur toute la hauteur */
.bento-grid > .bento-cell:nth-child(1),
.bento-grid > .bento-cell:nth-child(2),
.bento-grid > .bento-cell:nth-child(3) {
  grid-column: 1;
}
.bento-grid > .bento-cell:nth-child(4) {
  grid-column: 2 / 5;
  grid-row: 1 / 4;
}
.bento-cell {
  background: var(--c-surface); border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 2rem; overflow: hidden; position: relative;
}
.bento-cell.span-2 { grid-column: span 2; }
.bento-cell.span-2-row { grid-row: span 2; }
.bento-cell.dark { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.bento-cell.red { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.bento-cell.gold { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.bento-stat {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem,5vw,4rem); line-height: 1; letter-spacing: -0.04em;
}
.bento-stat-label { font-size: 0.875rem; opacity: 0.7; margin-top: 0.375rem; }

/* ═══════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--c-surface); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--c-border);
  transition: box-shadow var(--tr);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--c-gold); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9375rem; line-height: 1.75; color: var(--c-ink-soft);
  margin-bottom: 1.25rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.875rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; }
.author-role { font-size: 0.75rem; color: var(--c-ink-mute); }

/* ═══════════════════════════════════
   TEAM CARDS
   ═══════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--c-surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--c-border);
  transition: transform var(--tr), box-shadow var(--tr);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 4/3; background: linear-gradient(135deg, #e8e6e0, #d0cdc4);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--c-ink-mute);
}
.team-photo img { width:100%; height:100%; object-fit:cover; }
.team-info { padding: 1.25rem 1.5rem; }
.team-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.team-role { font-size: 0.8125rem; color: var(--c-red); font-weight: 600; margin-top: 2px; }
.team-bio { font-size: 0.8125rem; color: var(--c-ink-soft); margin-top: 0.5rem; line-height: 1.6; }

/* ═══════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.8125rem; font-weight: 600; color: var(--c-ink); }
.form-label span { color: var(--c-red); }
.form-input, .form-textarea, .form-select {
  font-family: var(--font-body); font-size: 0.9375rem;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-border);
  background: var(--c-surface); color: var(--c-ink);
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(215,43,43,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  color: #1a7a42; font-size: 0.875rem; margin-top: 1rem;
}
.form-error {
  display: none; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: rgba(215,43,43,0.08); border: 1px solid rgba(215,43,43,0.25);
  color: var(--c-red); font-size: 0.875rem; margin-top: 1rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(215,43,43,0.08); color: var(--c-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; }
.contact-info-item p, .contact-info-item a {
  font-size: 0.875rem; color: var(--c-ink-soft);
  transition: color var(--tr);
}
.contact-info-item a:hover { color: var(--c-red); }

/* ═══════════════════════════════════
   MAP EMBED
   ═══════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--c-border); height: 280px; margin-top: 1.5rem;
  background: #e8e6e0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--c-ink-soft); text-align: center;
}
.map-wrap iframe { width:100%; height:100%; border:none; }

/* ═══════════════════════════════════
   CTA BAND
   ═══════════════════════════════════ */
.cta-band {
  background: var(--c-ink); color: #fff;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.75rem,3.5vw,3rem); letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════
   WHATSAPP POPUP
   ═══════════════════════════════════ */
.wa-popup {
  position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 490;
  background: var(--c-surface); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 280px;
  transform: translateY(20px) scale(0.95); opacity: 0; pointer-events: none;
  transition: all var(--tr);
  border: 1px solid var(--c-border);
}
.wa-popup.active { transform: none; opacity: 1; pointer-events: all; }
.wa-popup-head {
  background: #075E54; color: #fff; padding: 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; gap: 0.75rem;
}
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink:0;
}
.wa-popup-head h4 { font-weight: 700; font-size: 0.875rem; }
.wa-popup-head p { font-size: 0.7rem; opacity: 0.8; }
.wa-popup-close {
  margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7);
  cursor: pointer; font-size: 1rem; padding: 2px;
}
.wa-popup-body { padding: 1rem; }
.wa-greeting {
  background: #f0f0f0; border-radius: 0 10px 10px 10px;
  padding: 0.75rem; font-size: 0.8125rem; color: var(--c-ink); margin-bottom: 1rem;
  line-height: 1.5;
}
.wa-services { display: flex; flex-direction: column; gap: 0.5rem; }
.wa-service-btn {
  background: none; border: 1.5px solid var(--c-border);
  border-radius: 8px; padding: 0.625rem 0.875rem;
  font-size: 0.8125rem; color: var(--c-ink); text-align: left;
  transition: all var(--tr); display: flex; align-items: center; gap: 8px;
}
.wa-service-btn:hover { border-color: #25D366; color: #075E54; background: rgba(37,211,102,0.06); }

/* ═══════════════════════════════════
   FLOAT BUTTONS
   ═══════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--tr), box-shadow var(--tr);
  opacity: 0; pointer-events: none;
}
.wa-float.visible { opacity: 1; pointer-events: all; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.back-top {
  position: fixed; bottom: 1.75rem; right: 5.5rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--c-ink); cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr); opacity: 0; pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer {
  background: var(--c-ink); color: rgba(255,255,255,0.65);
  padding: clamp(3rem,5vw,4rem) clamp(1rem,4vw,3rem) 0;
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8125rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 0.875rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: all var(--tr);
}
.footer-socials a:hover { border-color: var(--c-red); color: #fff; background: var(--c-red); }
.footer-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.875rem;
  color: #fff; margin-bottom: 1rem; letter-spacing: 0.04em;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.8125rem;
  color: rgba(255,255,255,0.55); margin-bottom: 0.625rem;
  transition: color var(--tr);
}
.footer-col a:hover { color: #fff; }
.footer-hours { font-size: 0.75rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--tr); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════
   HERO — INDEX
   ═══════════════════════════════════ */
.hero-index {
  min-height: 92vh; display: flex; align-items: center;
  padding: clamp(4rem,8vw,6rem) clamp(1rem,4vw,3rem);
  position: relative; overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(215,43,43,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,58,143,0.05) 0%, transparent 70%),
    var(--c-bg);
}
.hero-content {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-red);
  border: 1.5px solid rgba(215,43,43,0.25); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 1.5rem;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--c-red); flex-shrink:0; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.8rem,6vw,5.5rem); line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
}
.hero-title .line-red { color: var(--c-red); }
.hero-sub { font-size: 1.0625rem; color: var(--c-ink-soft); line-height: 1.75; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-proof {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid var(--c-border);
}
.proof-avatars { display: flex; }
.proof-avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; background: var(--c-red); color: #fff;
  margin-left: -10px;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text p:first-child { font-weight: 700; font-size: 0.875rem; }
.proof-text p:last-child { font-size: 0.75rem; color: var(--c-ink-soft); }

/* Hero visual side */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  object-fit: cover; box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute; background: var(--c-surface);
  border-radius: var(--radius-sm); padding: 0.875rem 1.125rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--c-border);
  white-space: nowrap;
}
.hero-float-card.card-1 { bottom: -1rem; left: -1.5rem; }
.hero-float-card.card-2 { top: 1.5rem; right: -1.5rem; }
.float-card-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-soft); }
.float-card-val { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--c-ink); line-height: 1; }
.float-card-sub { font-size: 0.7rem; color: var(--c-ink-mute); }

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════ */
.page-hero {
  background: var(--c-ink); color: #fff;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-50%; right:-10%;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(215,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index:1; }
.page-hero-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.page-hero-label::before { content:''; width:24px; height:2px; background:var(--c-red); display:block; }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.5rem,5vw,4.5rem); line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--c-red); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; }

/* ═══════════════════════════════════
   ABOUT — VALUE PROPS
   ═══════════════════════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.value-card {
  padding: 1.75rem; border-radius: var(--radius);
  background: var(--c-surface); border: 1px solid var(--c-border);
}
.value-num {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem;
  color: rgba(215,43,43,0.15); line-height: 1; margin-bottom: 0.75rem;
}
.value-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8125rem; color: var(--c-ink-soft); line-height: 1.6; }

/* ═══════════════════════════════════
   PRIVACY / TERMS
   ═══════════════════════════════════ */
.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
}
.legal-content h1 {
  font-family: var(--font-head); font-weight: 800; font-size: 2.5rem;
  letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.legal-content .date { font-size: 0.8125rem; color: var(--c-ink-mute); margin-bottom: 2.5rem; }
.legal-content h2 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.legal-content p, .legal-content li {
  font-size: 0.9375rem; color: var(--c-ink-soft); line-height: 1.8; margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--c-red); text-decoration: underline; }

/* ═══════════════════════════════════
   404
   ═══════════════════════════════════ */
.page-404 {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.page-404 svg { width: 200px; height: auto; margin-bottom: 2rem; }
.page-404 h1 {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem;
  letter-spacing: -0.04em; margin-bottom: 0.75rem;
}
.page-404 p { color: var(--c-ink-soft); max-width: 400px; margin: 0 auto 2rem; }
.page-404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-grid > .bento-cell:nth-child(1),
  .bento-grid > .bento-cell:nth-child(2),
  .bento-grid > .bento-cell:nth-child(3) { grid-column: auto; }
  .bento-grid > .bento-cell:nth-child(4) { grid-column: 1 / 3; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .nav-burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid > .bento-cell:nth-child(4) { grid-column: 1; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-float-card { display: none; }
  .service-detail { grid-template-columns: 1fr !important; gap: 2rem !important; direction: ltr !important; }
  .service-detail > * { direction: ltr !important; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .btn { font-size: 0.8rem; padding: 0.75rem 1.5rem; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════ */

/* Sur fond clair (header par défaut) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.50);
  font-family: var(--font-head, 'Syne', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  line-height: 1;
}

.lang-option:hover {
  color: var(--c-ink);
  background: rgba(0, 0, 0, 0.07);
}

.lang-option.active {
  background: var(--c-red, #D72B2B);
  color: #fff;
  box-shadow: 0 2px 8px rgba(215, 43, 43, 0.35);
}

.lang-option .lang-flag {
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Animation de changement de langue */
[data-i18n], [data-i18n-html] {
  transition: opacity 0.15s ease;
}
.lang-switching [data-i18n],
.lang-switching [data-i18n-html] {
  opacity: 0;
}

/* Responsive : masquer le texte sur très petit écran */
@media (max-width: 380px) {
  .lang-option .lang-text {
    display: none;
  }
  .lang-option {
    padding: 5px 8px;
  }
}
