@font-face {
  font-family: 'Montserrat';
  src: url('/montserrat-variable.ttf') format('truetype-variations');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --iad: #00b4ec;
  --blue-50: #e9fcff;
  --blue-100: #cdf7ff;
  --blue-200: #95ebff;
  --blue-300: #5ddeff;
  --blue-400: #25cfff;
  --blue-600: #00a1d8;
  --blue-700: #008ec3;
  --blue-800: #007daf;
  --blue-900: #006b9a;
  --blue-950: #006390;
  --iad-deep: #007daf;
  --ink: #000000;
  --ink-2: #3c4a5f;
  --coral: #ea584a;
  --paper: #ffffff;
  --mist: #e9fcff;
  --line: #cdf7ff;
  --muted: #3c4a5f;
  --shadow: 0 24px 70px rgba(0, 99, 144, 0.16);
  --radius: 28px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.wrap { width: var(--wrap); margin-inline: auto; }

.topbar {
  color: white;
  background: var(--blue-950);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topbar .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a { color: white; text-decoration: none; }
.topbar a:hover { color: var(--blue-200); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(0, 142, 195, 0.22);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img { width: 132px; height: auto; flex: 0 0 auto; }

.brand-copy {
  display: grid;
  min-height: 32px;
  align-content: center;
  padding-left: 16px;
  border-left: 1px solid var(--blue-200);
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links > a { text-decoration: none; }
.nav-links > a:not(.btn):hover { color: var(--iad-deep); }

.languages {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blue-50);
}

.languages a {
  min-width: 35px;
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.languages a[aria-current='page'] { color: white; background: var(--blue-950); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .text-link:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(234, 88, 74, 0.45); outline-offset: 3px; }
.btn-primary { color: #fff; background: var(--blue-900); box-shadow: 0 12px 30px rgba(0, 107, 154, 0.25); }
.btn-primary:hover { background: var(--blue-950); }
.btn-primary:active { color: var(--ink); background: var(--iad); }
.btn-blue { color: var(--ink); background: var(--iad); box-shadow: 0 12px 26px rgba(0, 180, 236, 0.26); }
.btn-blue:hover { background: var(--blue-400); }
.btn-blue:active { background: var(--blue-600); }
.btn-outline { border-color: var(--iad); color: var(--ink); background: white; }
.btn-outline:hover { border-color: var(--blue-700); background: var(--blue-50); }
.btn-outline:active { background: var(--blue-200); }
.btn-small { min-height: 42px; padding: 10px 18px; }

.iad-symbol {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  color: var(--iad);
}

.btn-primary .iad-symbol { color: white; }
.btn-blue .iad-symbol { color: var(--blue-950); }
.btn-outline .iad-symbol { color: var(--iad); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(circle at 7% 22%, rgba(0, 180, 236, 0.11), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, var(--blue-50) 58%, var(--blue-50) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  right: -105px;
  bottom: -92px;
  width: 430px;
  height: 190px;
  border: 54px solid rgba(0, 180, 236, 0.13);
  border-radius: 999px;
  transform: rotate(10deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.75fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--iad-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(2.65rem, 5.5vw, 5.5rem);
  font-weight: 900;
}

h1 .accent, h2 .accent { color: var(--iad-deep); }

.hero-copy > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.microcopy { margin-top: 18px; color: var(--muted); font-size: 0.82rem; font-weight: 600; }

.portrait-wrap { position: relative; isolation: isolate; max-width: 400px; justify-self: end; }

.portrait-wrap::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 18px -18px -8px 18px;
  border-radius: 999px;
  background: var(--blue-200);
  transform: rotate(7deg);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 10px solid white;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow);
}

.portrait-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 2px solid var(--blue-100);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.portrait-label {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 30px;
  max-width: 275px;
  padding: 16px 20px;
  border: 2px solid var(--blue-200);
  border-left: 7px solid var(--coral);
  border-radius: 999px;
  background: white;
  box-shadow: 0 14px 35px rgba(0, 99, 144, 0.18);
}

.portrait-label strong { display: block; font-size: 1rem; }
.portrait-label span { display: block; margin-top: 2px; color: var(--muted); font-size: 0.74rem; font-weight: 600; }

.proof-band { color: white; background: var(--blue-950); }

.proof-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding-block: 28px;
}

.proof-intro { margin: 0; font-size: 1.04rem; }
.proof-intro strong { color: var(--blue-200); }
.proof-stat { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, 0.22); }
.proof-stat strong { display: block; color: var(--blue-200); font-size: clamp(1.75rem, 3vw, 2.6rem); line-height: 1; }
.proof-stat span { display: block; margin-top: 8px; color: var(--blue-100); font-size: 0.78rem; line-height: 1.35; }

.section { padding-block: clamp(76px, 9vw, 126px); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2, .manager-copy h2, .contact-copy h2 {
  margin-top: 15px;
  font-size: clamp(2.15rem, 4.3vw, 4.25rem);
  font-weight: 800;
}

.section-heading > p { margin: 0; color: var(--muted); }

.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.journey-card {
  position: relative;
  min-height: 315px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 36px rgba(0, 99, 144, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.journey-card:hover { transform: translateY(-5px); border-color: var(--iad); }
.journey-card .icon {
  display: grid;
  width: 64px;
  height: 48px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(0, 180, 236, 0.24);
  border-radius: 999px;
  background: var(--blue-50);
  box-shadow: 0 9px 22px rgba(0, 180, 236, 0.12);
  transform: rotate(5deg);
}
.journey-card .icon .iad-symbol { width: 31px; height: 31px; }
.journey-card .number { color: var(--iad-deep); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.journey-card h3 { margin-top: 12px; font-size: 1.45rem; }
.journey-card p { margin: 16px 0 0; color: var(--muted); font-size: 1rem; }

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  text-underline-offset: 4px;
  font-weight: 800;
}

.support-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--blue-950);
}

.support-section::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, transparent 0 22px, #fff 22px 24px);
}

.support-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.support-copy { position: sticky; top: 135px; }
.support-copy .eyebrow { color: white; }
.support-copy h2 { margin-top: 16px; font-size: clamp(2.35rem, 4.5vw, 4.5rem); }
.support-copy p { max-width: 520px; color: var(--blue-50); }
.support-section .btn-primary { color: var(--ink); background: var(--iad); }
.support-section .btn-primary:hover { background: var(--blue-400); }

.support-list { border-top: 1px solid rgba(255, 255, 255, 0.3); }

.support-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.support-item > strong {
  display: grid;
  justify-items: start;
  gap: 5px;
  color: var(--blue-200);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.support-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  letter-spacing: 0;
  transform: rotate(5deg);
}
.support-symbol .iad-symbol { width: 25px; height: 25px; }
.support-item h3 { font-size: 1.35rem; }
.support-item p { margin: 9px 0 0; color: var(--blue-50); font-size: 1rem; }

.manager-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(48px, 8vw, 100px); align-items: center; }

.manager-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 8px solid var(--blue-50);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.manager-photo::after {
  content: 'FR · ES · CA';
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  border: 2px solid var(--coral);
  border-radius: 999px 0 0 999px;
  color: var(--ink);
  background: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.manager-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.manager-copy p { color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.tags span { padding: 8px 13px; border-radius: 999px; color: white; background: var(--ink); font-size: 0.77rem; font-weight: 800; text-transform: uppercase; }

.model-section { background: var(--mist); }

.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.model-card { padding: clamp(30px, 4vw, 48px); border-radius: var(--radius); background: white; }
.model-card:first-child { color: white; background: var(--blue-950); }
.model-card .kicker { color: var(--iad-deep); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.model-card:first-child .kicker { color: var(--blue-200); }
.model-card h3 { margin-top: 16px; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.model-card p { margin: 18px 0 0; color: var(--muted); }
.model-card:first-child p { color: var(--blue-100); }
.notice { margin: 22px 0 0; color: var(--muted); font-size: 0.78rem; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; counter-reset: steps; }
.step { position: relative; padding: 8px 36px 8px 0; counter-increment: steps; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 31px; right: 18px; width: 54px; height: 2px; background: var(--line); }
.step-number { display: grid; width: 64px; height: 48px; place-items: center; border: 1px solid var(--blue-300); border-radius: 999px; color: var(--ink); background: var(--blue-200); font-size: 1.4rem; font-weight: 800; box-shadow: 0 9px 22px rgba(0, 180, 236, 0.2); transform: rotate(5deg); }
.step-number .iad-symbol { width: 29px; height: 29px; color: var(--blue-950); }
.step h3 { margin-top: 22px; font-size: 1.3rem; }
.step p { color: var(--muted); font-size: 1rem; }

.faq { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; align-items: start; }
.faq-intro h2 { margin-top: 16px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; cursor: pointer; padding: 24px 42px 24px 0; list-style: none; font-weight: 800; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; top: 18px; right: 4px; color: var(--iad-deep); font-size: 1.7rem; font-weight: 500; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin: 0; padding: 0 40px 24px 0; color: var(--muted); }

.contact-section { padding-block: clamp(70px, 8vw, 110px); color: white; background: var(--blue-950); }
.contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-copy .eyebrow { color: var(--blue-200); }
.contact-copy p { color: var(--blue-100); }
.direct-contact { display: grid; gap: 10px; margin-top: 28px; }
.direct-contact a { width: fit-content; color: white; text-decoration-color: var(--iad); text-underline-offset: 5px; font-weight: 700; }

.contact-form { padding: clamp(28px, 4vw, 46px); border-radius: var(--radius); color: var(--ink); background: white; }
.contact-form h3 { font-size: 1.65rem; }
.contact-form > p { margin: 9px 0 24px; color: var(--muted); font-size: 0.86rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.77rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--blue-100); border-radius: 12px; padding: 13px 14px; color: var(--ink); background: white; }
.field textarea { min-height: 120px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: var(--muted); font-size: 0.75rem; }
.consent input { width: 17px; height: 17px; margin-top: 3px; flex: 0 0 auto; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 0.72rem; }

.site-footer { padding: 44px 0 30px; color: var(--blue-50); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 156px; padding: 10px 12px; border-radius: 999px; background: white; }
.footer-brand strong { display: block; color: white; }
.footer-brand span { display: block; font-size: 0.76rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-content: start; gap: 10px 22px; }
.footer-links a { font-size: 0.78rem; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.15); color: var(--blue-200); font-size: 0.7rem; }

.legal-hero { padding: 70px 0; color: white; background: var(--blue-950); }
.legal-hero h1 { margin-top: 16px; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-hero .eyebrow { color: white; }
.legal-content { width: min(820px, calc(100% - 40px)); margin-inline: auto; padding-block: 70px 100px; }
.legal-content h2 { margin-top: 42px; font-size: 1.55rem; letter-spacing: -0.025em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-2); }
.legal-content a { color: var(--iad-deep); text-underline-offset: 4px; }
.legal-note { margin-top: 28px; padding: 20px 22px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; background: var(--mist); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 8px 4px; }
  .languages { align-self: flex-start; }
}

@media (max-width: 860px) {
  :root { --wrap: min(100% - 32px, 720px); }
  .topbar span { display: none; }
  .topbar .wrap { justify-content: center; }
  .hero { background: linear-gradient(180deg, white 0%, white 56%, var(--blue-50) 56%, var(--blue-50) 100%); }
  .hero-grid, .support-grid, .manager-grid, .contact-grid, .faq { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .portrait-wrap { width: min(420px, 88%); justify-self: center; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-intro { grid-column: 1 / -1; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .cards-3 { grid-template-columns: 1fr; }
  .journey-card { min-height: 0; }
  .journey-card .icon { margin-bottom: 25px; }
  .support-copy { position: static; }
  .model-grid { grid-template-columns: 1fr; }
  .faq { gap: 34px; }
}

@media (max-width: 640px) {
  :root { --wrap: min(100% - 24px, 560px); --radius: 22px; }
  body { font-size: 16px; }
  .nav { min-height: 74px; }
  .brand { gap: 10px; }
  .brand img { width: 102px; }
  .brand-copy { min-height: 26px; padding-left: 10px; }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: 0.9rem; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .hero-actions .btn { width: 100%; }
  .portrait-label { right: -8px; bottom: 18px; }
  .proof-grid { grid-template-columns: 1fr; gap: 0; padding-block: 26px; }
  .proof-intro { grid-column: auto; padding-bottom: 20px; }
  .proof-stat { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding-right: 0; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
}


/* En-tête Team Lucky : alignement stable à chaque largeur. */
.site-header { background:#fff; backdrop-filter:none; border-bottom:1px solid #d6e3e8; }
.site-header .wrap { width:min(1320px, calc(100% - 48px)); }
.site-header .nav { min-height:100px; gap:28px; padding-block:8px; }
.site-header .brand { display:flex; gap:14px; color:#000; flex:none; }
.site-header .brand > img { width:88px; height:64px; object-fit:contain; flex:none; }
.site-header .brand > img.team-logo { width:80px; height:80px; }
.team-signature { display:block; flex:none; color:#263d49; font-size:12px; line-height:1.5; font-weight:400; }
.team-signature strong { display:block; font-size:13px; font-weight:700; white-space:nowrap; }





.site-header .nav-links { display:flex; position:static; flex:0 1 auto; min-width:0; flex-direction:row; flex-wrap:nowrap; justify-content:flex-end; align-items:center; gap:22px; padding:0; border:0; border-radius:0; box-shadow:none; font-size:12px; font-weight:600; }
.site-header .nav-links > a { white-space:nowrap; }
.site-header .nav-links > a:not(.btn) { padding:12px 0; }
.site-header .nav-links > .btn { background:#006390; color:#fff; box-shadow:none; border:1px solid transparent; padding:13px 18px; font-size:12px; font-style:normal; gap:8px; }
.site-header .nav-links > .btn:hover { background:#006390; color:#fff; text-decoration:underline; transform:none; }
.site-header .nav-links > .btn:active { background:#00b4ec; color:#000; }
.site-header .nav-links > .btn .iad-symbol { color:inherit; width:16px; height:16px; }
.site-header .menu-toggle { display:none; border-color:#007daf; font-weight:600; }
.site-header a:focus-visible { outline:3px solid #007daf; outline-offset:4px; }
html { scroll-padding-top:160px; }
@media (max-width:1279px) {
  .site-header .menu-toggle { display:block; flex:none; }
  .site-header .nav-links { display:none; position:absolute; top:100%; left:0; right:0; background:#fff; padding:20px 24px; box-shadow:0 8px 12px #00000015; flex-direction:column; align-items:stretch; gap:0; font-size:15px; max-height:calc(100dvh - 145px); overflow-y:auto; }
  .site-header .nav-links.open { display:flex; }
  .site-header .nav-links > a:not(.btn) { padding:14px 0; border-bottom:1px solid #e8eef1; }
  .site-header .nav-links > .btn { margin-top:16px; min-height:46px; font-size:14px; }
}
@media (max-width:600px) {
  .site-header .wrap { width:calc(100% - 24px); }
  .site-header .nav { min-height:88px; gap:8px; }
  .site-header .brand { gap:8px; }
  .site-header .brand > img { width:48px; height:44px; }
  .site-header .brand > img.team-logo { width:60px; height:60px; }
  .team-signature { font-size:11px; }
  .team-signature strong { font-size:11px; }
  .site-header .menu-toggle { padding:9px 12px; font-size:12px; }
  
  
  .topbar .wrap { justify-content:center; min-height:32px; }
  .topbar a { font-size:10px; letter-spacing:0; white-space:nowrap; }
  html { scroll-padding-top:145px; }
}

/* Sélecteur de langues : mêmes dimensions et états que Tribu Immo. */
.language-bar{background:#eafbff;border-bottom:1px solid #d6e3e8;font-size:13px;line-height:1.5}
.site-header .language-inner{width:100%;max-width:1240px;margin-inline:auto;display:flex;justify-content:flex-end;align-items:center;gap:6px 16px;flex-wrap:wrap;padding:8px 36px}
.language-bar a{color:#005c7e;text-decoration:none;padding:4px 0;white-space:nowrap}
.language-bar a:hover,.language-bar a:focus-visible,.language-bar a[aria-current]{text-decoration:underline;text-underline-offset:4px}
.language-bar a[aria-current]{font-weight:800}
@media(max-width:1050px){.site-header .language-inner{padding-inline:25px}}
@media(max-width:800px){.site-header .language-inner{justify-content:center;gap:4px 14px}.language-inner>span{display:none}}
@media(max-width:420px){.site-header .language-inner{padding-inline:20px}}

/* Six langues, avec séparation lisible sur tous les écrans. */
.site-header .language-inner { gap:8px 18px; min-height:48px; }
.language-bar a { display:inline-flex; align-items:center; min-height:32px; padding:4px 6px; }
.language-bar a[aria-current] { color:#006390; font-weight:800; }
main h1,main h2,main h3 { overflow-wrap:break-word; hyphens:auto; }
@media(max-width:600px) {
  .site-header .language-inner { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:2px 8px; padding:6px 12px; }
  .language-bar a { justify-content:center; }
  .site-header .nav-links { max-height:calc(100dvh - 166px); }
  html { scroll-padding-top:175px; }
}

/* Les textes traduits restent dans leur colonne, y compris les mots longs. */
.hero-grid > *, .section-heading > *, .model-grid > *, .support-grid > *, .manager-grid > *, .contact-grid > * { min-width:0; }
main h1, main h2, main h3 { overflow-wrap:anywhere; }
.eyebrow, .kicker { max-width:100%; overflow-wrap:anywhere; }
.hero-actions .btn { max-width:100%; min-width:0; }
@media(max-width:860px) { .hero-grid { grid-template-columns:minmax(0,1fr); } }
