/* ───────────── FONTS ───────────── */
@font-face {
  font-family: 'Inter Tight';
  src: url('../../assets/fonts/inter-tight/InterTight-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../../assets/fonts/inter-tight/InterTight-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Mono';
  src: url('../../assets/fonts/roboto-mono/RobotoMono-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

/* ───────────── TOKENS ───────────── */
:root {
  --bv:#72A7DA;   /* bleu vif    */
  --bvh:#5B94C8;
  --bm:#9FCAE7;   /* bleu moyen  */
  --bc:#DDE4ED;   /* bleu clair  */
  --ch:#212222;   /* charbon     */
  --chh:#333333;
  --wh:#FFFFFF;
  --be:#EFE5D6;   /* beige       */
  --ta:#A4978C;   /* taupe       */
  --fd:'Inter Tight', system-ui, -apple-system, sans-serif;
  --fm:'Roboto Mono', ui-monospace, monospace;
  --rb:2rem;
  --rs:3rem;
  --ease:cubic-bezier(0.32, 0.72, 0, 1);
  --nav-h: 88px;
}

/* ───────────── RESET ───────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fd);
  color: var(--ch);
  background: var(--wh);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--bv); color: var(--wh); }

/* ───────────── TYPOGRAPHIC PRIMITIVES ───────────── */
.eyebrow {
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ta);
  display: inline-block;
}
.eyebrow--dark { color: var(--ch); opacity: 0.65; }
.eyebrow--light { color: rgba(33,34,34,0.6); }
.eyebrow-italic {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  display: block;
}
.eyebrow-link {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(33,34,34,0.45);
  display: inline-block;
  transition: text-decoration-color .25s var(--ease), transform .25s var(--ease);
}
.eyebrow-link:hover { text-decoration-color: var(--bv); color: var(--bv); }

.h1 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  max-width: 56ch;
  color: var(--ch);
  opacity: 0.72;
}
.body {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62ch;
  color: var(--ch);
  opacity: 0.78;
}
.mono-sm {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ta);
}

/* ───────────── BUTTONS ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--fm);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: 0;
  white-space: nowrap;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--bv); color: var(--wh); }
.btn-primary:hover { background: var(--bvh); transform: translateY(-1px); }
.btn-primary--on-blue { background: var(--wh); color: var(--ch); }
.btn-primary--on-blue:hover { background: var(--ch); color: var(--wh); transform: translateY(-1px); }
.btn-secondary { background: var(--ch); color: var(--wh); }
.btn-secondary:hover { background: var(--chh); transform: translateY(-1px); }
.btn-tertiary {
  background: transparent;
  color: var(--ch);
  border: 1px solid rgba(164,151,140,0.45);
  padding: 0.9rem 1.5rem;
}
.btn-tertiary:hover { background: var(--ch); color: var(--wh); border-color: var(--ch); transform: translateY(-1px); }
.btn-arrow { display: inline-flex; align-items: center; gap: 0.85rem; cursor: pointer; }
.btn-arrow .arrow-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(33,34,34,0.35);
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  flex-shrink: 0;
}
.btn-arrow:hover .arrow-circle { background: var(--ch); border-color: var(--ch); transform: translateX(3px); }
.btn-arrow:hover .arrow-circle svg { stroke: var(--wh); }
.btn-arrow .arrow-label {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(33,34,34,0.3);
}
.btn-arrow--on-blue { color: var(--ch); }
.btn-arrow--on-dark { color: var(--wh); }
.btn-arrow--on-dark .arrow-circle { border-color: rgba(255,255,255,0.45); }
.btn-arrow--on-dark .arrow-circle svg { stroke: var(--wh); }
.btn-arrow--on-dark .arrow-label { text-decoration-color: rgba(255,255,255,0.5); }

/* ───────────── NAV ───────────── */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 0.5px solid rgba(164,151,140,0.22);
  transition: background .3s var(--ease);
}
.topnav--on-beige { background: rgba(239,229,214,0.88); }
.topnav--on-blue { background: rgba(221,228,237,0.86); }

.brand-link {
  display: flex; align-items: center; gap: 0.7rem;
  transition: opacity .25s var(--ease);
}
.brand-link:hover { opacity: 0.72; }
.brand-sigle { height: 38px; width: auto; }
.brand-logo { height: 60px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .b-small {
  font-family: var(--fd);
  font-weight: 400;
  font-size: 0.66rem;
  color: var(--ch);
  opacity: 0.85;
}
.brand-text .b-big {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ch);
  letter-spacing: -0.01em;
}

.nav-right { display: flex; align-items: center; gap: 0.85rem; }

.nav-pill {
  display: flex; align-items: center;
  background: var(--wh);
  border: 1px solid rgba(164,151,140,0.32);
  border-radius: 999px;
  padding: 0.32rem 0.4rem;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav-pill:hover { box-shadow: 0 6px 22px -10px rgba(33,34,34,0.18); }
.nav-link {
  font-family: var(--fm);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ch);
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.nav-link:hover { background: var(--bc); }
.nav-link.is-active { background: var(--ch); color: var(--wh); }
.nav-link.is-active .nav-dot { background: var(--bv); }
.nav-pill .pill-divider {
  width: 1px;
  height: 16px;
  background: rgba(164,151,140,0.3);
  margin: 0 0.05rem;
}
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bv); flex-shrink: 0; }
.nav-caret { width: 9px; height: 9px; opacity: 0.55; }

.nav-cta-sq {
  width: 44px; height: 44px;
  border: 1px solid rgba(164,151,140,0.35);
  border-radius: 10px;
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  background: var(--wh);
}
.nav-cta-sq:hover { background: var(--bv); border-color: var(--bv); transform: translateY(-1px); }
.nav-cta-sq:hover svg { stroke: var(--wh); }

/* Construction — 5-image bento variant: drop the 16/9 aspect to let the
   4-row layout breathe (1 large left × 2 rows + 2 small right + 1 large left × 2 rows + 1 large right × 2 rows). */
.clinique-grid--five {
  aspect-ratio: auto;
  grid-auto-rows: minmax(180px, 1fr);
}
@media (max-width: 820px) {
  .clinique-grid--five { grid-auto-rows: auto; }
}

/* Construction (Coming Soon) — simplified nav badge */
.topnav--construction .nav-construction-badge {
  display: inline-flex; align-items: center;
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wh);
  background: var(--bm);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
}

/* Construction — floating Planimal credit card (logo includes its own tagline) */
.cg-large { position: relative; }
.planimal-credit {
  position: absolute;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex; align-items: center; justify-content: center;
  background: var(--wh);
  border-radius: var(--rb);
  padding: 1.1rem 1.6rem;
  box-shadow: 0 24px 50px -22px rgba(33,34,34,0.28);
  text-decoration: none;
  z-index: 5;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  max-width: min(280px, 60%);
}
.planimal-credit:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -22px rgba(33,34,34,0.32);
}
.planimal-credit .planimal-logo {
  width: 100%; height: auto; display: block; max-height: 90px; object-fit: contain;
}
/* Smaller variant used in the hero (overlay on hero-right) */
.hero-right .planimal-credit { max-width: 220px; padding: 0.85rem 1.2rem; }
.hero-right .planimal-credit .planimal-logo { max-height: 70px; }
@media (max-width: 540px) {
  .planimal-credit { right: 1rem; bottom: 1rem; padding: 0.75rem 1rem; max-width: 60vw; }
  .planimal-credit .planimal-logo { max-height: 56px; }
}

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--wh);
  border: 1px solid rgba(164,151,140,0.32);
  border-radius: 10px;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--ch); }

@media (max-width: 820px) {
  .nav-pill { display: none; }
  .nav-burger { display: flex; }
  .brand-text .b-small { display: none; }
  .brand-text .b-big { font-size: 0.92rem; }
  .brand-sigle { height: 32px; }
  .brand-logo { height: 46px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--wh);
  z-index: 190;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; flex-direction: column; gap: 0.4rem;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer a {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(164,151,140,0.25);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a .mono-sm { font-size: 0.62rem; }

/* ───────────── PAGE / SECTION FRAMEWORK ───────────── */
.page { display: block; padding-top: var(--nav-h); }
.page[hidden] { display: none; }
section { position: relative; }
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.pad-y { padding-block: clamp(4rem, 9vw, 8rem); }
.pad-y-sm { padding-block: clamp(3rem, 6vw, 5rem); }

/* ───────────── DECORATIVE ───────────── */
.dot-precision {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bv);
  display: inline-block;
  flex-shrink: 0;
}
.dot-precision--charcoal { background: var(--ch); }
.dot-precision--white { background: var(--wh); }

.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--ch);
  opacity: 0.32;
  pointer-events: none;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--bm);
  pointer-events: none;
}
.float-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  pointer-events: none;
}

@keyframes float-a { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-14px) translateX(6px); } }
@keyframes float-b { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(10px) translateX(-8px); } }
@keyframes float-c { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pulse-soft { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes draw { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

.anim-float-a { animation: float-a 6.4s ease-in-out infinite; }
.anim-float-b { animation: float-b 7.2s ease-in-out infinite; animation-delay: -2s; }
.anim-float-c { animation: float-c 5.5s ease-in-out infinite; animation-delay: -1s; }
.anim-pulse { animation: pulse-soft 2.6s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: .65s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ───────────── HERO — ACCUEIL ───────────── */
.hero {
  background: var(--wh);
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.hero-left {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 3rem;
  background: var(--bc);
  border-radius: 0 var(--rb) var(--rb) 0;
}
.hero-left-top { display: flex; flex-direction: column; gap: 1rem; }
.hero-left-bottom { display: flex; flex-direction: column; gap: 1.4rem; max-width: min(36rem, 100%); }
.hero-h1 {
  font-weight: 700;
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ch);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.8rem; }

.hero-right {
  position: relative;
  background: var(--wh);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}
.cvc-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  opacity: 0.8;
}
.hero-about-photo .cvc-layer,
.hero-services-photo .cvc-layer {
  top: 50%; left: 50%;
  inset: auto;
  transform: translate(-50%, -50%);
  width: 75%; height: 75%;
}

.hero-portrait {
  position: relative;
  width: clamp(220px, 32vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.22);
}
.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-portrait:hover img { transform: scale(1.04); }

.hero .deco-dot.d1 { top: 8%; left: 45%; width: 9px; height: 9px; background: var(--ch); opacity: .55; }
.hero .deco-dot.d2 { top: 18%; right: 42%; width: 11px; height: 11px; background: var(--ch); opacity: .35; }
.hero .deco-dot.d3 { bottom: 14%; right: 12%; width: 9px; height: 9px; background: var(--ch); opacity: .45; }
.hero .deco-dot.d4 { bottom: 32%; right: 38%; width: 7px; height: 7px; background: var(--ch); opacity: .6; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 2.5rem 1.5rem 2rem; border-radius: 0 0 var(--rb) var(--rb); }
  .hero-right { padding: 1rem 1.5rem 4rem; min-height: 60vh; }
  .hero-portrait { width: 64vw; }
}

/* ───────────── MISSION ───────────── */
.mission {
  background: var(--wh);
  padding-block: clamp(5rem, 10vw, 9rem);
  text-align: left;
  position: relative;
}
.mission-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.mission-text { display: flex; flex-direction: column; gap: 2rem; min-width: 0; }
.mission-portrait {
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 24px 50px -22px rgba(33,34,34,0.22);
}
.mission-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.mission-portrait:hover img { transform: scale(1.05); }
@media (max-width: 820px) {
  .mission-inner { grid-template-columns: 1fr; gap: 1.5rem; justify-items: center; text-align: center; }
  .mission-portrait { width: 130px; }
  .mission-portrait--left { order: 0; }
  .mission-text { order: 1; align-items: center; }
  .mission-portrait--right { display: none; }
}
.mission-quote {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--ch);
  letter-spacing: -0.01em;
}
.mission-quote em { font-style: italic; color: var(--bv); font-weight: 500; }
.mission-attr {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta);
  display: flex; align-items: center; gap: 0.6rem;
}
.mission-attr::before { content: ""; display: inline-block; width: 30px; height: 1px; background: var(--ta); }

/* ───────────── SERVICES PREVIEW ───────────── */
.services-prev {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.services-prev::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%; right: 0;
  background: var(--bc);
  border-radius: var(--rb) 0 0 var(--rb);
  z-index: 0;
}
.services-prev .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.services-prev-left { display: flex; flex-direction: column; gap: 1.5rem; max-width: min(36rem, 100%); }
.services-prev-right { position: relative; min-height: clamp(360px, 42vw, 480px); }
.services-prev-photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 32vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.22);
}
.services-prev-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.services-prev-photo:hover img { transform: scale(1.05); }
.services-prev-right .cvc-layer {
  z-index: 1;
  opacity: 0.7;
}
@media (max-width: 820px) {
  .services-prev .container { grid-template-columns: 1fr; }
  .services-prev::before { left: 0; top: 50%; border-radius: var(--rb) var(--rb) 0 0; }
}
.services-organic { position: absolute; inset: 0; }
.service-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ch);
  background: var(--wh);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 0.5px solid rgba(164,151,140,0.3);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-chip:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -14px rgba(33,34,34,0.18); }
.service-chip .dot-precision { width: 7px; height: 7px; }
.sc-1 { top: 8%; left: 5%; }
.sc-2 { top: 22%; right: 4%; }
.sc-3 { top: 44%; left: 18%; }
.sc-4 { top: 60%; right: 18%; }
.sc-5 { bottom: 8%; left: 3%; }
.sc-6 { bottom: 22%; right: 6%; }
.sc-7 { top: 0%; right: 28%; }

.cvc-watermark {
  position: absolute;
  font-family: var(--fd);
  font-weight: 700;
  color: var(--wh);
  opacity: 0.78;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 820px) {
  .services-prev .container { grid-template-columns: 1fr; }
  .services-prev-right { min-height: 320px; }
}

/* ───────────── TEAM PREVIEW ───────────── */
.team-prev {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.team-prev::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background: var(--be);
  border-radius: 0 var(--rb) var(--rb) 0;
  z-index: 0;
}
.team-prev .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.team-prev-text { display: flex; flex-direction: column; gap: 1.5rem; }
.team-prev-text .body { max-width: 38ch; }
.team-prev-photo {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.member-portrait {
  width: clamp(240px, 34vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.22);
}
.member-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.member-portrait:hover img { transform: scale(1.04); }
.member-info {
  display: flex; align-items: center; gap: 0.7rem;
  width: 100%; max-width: 420px;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(33,34,34,0.18);
}
.member-name { font-weight: 700; font-size: 1rem; }
.member-role {
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch);
  opacity: 0.7;
}
.member-bio-link {
  margin-left: auto;
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(33,34,34,0.4);
  cursor: pointer;
}
.member-bio-link:hover { text-decoration-color: var(--bv); color: var(--bv); }

@media (max-width: 820px) {
  .team-prev .container { grid-template-columns: 1fr; }
  .team-prev::before { right: 0; bottom: 50%; border-radius: 0 0 var(--rb) var(--rb); }
}

/* ───────────── CTA BANNER ───────────── */
.cta-banner {
  position: relative;
  background: var(--wh);
  overflow: hidden;
}
.cta-banner-inner {
  position: relative;
  background: var(--bm);
  border-radius: 0 var(--rs) var(--rs) 0;
  margin: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem) 0;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: clamp(280px, 32vw, 380px);
}
.cta-banner-text { display: flex; flex-direction: column; gap: 1.4rem; max-width: min(32rem, 100%); }
.cta-banner-text h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ch);
}
.cta-banner-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0 var(--rs) var(--rs) 0;
  overflow: hidden;
}
.cta-banner-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .cta-banner-inner { grid-template-columns: 1fr; border-radius: 0 var(--rb) var(--rb) 0; }
}

/* ───────────── CONTACT QUICK / FOOTER ───────────── */
.contact-quick {
  background: var(--wh);
}
.contact-quick .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.contact-info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(164,151,140,0.22);
  align-items: baseline;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta);
}
.contact-info-value {
  font-family: var(--fd);
  font-size: 1.02rem;
  color: var(--ch);
}
.contact-info-value a { border-bottom: 1px solid transparent; transition: border-color .25s var(--ease); }
.contact-info-value a:hover { border-bottom-color: var(--bv); color: var(--bv); }

/* ───────────── FORM ───────────── */
.form-card {
  background: var(--bc);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 0 var(--rb) 0 0;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-card .form-header { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.8rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--fd);
  font-size: 0.95rem;
  color: var(--ch);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(164,151,140,0.35);
  padding: 0.78rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  border-radius: 0;
  resize: vertical;
  font-weight: 400;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--bv); background: var(--wh); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ta); opacity: 0.55; }
.form-textarea { min-height: 120px; line-height: 1.55; }
.form-hint { font-family: var(--fm); font-size: 0.62rem; color: var(--ta); }

@media (max-width: 820px) {
  .contact-quick .container { grid-template-columns: 1fr; }
  .form-field-row { grid-template-columns: 1fr; }
  .contact-info-item { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ───────────── PAGE: SERVICES ───────────── */
.hero-services {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.hero-services::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background: var(--bc);
  border-radius: 0 var(--rb) var(--rb) 0;
  z-index: 2;
}
.hero-services .container {
  position: relative;
  z-index: 3;
  display: block;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(2rem, 4vw, 3rem);
}
.hero-services-left {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem;
  max-width: min(36rem, 100%);
  min-height: 100%;
}
.hero-services-h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-services-h1 em { font-style: normal; color: var(--bv); }
.hero-services-photo {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 58%;
  border-radius: var(--rb) 0 0 var(--rb);
  overflow: hidden;
  z-index: 1;
}
.hero-services-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-services-photo .float-dot { background: rgba(255,255,255,0.88); }
@media (max-width: 820px) {
  .hero-services .container { grid-template-columns: 1fr; min-height: auto; padding-block: 2rem; }
  .hero-services::before { right: 0; bottom: 50%; border-radius: 0 0 var(--rb) var(--rb); }
  .hero-services-photo { position: relative; width: 100%; min-height: 50vh; border-radius: var(--rb); }
}

/* Services panels — inspired by Layout 1 */
.service-grid {
  background: var(--wh);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.service-grid-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.5rem);
}
.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2vw, 1.5rem);
  align-items: stretch;
  min-height: 320px;
}
.service-row .panel { display: flex; flex-direction: column; padding: 1.6rem 1.8rem; position: relative; overflow: hidden; border-radius: var(--rb); }
.service-row .panel--bc { background: var(--bc); }
.service-row .panel--bv { background: var(--bv); color: var(--ch); }
.service-row .panel--be { background: var(--be); }
.service-row .panel--photo {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.service-row .panel--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.panel-eyebrow {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ta);
  margin-bottom: 1rem;
}
.panel-body {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  color: var(--ch);
  opacity: 0.78;
}
.panel-bottom-link {
  font-family: var(--fm);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  color: var(--ch);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.panel-services-list {
  display: flex; flex-direction: column; gap: 1.2rem;
  flex: 1;
}
.panel-services-list .tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--fm);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch);
}
.panel-services-list .tag:nth-child(1) { align-self: flex-end; }
.panel-services-list .tag:nth-child(2) { align-self: flex-start; }
.panel-services-list .tag:nth-child(3) { align-self: center; }

.panel-big-service {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  line-height: 0.95;
  color: var(--bm);
  letter-spacing: -0.025em;
}
.panel-small-circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  align-self: flex-end;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.panel-small-circle img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .service-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-row { grid-template-columns: 1fr; }
}

/* Service list (vertical) */
.service-list {
  background: var(--wh);
}
.service-item {
  display: grid;
  grid-template-columns: 0.4fr 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 0.5px solid rgba(164,151,140,0.22);
  align-items: center;
}
.service-item:last-child { border-bottom: 0.5px solid rgba(164,151,140,0.22); }
.service-item-tag { display: flex; flex-direction: column; gap: 0.55rem; }
.service-item-tag .dot-line { display: flex; align-items: center; gap: 0.55rem; }
.service-item-tag .tag-label {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta);
}
.service-item-tag .tag-num {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ch);
  opacity: 0.5;
}
.service-item h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.service-item h3 em { font-style: normal; color: var(--bv); font-weight: 500; }
.service-item-desc { font-size: 0.96rem; line-height: 1.7; opacity: 0.72; max-width: 56ch; margin-top: 0.6rem; }
.service-item-side {
  display: flex; align-items: center; justify-content: flex-end; gap: 1rem;
}
.service-item-circle {
  width: clamp(100px, 14vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.service-item-circle img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .service-item { grid-template-columns: 1fr; }
  .service-item-side { justify-content: flex-start; }
}

/* Urgences banner */
.urgences-banner {
  background: var(--bv);
  color: var(--ch);
  overflow: hidden;
  position: relative;
}
.urgences-banner .container {
  padding-block: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.urgences-text { display: flex; flex-direction: column; gap: 1.2rem; max-width: min(34rem, 100%); }
.urgences-text h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.urgences-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.4rem; }

/* ───────────── PAGE: À PROPOS ───────────── */
.hero-about {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.hero-about::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background: var(--be);
  border-radius: 0 var(--rb) var(--rb) 0;
  z-index: 2;
}
.hero-about .container {
  position: relative;
  z-index: 3;
  display: block;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(2rem, 4vw, 3rem);
}
.hero-about-text {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem;
  max-width: min(34rem, 100%);
  min-height: 100%;
}
.hero-about-photo {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 58%;
  border-radius: var(--rb) 0 0 var(--rb);
  overflow: hidden;
  z-index: 1;
}
.hero-about-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 820px) {
  .hero-about .container { padding-block: 2rem; min-height: auto; }
  .hero-about::before { right: 0; bottom: 50%; border-radius: 0 0 var(--rb) var(--rb); }
  .hero-about-photo { position: relative; width: 100%; min-height: 50vh; border-radius: var(--rb); }
}

/* Valeurs */
.valeurs { background: var(--wh); }
.valeurs .container { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem); }
.valeurs-head { display: flex; flex-direction: column; gap: 1rem; max-width: 50ch; }
.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  margin-top: 1rem;
}
.valeurs-grid .divider { background: rgba(164,151,140,0.22); align-self: stretch; }
.valeur {
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.valeur .v-head { display: flex; align-items: center; gap: 0.6rem; }
.valeur .v-title {
  font-family: var(--fm);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ch);
}
.valeur .v-desc { font-size: 0.98rem; line-height: 1.7; opacity: 0.78; }
.valeur .v-num {
  font-family: var(--fm);
  font-size: 0.7rem;
  color: var(--ta);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1rem;
}
.valeur:first-of-type { padding-left: 0; }
.valeur:last-of-type { padding-right: 0; }

@media (max-width: 820px) {
  .valeurs-grid { grid-template-columns: 1fr; }
  .valeurs-grid .divider { height: 1px; }
  .valeur { padding: 1.5rem 0; }
  .valeur:first-of-type { padding-top: 0; }
  .valeur:last-of-type { padding-bottom: 0; }
}

/* Approche */
.approche {
  background: var(--bc);
  position: relative;
  overflow: hidden;
}
.approche .container { display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center; position: relative; z-index: 1; }
.approche h2 { max-width: 22ch; }
.approche .body { text-align: center; margin-inline: auto; }
.approche-deco { position: absolute; inset: 0; pointer-events: none; }
.approche-deco .deco-circle { background: var(--bm); }
.approche-deco .photo-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}
.approche-deco .photo-circle img { width: 100%; height: 100%; object-fit: cover; }
.ad-1 { width: 130px; height: 130px; top: 8%; left: 6%; }
.ad-2 { width: 92px; height: 92px; top: 18%; right: 10%; }
.ad-3 { width: 110px; height: 110px; bottom: 12%; left: 12%; }
.ad-4 { width: 76px; height: 76px; bottom: 20%; right: 18%; }
.ad-photo-1 { width: 100px; height: 100px; top: 30%; left: 14%; }
.ad-photo-2 { width: 90px; height: 90px; bottom: 24%; right: 6%; }

@media (max-width: 820px) {
  .ad-1, .ad-2, .ad-3, .ad-4, .ad-photo-1, .ad-photo-2 { display: none; }
}

/* Promesse */
.promesse {
  background: var(--be);
}
.promesse .container { max-width: 920px; text-align: center; display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.promesse-quote {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--ch);
  letter-spacing: -0.01em;
}
.promesse-logo { height: 56px; margin-top: 0.5rem; }

/* À propos — Mission */
.about-mission {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.about-mission::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%; right: 0;
  background: var(--be);
  border-radius: var(--rb) 0 0 var(--rb);
  z-index: 2;
}
.about-mission .container {
  position: relative;
  z-index: 3;
  display: block;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.about-mission-photo {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 50%;
  border-radius: 0 var(--rb) var(--rb) 0;
  overflow: hidden;
  z-index: 1;
}
.about-mission-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-mission-text {
  display: flex; flex-direction: column;
  gap: 1.4rem;
  max-width: min(36rem, 100%);
  margin-left: auto;
  width: 50%;
}
.about-mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.about-mission-card {
  background: var(--wh);
  border-left: 2px solid var(--bv);
  border-radius: 0 0.6rem 0.6rem 0;
  padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.about-mission-card .amc-title {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ch);
}
.about-mission-card .amc-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ch);
  opacity: 0.78;
}
@media (max-width: 820px) {
  .about-mission::before { left: 0; top: 50%; right: 0; border-radius: var(--rb) var(--rb) 0 0; }
  .about-mission-cards { grid-template-columns: 1fr; }
  .about-mission-photo { position: relative; width: 100%; min-height: 50vh; border-radius: var(--rb); }
  .about-mission-text { width: 100%; margin-left: 0; }
}

/* À propos — Engagements */
.engagements {
  background: var(--bc);
  position: relative;
}
.engagements .container { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem); }
.engagements .section-head { align-items: center; text-align: center; margin: 0 auto; }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.engagement-card {
  background: var(--wh);
  border-radius: var(--rb);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.engagement-card::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--bv);
  display: block;
  margin-bottom: 0.4rem;
}
.engagement-card h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ch);
}
.engagement-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ch);
  opacity: 0.78;
}
@media (max-width: 820px) {
  .engagements-grid { grid-template-columns: 1fr; }
}

/* À propos — Quote + Stats + CTA */
.about-quote-stats {
  background: var(--wh);
}
.about-quote-stats .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.aqs-quote {
  font-family: var(--fd);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--ch);
  letter-spacing: -0.005em;
}
.aqs-attr {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta);
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.aqs-attr::before { content: ""; display: inline-block; width: 30px; height: 1px; background: var(--ta); }
.aqs-stats { display: flex; flex-direction: column; gap: 0.85rem; }
.aqs-stat {
  background: var(--bc);
  border-radius: var(--rb);
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 1.5rem;
  align-items: center;
}
.aqs-stat-num {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ch);
  letter-spacing: -0.01em;
}
.aqs-stat-label {
  font-family: var(--fd);
  font-size: 0.95rem;
  color: var(--ch);
  opacity: 0.85;
}
.aqs-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--be);
  border-radius: var(--rb);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  grid-column: 1 / -1;
}
.aqs-cta-text { display: flex; flex-direction: column; gap: 0.4rem; }
.aqs-cta-title {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--ch);
}
.aqs-cta-sub { font-size: 0.95rem; color: var(--ch); opacity: 0.78; }
.aqs-cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
@media (max-width: 820px) {
  .about-quote-stats .container { grid-template-columns: 1fr; }
  .aqs-cta { flex-direction: column; align-items: flex-start; }
}

/* ───────────── PAGE: ÉQUIPE ───────────── */
.hero-team {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.hero-team::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background: var(--be);
  border-radius: 0 var(--rb) var(--rb) 0;
  z-index: 2;
}
.hero-team .container {
  position: relative;
  z-index: 3;
  display: block;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(2rem, 4vw, 3rem);
}
.hero-team-text {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.4rem;
  max-width: min(36rem, 100%);
  min-height: 100%;
}
.hero-team-text .body { max-width: 38ch; opacity: 0.82; }
.hero-team-h1 {
  font-weight: 700;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero-team-photo {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 4rem);
  z-index: 1;
}
.hero-team-photo .member-portrait {
  position: relative;
  z-index: 2;
  width: clamp(260px, 32vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.22);
}
.hero-team-photo .member-portrait img {
  width: 100%; height: 100%; object-fit: contain;
  object-position: 60% 50%;
}
.hero-team-photo .member-info {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--fd);
}
.hero-team-photo .member-info .member-name { font-weight: 700; color: var(--ch); font-size: 1rem; }
.hero-team-photo .member-info .member-role { font-size: 0.92rem; color: var(--ch); opacity: 0.78; }
.hero-team-photo .cvc-layer {
  inset: 0;
  top: auto; left: auto;
  transform: none;
  width: 100%; height: 100%;
}

@media (max-width: 820px) {
  .hero-team .container { padding-block: 2rem; min-height: auto; }
  .hero-team-photo { position: relative; width: 100%; min-height: 60vh; }
  .hero-team::before { right: 0; bottom: 50%; border-radius: 0 0 var(--rb) var(--rb); }
}

/* Team members list */
.team-list { background: var(--wh); }
.team-list .container { display: flex; flex-direction: column; gap: 0; }
.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 0.5px solid rgba(164,151,140,0.22);
}
.team-member:nth-child(even) { direction: rtl; }
.team-member:nth-child(even) > * { direction: ltr; }
.team-member:last-child { border-bottom: 0.5px solid rgba(164,151,140,0.22); }
.team-member-text { display: flex; flex-direction: column; gap: 1rem; }
.team-member-text .body { max-width: 42ch; margin-top: 0.4rem; }
.team-member-meta { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.team-member-meta .role { font-family: var(--fm); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ch); opacity: 0.65; }
.team-member-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 420px;
  justify-self: end;
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.22);
}
.team-member:nth-child(even) .team-member-photo { justify-self: start; }
.team-member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.team-member-photo:hover img { transform: scale(1.05); }
.team-member-name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (max-width: 820px) {
  .team-member { grid-template-columns: 1fr; }
  .team-member:nth-child(even) { direction: ltr; }
  .team-member-photo { justify-self: stretch; max-width: 100%; }
  .team-member:nth-child(even) .team-member-photo { justify-self: stretch; }
}

/* ───────────── PAGE: CONTACT ───────────── */
.hero-contact {
  background: var(--wh);
  position: relative;
  overflow: hidden;
}
.hero-contact::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 50%;
  background: var(--be);
  border-radius: 0 var(--rb) var(--rb) 0;
  z-index: 2;
}
.hero-contact .container {
  position: relative;
  z-index: 3;
  display: block;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(2rem, 4vw, 3rem);
}
.hero-contact-left {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.5rem;
  max-width: min(36rem, 100%);
  min-height: 100%;
}
.hero-contact-h1 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ch);
}
.hero-contact-photo {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 58%;
  border-radius: var(--rb) 0 0 var(--rb);
  overflow: hidden;
  z-index: 1;
}
.hero-contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-contact-photo .cvc-layer {
  top: 50%; left: 50%;
  inset: auto;
  transform: translate(-50%, -50%);
  width: 75%; height: 75%;
}
.hero-contact-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.hcq-card {
  display: flex; flex-direction: column; gap: 0.35rem;
  background: var(--wh);
  border-radius: var(--rb);
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: transform .25s var(--ease);
}
.hcq-card:hover { transform: translateY(-2px); }
.hcq-label {
  font-family: var(--fm);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ta);
}
.hcq-value {
  font-family: var(--fd);
  font-size: 0.92rem;
  color: var(--ch);
  line-height: 1.4;
}
.hero-contact-actions {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 0.5rem;
}
@media (max-width: 540px) {
  .hero-contact-quick { grid-template-columns: 1fr; }
}

.contact-grid {
  background: var(--wh);
}
.contact-grid .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 820px) {
  .hero-contact .container { min-height: auto; padding-block: 2rem; }
  .hero-contact::before { right: 0; bottom: 50%; border-radius: 0 0 var(--rb) var(--rb); }
  .hero-contact-photo { position: relative; width: 100%; min-height: 50vh; border-radius: var(--rb); }
  .contact-grid .container { grid-template-columns: 1fr; }
}

/* Map section */
.map-section { background: var(--bc); padding-block: clamp(3rem, 5vw, 5rem); position: relative; }
.map-section .container { display: flex; flex-direction: column; gap: 2rem; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 0 var(--rb) 0 0;
  overflow: hidden;
  background: var(--bm);
  box-shadow: 0 30px 60px -25px rgba(33,34,34,0.18);
  filter: saturate(0.7) hue-rotate(-5deg);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-info { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.map-info-address {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 1.05rem;
}

/* ───────────── FOOTER ───────────── */
.footer {
  background: var(--be);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  position: relative;
}
.footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 52px; width: auto; display: block; }
.footer-tagline {
  font-family: var(--fd);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ch);
  opacity: 0.7;
  max-width: 28ch;
}
.footer-col-title {
  font-family: var(--fm);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ta);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a {
  font-size: 0.95rem;
  color: var(--ch);
  opacity: 0.82;
  border-bottom: 1px solid transparent;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.footer-col li a:hover { opacity: 1; border-bottom-color: var(--bv); color: var(--bv); }
.footer-cta { margin-top: 0.4rem; }

.footer-bottom {
  border-top: 0.5px solid rgba(164,151,140,0.3);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--fm);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ta);
}

@media (max-width: 820px) {
  .footer .container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .footer .container { grid-template-columns: 1fr; }
}

/* ───────────── HELPERS ───────────── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.flex-end { display: flex; align-items: center; gap: 0.6rem; }
.no-shrink { flex-shrink: 0; }

/* photo grid for clinique */
.clinique-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: 2rem;
  aspect-ratio: 16/9;
}
.clinique-grid > * {
  overflow: hidden;
  border-radius: var(--rb);
}
.clinique-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.clinique-grid > *:hover img { transform: scale(1.04); }
.cg-large { grid-row: span 2; }
.cg-small { grid-row: span 1; }
.cg-wide { grid-column: 1 / -1; grid-row: span 1; }
.cg-third { grid-column: span 1; grid-row: span 1; }

@media (max-width: 820px) {
  .clinique-grid { grid-template-columns: 1fr; aspect-ratio: auto; }
  .cg-large, .cg-small, .cg-wide, .cg-third { grid-row: auto; grid-column: auto; aspect-ratio: 4/3; }
}