@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");
/* =========================================================
   CONNECT GROUPE — Design System
   Brand axes : Boutique (B2C) × Pro (B2B)
   ========================================================= */

:root {
  /* Couleurs brand */
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --line: var(--t2);
  --cream: #ffffff;
  --cream-dim: rgba(255, 255, 255, 0.85);
  --cream-mute: rgba(255, 255, 255, 0.65);
  --red: #ee2a24;
  --red-dim: #c4201c;
  /* tints / overlays (flip in light theme) */
  --t1: rgba(255, 255, 255, 0.05);
  --t2: rgba(255, 255, 255, 0.10);
  --t3: rgba(255, 255, 255, 0.18);
  --t4: rgba(255, 255, 255, 0.40);

  /* Typographie */
  --font-display: "Satoshi", "Inter", Arial, sans-serif;
  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Layout */
  --container: 1400px;
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-swift: cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero__title,
.hero__expand-title,
.hero__expand-case-saved,
.hero__expand-fig-v,
.display,
h2.section-title,
.nav__logo,
.stat__n,
.loc__city,
.uni__h,
.lab__title { word-spacing: -0.08em; }

html { scroll-behavior: smooth; }

/* =====================  Loader  ===================== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.8s var(--ease);
}
.loader.is-bg-fade::before {
  opacity: 0;
}
.loader.is-done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.loader__logo {
  display: flex;
  align-items: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 40vw, 500px);
  z-index: 1;
  transition: transform 0.9s var(--ease), width 0.9s var(--ease), left 0.9s var(--ease), top 0.9s var(--ease);
}

/* "co" — partie gauche (rouge) */
.loader__left {
  overflow: hidden;
  width: 33%;
  flex-shrink: 0;
  transform: translateX(-60px);
  animation: loader-left 1s 0.4s var(--ease) forwards;
}
.loader__left img {
  width: calc(100% / 0.33);
  max-width: none;
  display: block;
}

/* "nnect" — partie droite (blanche) */
.loader__right {
  overflow: hidden;
  flex: 1;
  transform: translateX(60px);
  animation: loader-right 1s 0.4s var(--ease) forwards;
}
.loader__right img {
  width: calc(100% / 0.67);
  max-width: none;
  margin-left: -49.25%;
  display: block;
}

/* Trait rouge central */
.loader__line {
  width: 60px;
  height: 7px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
  animation: loader-line 1s 0.4s var(--ease) forwards;
}

@keyframes loader-left {
  to { transform: translateX(0); }
}
@keyframes loader-right {
  to { transform: translateX(0); }
}
@keyframes loader-line {
  0% { width: 60px; opacity: 1; }
  80% { width: 0; opacity: 1; }
  100% { width: 0; opacity: 0; }
}

/* Hero logo hidden until loader lands */
.hero__logo { opacity: 0; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); cursor: pointer; }
.hero__logo.is-visible { opacity: 1; }
.hero__logo.is-bounce {
  animation: logoBounce 0.4s var(--ease);
}
@keyframes logoBounce {
  0% { transform: scale(1.2) translateY(0); }
  40% { transform: scale(1.2) translateY(-14px); }
  70% { transform: scale(1.2) translateY(2px); }
  100% { transform: scale(1.2) translateY(0); }
}
.hero__logo:not(.is-enlarged).is-bounce {
  animation: logoBounceNormal 0.4s var(--ease);
}
@keyframes logoBounceNormal {
  0% { transform: translateY(0); }
  40% { transform: translateY(-14px); }
  70% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
.hero__logo.is-fading { opacity: 0; transition: opacity 0.3s var(--ease); }
.hero__logo.is-enlarged { transform: scale(1.2); }

/* Hero logo split "co—hello—nnect" animation */
.hero__logo-split {
  position: absolute;
  display: flex;
  align-items: center;
  width: clamp(240px, 35vw, 480px);
  filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.4));
  opacity: 0;
  pointer-events: none;
}
.hero__logo-split.is-active {
  opacity: 1;
}
.hero__logo-co {
  overflow: hidden;
  width: 33%;
  flex-shrink: 0;
  transform: translateX(0);
  transition: transform 0.6s var(--ease);
}
.hero__logo-co img {
  width: calc(100% / 0.33);
  max-width: none;
  display: block;
}
.hero__logo-nnect {
  overflow: hidden;
  flex: 1;
  transform: translateX(0);
  transition: transform 0.6s var(--ease);
}
.hero__logo-nnect img {
  width: calc(100% / 0.67);
  max-width: none;
  margin-left: -49.25%;
  display: block;
}
.hero__logo-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  flex-shrink: 0;
  overflow: visible;
  transition: width 0.4s var(--ease);
}
.hero__logo-hello {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(12px, 1.3vw, 20px);
  color: var(--cream);
  letter-spacing: -0.3em;
  white-space: nowrap;
  opacity: 0;
  transition: letter-spacing 0.4s var(--ease), opacity 0.4s var(--ease);
}
/* Phase: open */
.hero__logo-split.is-open .hero__logo-co {
  transform: translateX(-20px);
}
.hero__logo-split.is-open .hero__logo-nnect {
  transform: translateX(20px);
}
.hero__logo-split.is-open .hero__logo-mid {
  width: 80px;
}
/* Phase: hello visible */
.hero__logo-split.is-hello .hero__logo-hello {
  opacity: 1;
  letter-spacing: 0.12em;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.06em;
  color: var(--cream);
  display: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.hero__title.is-active { display: block; }
.hero__title.is-visible { opacity: 1; }
.hero__title.is-fading { opacity: 0; }

.hero__tagline {
  position: absolute;
  right: 0;
  bottom: -5px;
  width: clamp(90px, 12vw, 170px);
  height: auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.hero__tagline.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.hero__tagline.is-fading {
  opacity: 0;
  transform: translateY(-6px);
}
.hero__tagline.is-hidden {
  display: none;
}

.hero__subtitle { transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.hero__subtitle.is-fading { opacity: 0; transform: translateY(-10px); }

.hero__split { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.hero__split.is-fading { opacity: 0; transform: translateY(16px); }

/* Flying logo clone */
.hero__flying-logo {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  will-change: top, left, width, height;
  transition: top 0.65s var(--ease), left 0.65s var(--ease), width 0.65s var(--ease), height 0.65s var(--ease);
}
.hero__flying-logo.is-landing {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Action buttons after selection */
.hero__action {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 24px 20px;
  border: 1px solid var(--t4);
  border-radius: var(--radius-lg);
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
@media (max-width: 600px) {
  .hero__action { width: 160px; height: 160px; padding: 16px 14px; }
}
.hero__action-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.hero__action:hover .hero__action-bg {
  transform: scale(1.08);
}
.hero__action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.75) 100%);
  pointer-events: none;
}
.hero__action.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero__action:hover {
  border-color: var(--cream-dim);
  transform: translateY(-4px) scale(1);
}
.hero__action-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Store variant (no bg image, text layout) */
.hero__action--store {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 40px 48px;
  width: 260px;
  height: 200px;
}
@media (max-width: 600px) {
  .hero__action--store { width: 200px; height: 160px; padding: 28px 24px; }
}
.hero__action--store .hero__action-label {
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero__action-desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream-dim);
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
/* Shared CTA below store cards */
.hero__store-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: 16px 32px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.2s var(--ease);
}
.hero__store-cta svg {
  width: 15px;
  height: 15px;
}
.hero__store-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__store-cta:hover {
  background: var(--cream);
  color: var(--ink);
}

/* Expandable "En savoir plus" column (Pro) */
.hero__action-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  width: 220px;
  max-width: 100%;
}
.hero__action-col.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero__action-col .hero__action {
  width: 100%;
  opacity: 1;
  transform: none;
}
.hero__action-col.is-expanded {
  width: 420px;
  max-width: calc(100vw - 40px);
}
@media (max-width: 600px) {
  .hero__action-col { width: 160px; }
  .hero__action-col.is-expanded { width: calc(100vw - 40px); }
}

.hero__expand-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--t3);
  border-radius: 999px;
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.hero__expand-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.hero__expand-toggle:hover {
  color: var(--cream);
  border-color: var(--cream-dim);
  background: var(--t1);
}
.hero__expand-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.hero__expand-toggle[aria-expanded="true"] {
  color: var(--cream);
  border-color: var(--red);
  background: rgba(238, 42, 36, 0.12);
}

/* Collapsible panel — grid-rows trick for fluid height animation */
.hero__expand-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
  overflow: hidden;
}
.hero__expand-panel.is-open {
  grid-template-rows: 1fr;
}
.hero__expand-inner {
  min-height: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--t2);
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--cream);
  text-align: left;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease) 0.1s, transform 0.35s var(--ease) 0.1s, padding 0.4s var(--ease);
  box-sizing: border-box;
}
.hero__expand-panel.is-open .hero__expand-inner {
  padding: 24px 26px;
  opacity: 1;
  transform: translateY(0);
}

.hero__expand-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.hero__expand-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.hero__expand-lead {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0 0 20px;
}

.hero__expand-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__expand-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero__expand-n {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(238, 42, 36, 0.15);
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hero__expand-steps li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__expand-steps strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.hero__expand-steps li > div span {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--cream-dim);
  font-weight: 400;
}

.hero__expand-cases {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__expand-case {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--t1);
  border-left: 2px solid var(--red);
}
.hero__expand-case-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.hero__expand-case-head strong {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
}
.hero__expand-case-head span {
  font-size: 11px;
  color: var(--cream-mute);
  letter-spacing: 0.03em;
}
.hero__expand-case-saved {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--red);
  font-style: italic;
  letter-spacing: 0.01em;
}
.hero__expand-case-saved em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.01em;
  margin-left: 4px;
}

.hero__expand-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--t2);
}
.hero__expand-fig {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.hero__expand-fig-v {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero__expand-fig-l {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--cream-mute);
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* Stats block (Pro) */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
  padding: 28px 32px;
  border: 1px solid var(--t3);
  border-radius: var(--radius-lg);
  background: var(--t1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero__stats.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}
.hero__stat-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
}
.hero__stat-icon svg {
  width: 100%;
  height: 100%;
}
.hero__stat-value {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--cream-mute);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat { min-width: 40%; }
}

/* Contact form (Pro) */
.hero__form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 40px;
  border: 1px solid var(--t3);
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero__form.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--t3);
  border-radius: var(--radius-sm);
  background: var(--t2);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.hero__form-input::placeholder {
  color: var(--cream-mute);
}
.hero__form-input:focus {
  border-color: var(--cream);
  background: var(--t2);
}
.hero__form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.hero__form-select option {
  background: var(--ink);
  color: var(--cream);
}
.hero__form-textarea {
  resize: vertical;
  min-height: 80px;
}
.hero__form-submit {
  margin-top: 8px;
  padding: 16px 36px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.hero__form-submit:hover {
  background: var(--cream);
  color: var(--ink);
}
.hero__form-submit:disabled {
  background: var(--t3);
  color: var(--cream);
  cursor: default;
}

/* Repair contact block */
.hero__repair-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--t2);
  width: 100%;
}
.hero__repair-contact > span {
  font-size: 13px;
  color: var(--cream-mute);
  letter-spacing: 0.04em;
}
.hero__repair-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.hero__repair-phone:hover {
  color: var(--red);
}

/* Product list items */
.hero__split.is-list {
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero__product {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(242, 231, 233, 0.12);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream-dim);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__product.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA button (S'y rendre) */
.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 16px 36px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.2s var(--ease);
}
.hero__cta-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__cta-btn:hover {
  background: var(--cream);
  color: var(--ink);
}
/* Logo row with back button */
.hero__logo-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  transform: translateY(3vh);
}
.hero__back {
  position: absolute;
  right: calc(100% + 60px);
  top: 50%;
  translate: 0 -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--t4);
  border-radius: var(--radius);
  background: var(--t1);
  cursor: pointer;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__back.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.hero__back:hover {
  background: var(--t2);
  border-color: var(--cream);
  color: var(--cream);
}
.hero__back svg {
  width: 22px;
  height: 22px;
}
/* Mobile : la flèche retour sortait de l'écran (right: calc(100% + 60px)).
   position:fixed inutilisable ici — .hero__logo-row a un transform donc il devient
   le bloc conteneur du fixed. On reste en absolute, placé au-dessus à gauche du logo. */
@media (max-width: 600px) {
  .hero__back {
    right: auto;
    left: 0;
    top: -54px;
    translate: 0;
    width: 42px;
    height: 42px;
  }
  .hero__back svg { width: 20px; height: 20px; }
}

/* "co" — partie gauche (rouge) */
.loader__left {
  overflow: hidden;
  width: 33%;
  flex-shrink: 0;
  transform: translateX(-60px);
  animation: loader-left 1s 0.4s var(--ease) forwards;
}
.loader__left img {
  width: calc(100% / 0.33);
  max-width: none;
  display: block;
}

/* "nnect" — partie droite (blanche) */
.loader__right {
  overflow: hidden;
  flex: 1;
  transform: translateX(60px);
  animation: loader-right 1s 0.4s var(--ease) forwards;
}
.loader__right img {
  width: calc(100% / 0.67);
  max-width: none;
  margin-left: -49.25%;
  display: block;
}

/* Trait rouge central */
.loader__line {
  width: 60px;
  height: 7px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
  animation: loader-line 1s 0.4s var(--ease) forwards;
}

@keyframes loader-left {
  to { transform: translateX(0); }
}
@keyframes loader-right {
  to { transform: translateX(0); }
}
@keyframes loader-line {
  0% { width: 60px; opacity: 1; }
  80% { width: 0; opacity: 1; }
  100% { width: 0; opacity: 0; }
}

body {
  font-family: var(--font-sans);
  font-weight: 800;
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }

/* =====================  Hero scroll indicator  ============ */

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollIn 0.6s 2.6s var(--ease) forwards;
  transition: opacity 0.4s var(--ease);
}
.hero__scroll.is-hidden { opacity: 0 !important; }
.hero__scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.hero__scroll svg {
  width: 20px;
  height: 20px;
  color: var(--cream-mute);
  animation: scrollBounce 1.6s 3s var(--ease) infinite;
}

@keyframes scrollIn {
  to { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =====================  Typographie  ===================== */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 0.92;
  font-size: clamp(48px, 9vw, 160px);
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--red);
  letter-spacing: 0.05em;
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.95;
  font-size: clamp(40px, 6vw, 96px);
}
h2.section-title em {
  letter-spacing: 0.05em;
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.lead {
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--cream-dim);
  max-width: 60ch;
  line-height: 1.55;
}

/* =====================  Container  ===================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section { padding: clamp(60px, 8vw, 120px) 0; }

/* =====================  Navigation  ===================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.is-scrolled {
  color: transparent;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.nav__logo em { font-style: italic; color: var(--red); }
.nav__logo-spacer {
  width: 90px;
}
.nav__menu {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__menu a {
  color: var(--cream-dim);
  transition: color 0.2s var(--ease);
}
.nav__menu a:hover { color: var(--cream); }
.nav__cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__cta:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}
@media (max-width: 900px) {
  .nav__menu { display: none; }
}

/* =====================  Hero — centered hub  ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: clip;
  overflow-clip-margin: 0px;
  background: transparent;
}
.hero.no-clip { overflow: visible; }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.58) 0%, rgba(10,10,10,0.38) 50%, #0a0a0a 100%);
  z-index: 1;
}
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
  flex: 1;
  padding: 60px 28px 48px;
}

.hero__logo {
  width: clamp(240px, 35vw, 480px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.4));
}

.hero__subtitle {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Split boxes — inline buttons, SVG above text */
.hero__split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.hero__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 48px;
  border: none;
  border-radius: 0;
  transition: transform 0.3s var(--ease);
}
.hero__box:hover {
  transform: translateY(-4px);
}
.hero__box img {
  height: auto;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s var(--ease);
}
/* Balance visuelle : pro a du padding dans son viewBox (lettres ~73% de la boîte),
   connect&vous remplit la sienne. Pour une hauteur de lettres VISIBLE égale,
   boutique = pro × 1.18. */
.hero__box--boutique img { width: clamp(179px, 47vw, 245px); }
.hero__box--pro img       { width: clamp(152px, 40vw, 208px); }
.hero__box:hover img {
  transform: scale(1.06);
}
.hero__box span {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.hero__box:hover span { color: var(--cream); }

@media (max-width: 600px) {
  .hero__split { flex-direction: column; align-items: center; }
  .hero__box { width: 100%; max-width: 340px; padding: 28px 24px; }
}


/* =====================  Mouse glow  ===================== */

.mouse-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.5s var(--ease);
  background: radial-gradient(
    circle 900px at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(238, 42, 36, 0.10) 0%,
    rgba(196, 32, 28, 0.05) 25%,
    rgba(140, 28, 22, 0.02) 50%,
    transparent 70%
  );
}
.mouse-glow.is-active {
  opacity: 1;
}

/* =====================  Band stats  ===================== */

.band {
  border: none;
  padding: 48px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: end;
}
.stat__n {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.8vw, 58px);
  letter-spacing: 0.05em;
  line-height: 0.95;
}
.stat__n em { color: var(--red); font-style: normal; }
.stat__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .band__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* =====================  Section — Manifesto  ===================== */

.manifesto { position: relative; }
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.manifesto__title {
  position: sticky;
  top: 120px;
}
.manifesto__body p + p { margin-top: 24px; }
.manifesto__body p {
  font-size: clamp(17px, 1.3vw, 21px);
  color: var(--cream-dim);
  line-height: 1.55;
}
.manifesto__body p strong { color: var(--cream); font-weight: 500; }
@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__title { position: static; }
}

/* =====================  Locations  ===================== */

.locations { background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink-2) 60%, var(--ink) 100%); }
.locations__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.locations__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
  gap: 24px;
}
.loc {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 300px;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.loc:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.loc__city {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.loc__city em { color: var(--red); font-style: italic; letter-spacing: 0.05em; }
.loc__addr {
  color: var(--cream-dim);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.loc__flag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.loc__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 10px 22px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.3s var(--ease);
}
.loc__cta svg {
  width: 14px;
  height: 14px;
}
.loc__cta:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .locations__grid { grid-template-columns: 1fr; }
}

/* =====================  Services (universes)  ===================== */

.universes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.uni {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.uni::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(238, 42, 36, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.uni:hover::after { opacity: 1; }
.uni:hover { transform: translateY(-4px); }

.uni__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.uni__tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.uni__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.uni__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: -8px;
}
.uni__h em { color: var(--red); font-style: italic; letter-spacing: 0.05em; }
.uni__desc { color: var(--cream-dim); line-height: 1.6; }

.uni__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 8px;
}
.uni__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--cream);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.uni__list li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-3px);
}

.uni__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease);
}
.uni__cta:hover { background: var(--red); color: var(--cream); }
.uni__cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .universes__grid { grid-template-columns: 1fr; }
  .uni__list { grid-template-columns: 1fr; }
}

/* =====================  Lab — vidéos carrousel  ===================== */

.lab {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 60px);
  position: relative;
}
.lab__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}
.lab__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lab__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--cream);
}
.lab__title em {
  font-style: italic;
  color: var(--red);
  letter-spacing: 0.05em;
}
.lab__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.lab__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--t4);
  border-radius: var(--radius);
  background: var(--t1);
  cursor: pointer;
  color: var(--cream);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lab__arrow:hover {
  background: var(--t2);
  border-color: var(--cream);
}
.lab__arrow svg {
  width: 28px;
  height: 28px;
}

/* Carousel */
.lab__carousel {
  overflow-x: clip;
  overflow-y: visible;
}
.lab__track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s var(--ease);
}
.lab__card {
  flex: 0 0 calc((100% - 64px) / 3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  text-align: left;
  color: var(--cream);
  min-width: 0;
  position: relative;
}
@media (max-width: 900px) {
  .lab__card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 600px) {
  .lab__card { flex: 0 0 88%; }
}

.lab__thumb-wrap {
  position: relative;
  margin-bottom: 28px;
}
.lab__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 3px solid rgba(238, 42, 36, 0.5);
  background: var(--ink-2);
  overflow: hidden;
}
.lab__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: inherit;
  z-index: 1;
  transition: background 0.4s var(--ease);
}
.lab__card:hover .lab__thumb::after {
  background: rgba(0, 0, 0, 0.4);
}
.lab__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.lab__card:hover .lab__thumb img {
  transform: scale(1.06);
}
.lab__play {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.lab__play svg {
  width: 30px;
  height: 30px;
  margin-left: 2px;
}
.lab__card:hover .lab__play {
  transform: translateX(-50%) scale(1.15);
  background: var(--cream);
  color: var(--ink);
}

/* Video player modal */
.lab-player {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lab-player.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lab-player__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lab-player__wrap {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(238, 42, 36, 0.5);
  background: var(--ink-2);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease);
}
.lab-player.is-open .lab-player__wrap {
  transform: scale(1);
}
.lab-player__wrap iframe,
.lab-player__wrap #labPlayerContent {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lab-player__close {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--t4);
  border-radius: var(--radius-sm);
  background: var(--t1);
  cursor: pointer;
  color: var(--cream);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lab-player__close:hover {
  background: var(--t2);
  border-color: var(--cream);
}
.lab-player__close svg {
  width: 18px;
  height: 18px;
}
.lab__card-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: color 0.3s var(--ease);
  overflow: hidden;
  word-break: break-word;
}
.lab__card:hover .lab__card-title {
  color: #fff;
}

/* =====================  Clients logos  ===================== */

.clients {
  padding-bottom: 40px;
}
.clients__head {
  text-align: left;
  max-width: 640px;
  margin-bottom: 48px;
}
.clients__marquee {
  overflow: hidden;
  border: none;
  padding: 40px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  cursor: grab;
}
.clients__marquee.is-dragging {
  cursor: grabbing;
}
.clients__marquee img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.clients__track {
  display: inline-flex;
  align-items: center;
  gap: 72px;
  animation: clients-scroll 60s linear infinite;
  padding-right: 72px;
  white-space: nowrap;
}
.clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.clients__item:hover {
  transform: translateY(-3px);
}
.clients__logo {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 14px;
  box-sizing: content-box;
  opacity: 0.88;
  transition: opacity 0.3s var(--ease);
  flex-shrink: 0;
}
.clients__item:hover .clients__logo {
  opacity: 1;
}
.clients__name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-mute);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .clients__logo { height: 32px; max-width: 110px; padding: 12px 18px; }
}
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .clients__track { gap: 48px; padding-right: 48px; }
}

/* =====================  Reviews (Elfsight)  ===================== */

.reviews {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 42, 36, 0.04) 50%, transparent 100%);
}
.reviews__head {
  text-align: left;
  max-width: 720px;
  margin: 0 0 56px;
}
.reviews__head .lead {
  margin: 20px 0 0;
  max-width: 560px;
}
.reviews__widget {
  min-height: 420px;
  border-radius: var(--radius-lg);
  padding: 8px;
}
.reviews__widget :is(*)  { color: inherit; }

/* =====================  Pro contact form  ===================== */

.pro-contact {
  padding: clamp(60px, 8vw, 120px) 0;
  background: linear-gradient(180deg, transparent 0%, var(--t1) 50%, transparent 100%);
}
.pro-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.pro-contact__intro .section-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}
.pro-contact__intro .lead {
  margin-top: 24px;
  max-width: 42ch;
}
.pro-contact__benefits {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pro-contact__benefits li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
}
.pro-contact__benefits li span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--t1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.pro-contact__form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pro-contact__form .field-row {
  display: flex;
  gap: 16px;
}
.pro-contact__form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.pro-contact__form input,
.pro-contact__form select,
.pro-contact__form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--t2);
  border-radius: var(--radius-sm);
  background: var(--t1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.pro-contact__form input::placeholder,
.pro-contact__form textarea::placeholder {
  color: var(--cream-mute);
}
.pro-contact__form input:focus,
.pro-contact__form select:focus,
.pro-contact__form textarea:focus {
  border-color: var(--red);
  background: var(--t2);
}
.pro-contact__form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}
.pro-contact__form select option {
  background: var(--ink);
  color: var(--cream);
}
.pro-contact__form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.pro-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border: none;
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  margin-top: 8px;
}
.pro-contact__submit:hover {
  background: #d7231e;
  transform: translateY(-2px);
}
.pro-contact__submit svg {
  width: 18px;
  height: 18px;
}
.pro-contact__submit.is-sent {
  background: #1f8f4a;
  cursor: default;
  transform: none;
}
.pro-contact__privacy {
  font-size: 12px;
  color: var(--cream-mute);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .pro-contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .pro-contact__form { padding: 28px 24px; }
  .pro-contact__form .field-row { flex-direction: column; gap: 20px; }
}

/* =====================  Footer  ===================== */

.footer {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 100%);
  border-top: 1px solid var(--line);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(238, 42, 36, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer .container { position: relative; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.footer__brand { max-width: 320px; }
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo img {
  height: 36px;
  width: auto;
}
.footer__brand p {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 34ch;
  margin: 0 0 24px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream-dim);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}
.footer__social:hover {
  color: var(--cream);
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 20px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  color: var(--cream-dim);
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s, transform 0.2s;
}
.footer__col a:hover {
  color: var(--cream);
  transform: translateX(3px);
}
.footer__addr,
.footer__hours {
  color: var(--cream-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.footer__hours {
  color: var(--cream-mute);
  font-size: 13px;
}
.footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--cream-mute);
  letter-spacing: 0.03em;
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--cream-mute);
  font-size: 12px;
}
.footer__legal a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .footer { padding: 72px 0 24px; }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { justify-content: flex-start; }
}

/* =====================  Fade-in reveal  ===================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =====================  Produits filters  ===================== */

.produits__filter {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.produits__filter:hover {
  border-color: var(--cream);
  color: var(--cream);
}
.produits__filter.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}

/* === Typo display plus bold (Satoshi) === */
.display,
.hero__title,
.hero__expand-title,
.uni__h,
.lab__title,
.loc__city { font-weight: 600; }
h2.section-title em { font-weight: 600; }
.stat__n { font-weight: 500; }

/* === Icônes 3D boutons portail hero (model-viewer / glb) === */
.hero__ic3d {
  display: block;
  width: clamp(78px, 8vw, 112px);
  height: clamp(78px, 8vw, 112px);
  margin: 0 auto 4px;
}
.hero__mv {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  cursor: grab;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}
.hero__mv:active { cursor: grabbing; }

/* === Thème clair / sombre === */
:root[data-theme="light"] {
  --ink: #f4f3f1;
  --ink-2: #ffffff;
  --ink-3: #eae8e4;
  --line: rgba(0, 0, 0, 0.14);
  --cream: #0f0f0f;
  --cream-dim: rgba(15, 15, 15, 0.85);
  --cream-mute: rgba(15, 15, 15, 0.58);
}
/* Hero garde son rendu sombre (vidéo de fond) dans les deux thèmes */
:root[data-theme="light"] .hero {
  --cream: #ffffff;
  --cream-dim: rgba(255, 255, 255, 0.85);
  --cream-mute: rgba(255, 255, 255, 0.65);
  --ink: #0a0a0a;
  --line: var(--t2);
}
body { transition: background 0.45s var(--ease), color 0.45s var(--ease); }

/* Bouton toggle thème */
.theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 400;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.theme-toggle:hover { transform: scale(1.08); border-color: var(--red); }
.theme-toggle svg { width: 21px; height: 21px; }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ic-moon { display: none; }
:root[data-theme="light"] .theme-toggle .ic-sun { display: block; }


/* === Light theme — overlays/tints fix === */
:root[data-theme="light"] {
  --t1: rgba(15, 15, 15, 0.04);
  --t2: rgba(15, 15, 15, 0.08);
  --t3: rgba(15, 15, 15, 0.16);
  --t4: rgba(15, 15, 15, 0.26);
}
:root[data-theme="light"] .hero {
  --t1: rgba(255, 255, 255, 0.05);
  --t2: rgba(255, 255, 255, 0.10);
  --t3: rgba(255, 255, 255, 0.18);
  --t4: rgba(255, 255, 255, 0.40);
}

/* === Avis Google (Elfsight) — carte sombre + texte blanc, les 2 thèmes === */
.elfsight-app-3380b0f8-27f3-40a5-ab55-b222486d5559 {
  background: #111418;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 10px;
}
.elfsight-app-3380b0f8-27f3-40a5-ab55-b222486d5559 *:not(svg):not(path):not(img) {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}
.elfsight-app-3380b0f8-27f3-40a5-ab55-b222486d5559 a {
  color: #ffffff !important;
}

/* === Thème clair : texte sur thumbnails (lab) reste blanc (overlay photo sombre) === */
:root[data-theme="light"] .lab__card-title { color: #fff !important; }
:root[data-theme="light"] .lab__card:hover .lab__card-title { color: #fff !important; }



/* ===== golive-fixes-2026-07-13 ===== */
/* Aucun soulignage au survol, nulle part (neutralise le a:hover Bootstrap/Odoo) */
a:hover, a:focus { text-decoration: none !important; }
/* Hero mobile : clip garanti + parallaxe neutralisée (la video debordait en haut/bas) */
@media (max-width: 820px) {
  .hero { overflow: hidden; }
  .hero__bg { transform: none !important; }
}
