:root {
  --bg: #07090c;
  --bg-soft: #0b0e12;
  --panel: #101318;
  --panel-2: #15191f;
  --text: #f7f7f8;
  --muted: #a9adb5;
  --red: #ef0b1b;
  --red-dark: #bd0010;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius: 20px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 15%, rgba(239, 11, 27, 0.05), transparent 27rem),
    linear-gradient(180deg, #080a0e 0%, #05070a 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--red); color: white; }
:focus-visible { outline: 3px solid rgba(255,255,255,.92); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  background: white;
  color: #08090b;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.prototype-bar {
  min-height: 26px;
  padding: 5px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(90deg, #d90012, #f20b1d 50%, #d90012);
  color: white;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { height: 72px; box-shadow: 0 14px 40px rgba(0,0,0,.32); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: 230px; }
.swiss-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  border-radius: 7px;
  background: linear-gradient(145deg, #ff1528, #d80012);
  box-shadow: inset 0 1px rgba(255,255,255,.16), 0 10px 28px rgba(239,11,27,.2);
}
.swiss-mark::before, .swiss-mark::after, .swiss-mark span::before, .swiss-mark span::after { content: ""; position: absolute; background: white; border-radius: 1px; }
.swiss-mark::before { width: 23px; height: 8px; }
.swiss-mark::after { width: 8px; height: 23px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 6px; color: #d7d8da; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .025em; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.8vw, 28px); }
.main-nav a {
  position: relative;
  padding: 12px 0;
  text-decoration: none;
  color: #f1f1f2;
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: white; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 19px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(135deg, #ff1326, #e50014); color: white; box-shadow: 0 12px 28px rgba(239,11,27,.18); }
.button--primary:hover { box-shadow: 0 16px 36px rgba(239,11,27,.28); }
.button--light { background: white; color: #08090b; padding-inline: 22px; }
.button--light span { color: var(--red); font-size: 18px; }
.button--ghost { border-color: rgba(255,255,255,.42); background: rgba(7,9,12,.42); color: white; }
.button--ghost:hover { border-color: white; background: rgba(255,255,255,.08); }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 500px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(90deg, #06080b 0%, rgba(6,8,11,.95) 28%, rgba(6,8,11,.55) 60%, rgba(6,8,11,.72) 100%),
    url("assets/hero-motion.jpg");
  background-size: cover;
  background-position: center 43%;
  filter: saturate(.7) contrast(1.08) brightness(.68);
  transform: scale(1.03);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(255,255,255,.016) 53px 54px),
    linear-gradient(180deg, rgba(3,5,7,.05), rgba(3,5,7,.55));
  pointer-events: none;
}
.hero-car {
  position: absolute;
  z-index: -1;
  width: min(785px, 63vw);
  left: 29%;
  bottom: 14px;
  opacity: .92;
  filter: contrast(1.08) saturate(.83) brightness(.88) drop-shadow(0 28px 35px rgba(0,0,0,.55));
}
.hero-glow {
  position: absolute;
  z-index: -2;
  right: 8%;
  bottom: -70px;
  width: 480px;
  height: 260px;
  border-radius: 50%;
  background: rgba(239,11,27,.15);
  filter: blur(75px);
}
.hero-layout { min-height: 500px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: center; padding-block: 36px 58px; }
.hero-copy { max-width: 580px; position: relative; z-index: 3; }
.eyebrow-pill {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16,19,24,.82);
  color: #e7e7e8;
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}
.eyebrow-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(239,11,27,.08); }
.hero h1 { margin: 0; max-width: 590px; font-size: clamp(48px, 5.1vw, 68px); line-height: .94; letter-spacing: -.055em; font-weight: 900; text-wrap: balance; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-copy > p { max-width: 470px; margin: 20px 0 0; color: #d3d5d9; font-size: 15px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 29px; }

.portrait-card { align-self: stretch; display: flex; flex-direction: column; justify-content: center; margin: 0; position: relative; z-index: 4; }
.portrait-card img { width: 100%; border-radius: 23px; border: 1px solid rgba(255,255,255,.2); box-shadow: var(--shadow); background: #15181c; }
.portrait-card figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.stats-wrap { position: relative; z-index: 8; margin-top: -34px; }
.stats-panel {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 14px 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(18,21,27,.98), rgba(10,12,16,.98));
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.stat-item { min-width: 0; display: flex; align-items: center; gap: 17px; padding: 5px 23px; border-right: 1px solid var(--line); }
.stat-item:first-child { padding-left: 8px; }
.stat-item:last-child { border-right: 0; }
.stat-item svg { width: 47px; height: 47px; flex: 0 0 auto; fill: none; stroke: var(--red); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.stat-item div { min-width: 0; display: flex; flex-direction: column; }
.stat-item strong { font-size: 21px; line-height: 1; letter-spacing: -.025em; }
.stat-item span { max-width: 105px; margin-top: 6px; color: #d1d3d7; font-size: 9px; line-height: 1.25; font-weight: 700; text-transform: uppercase; }

.section { padding-block: 64px; }
.section-kicker { margin: 0 0 9px; color: var(--red); font-size: 10px; line-height: 1; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; }
.section h2 { margin: 0; font-size: clamp(30px, 3vw, 39px); line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.section-grid { display: grid; grid-template-columns: minmax(0, 3.15fr) minmax(250px, 1fr); gap: 46px; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 24px; }
.section-heading-row > p { max-width: 260px; margin: 0 0 3px; color: var(--muted); font-size: 12px; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.service-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 16px 0;
  background: linear-gradient(155deg, rgba(18,21,26,.97), rgba(7,9,12,.98));
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 78px;
  height: 78px;
  right: -37px;
  bottom: -37px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f41020, #b70010);
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.3); box-shadow: 0 22px 44px rgba(0,0,0,.32); }
.service-card:hover::after { transform: scale(1.25); }
.service-number { color: var(--red); font-size: 10px; font-weight: 900; }
.service-card > strong { margin-top: 17px; font-size: 14px; line-height: 1.2; }
.service-copy { min-height: 50px; margin-top: 9px; color: #b9bcc2; font-size: 10.5px; line-height: 1.45; }
.service-image { position: absolute; z-index: -1; left: 0; right: 0; bottom: 0; height: 49%; overflow: hidden; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #0e1116 0%, transparent 42%, rgba(4,5,7,.2) 100%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05) brightness(.82); transition: transform .5s ease, filter .3s ease; }
.service-card:hover .service-image img { transform: scale(1.06); filter: saturate(1) contrast(1.05) brightness(.95); }
.service-more { position: absolute; z-index: 5; left: 15px; bottom: 11px; opacity: 0; transform: translateY(5px); color: white; font-size: 10px; font-weight: 800; transition: opacity .25s ease, transform .25s ease; }
.service-card:hover .service-more { opacity: 1; transform: translateY(0); }

.about-panel { padding-top: 2px; }
.about-panel h2 { font-size: clamp(31px, 3.1vw, 43px); }
.about-panel > p:not(.section-kicker) { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.text-link { margin: 16px 0 22px; padding: 0; border: 0; background: none; color: white; font-size: 11px; font-weight: 850; cursor: pointer; }
.text-link span { color: var(--red); margin-left: 5px; }
.identity-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #12151a, #0a0c10);
}
.identity-card > div:not(.identity-divider) { min-width: 0; display: flex; flex-direction: column; }
.identity-card strong { font-size: 14px; line-height: 1.1; }
.identity-card > div:first-child strong { color: var(--red); font-size: 26px; font-style: italic; letter-spacing: -.06em; }
.identity-card span { margin-top: 3px; color: var(--red); font-size: 10px; font-weight: 850; }
.identity-card small { margin-top: 9px; color: #b9bcc2; font-size: 7px; }
.identity-divider { width: 1px; height: 55px; background: var(--line); }
.identity-card svg { width: 100%; max-width: 100px; height: 28px; margin-top: 5px; fill: none; stroke: #b9bcc2; stroke-width: 1.4; }

.references-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,10,13,.58); }
.references-layout { display: grid; grid-template-columns: 185px minmax(0, 1fr) 300px; gap: 28px; align-items: stretch; }
.references-intro { padding-top: 9px; }
.references-intro h2 { font-size: 27px; line-height: 1.05; }
.filters { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.filter { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; background: transparent; color: var(--muted); font-size: 9px; font-weight: 800; cursor: pointer; }
.filter.is-active, .filter:hover { border-color: var(--red); background: rgba(239,11,27,.12); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.gallery-item {
  position: relative;
  min-height: 111px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0;
  background: #11151a;
  cursor: zoom-in;
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease;
}
.gallery-item:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.32); }
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; min-height: 111px; object-fit: cover; filter: saturate(.84) brightness(.9); transition: transform .4s ease, filter .25s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(4,5,7,.8)); }
.gallery-item span { position: absolute; z-index: 2; left: 11px; bottom: 8px; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }

.contact-card {
  align-self: start;
  min-height: 222px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-content: start;
  border-radius: 16px;
  padding: 21px;
  background:
    radial-gradient(circle at 100% 100%, rgba(94,0,7,.55), transparent 55%),
    linear-gradient(145deg, #ff1427, #df0013);
  box-shadow: 0 20px 50px rgba(187,0,16,.16);
}
.contact-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.26); box-shadow: none; background: rgba(255,255,255,.08); }
.contact-card h2 { margin: 0; font-size: 21px; line-height: 1.05; letter-spacing: -.035em; }
.contact-card p { margin: 12px 0 0; color: rgba(255,255,255,.84); font-size: 10px; line-height: 1.45; }
.contact-email {
  grid-column: 1 / -1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  padding: 8px 15px;
  background: white;
  color: #121317;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease;
}
.contact-email:hover { transform: translateY(-2px); }
.contact-email span { color: var(--red); font-size: 18px; }
.contact-card small { grid-column: 1 / -1; color: rgba(255,255,255,.68); font-size: 8px; line-height: 1.3; }

.process-section { padding-top: 22px; }
.process-panel {
  display: grid;
  grid-template-columns: 1.1fr 2.7fr auto;
  gap: 35px;
  align-items: center;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18,21,27,.92), rgba(8,10,13,.96));
}
.process-panel h2 { font-size: 29px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.process-list li { border-left: 1px solid var(--line); padding-left: 17px; }
.process-list span { color: var(--red); font-size: 9px; font-weight: 900; }
.process-list strong { display: block; margin-top: 7px; font-size: 12px; }
.process-list p { margin: 6px 0 0; color: var(--muted); font-size: 9px; line-height: 1.4; }
.process-panel > .button { white-space: nowrap; }

.site-footer { min-height: 54px; display: flex; align-items: center; color: #858a92; font-size: 9px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner a { text-decoration: none; color: #bfc2c7; }

.modal, .lightbox {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 32px;
  color: var(--text);
  background: linear-gradient(155deg, #15191f, #080a0e 72%);
  box-shadow: 0 34px 100px rgba(0,0,0,.68);
}
.modal::backdrop, .lightbox::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.modal[open], .lightbox[open] { animation: dialog-in .22s ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal h2 { margin: 0; font-size: 37px; line-height: 1.03; letter-spacing: -.045em; }
.modal > p:not(.section-kicker), .modal-intro { color: var(--muted); }
.service-modal ul { display: grid; gap: 10px; margin: 23px 0 27px; padding-left: 20px; color: #d4d6da; }
.service-modal li::marker { color: var(--red); }

.request-modal { width: min(710px, calc(100% - 28px)); }
.request-modal form { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.request-modal label { display: grid; gap: 7px; margin-bottom: 15px; color: #d9dade; font-size: 11px; font-weight: 800; }
.request-modal input, .request-modal select, .request-modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  background: #0b0e12;
  color: white;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.request-modal input:focus, .request-modal select:focus, .request-modal textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,11,27,.1); }
.request-modal textarea { resize: vertical; min-height: 108px; }
.request-modal option { background: #101318; }
.consent-row { grid-template-columns: auto 1fr !important; align-items: center; font-weight: 600 !important; }
.consent-row input { width: 17px; height: 17px; accent-color: var(--red); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-status { min-height: 24px; margin: 15px 0 0; color: #b9e8c2 !important; font-size: 12px; font-weight: 750; }

.lightbox { width: min(900px, calc(100% - 28px)); padding: 13px; overflow: hidden; }
.lightbox img { width: 100%; max-height: 75vh; object-fit: contain; border-radius: 13px; background: #060709; }
.lightbox p { margin: 12px 8px 5px; color: #d3d5d9; font-size: 13px; font-weight: 700; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 30px);
  max-width: min(440px, calc(100% - 28px));
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(20,24,30,.96);
  color: white;
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal--delay, .reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 20px; }
  .brand { min-width: 195px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 11.5px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 285px; gap: 24px; }
  .hero-car { width: 760px; left: 24%; }
  .section-grid { grid-template-columns: 1fr; }
  .about-panel { display: grid; grid-template-columns: 1.25fr .75fr; column-gap: 36px; }
  .about-panel .section-kicker, .about-panel h2, .about-panel > p, .about-panel .text-link { grid-column: 1; }
  .identity-card { grid-column: 2; grid-row: 1 / span 5; align-self: end; }
  .references-layout { grid-template-columns: 185px minmax(0, 1fr); }
  .contact-card { grid-column: 1 / -1; grid-template-columns: auto 1fr auto; align-items: center; }
  .contact-card .contact-email { grid-column: 3; grid-row: 1 / span 2; width: 210px; }
  .contact-card small { grid-column: 2; }
  .process-panel { grid-template-columns: 1fr; }
  .process-panel > .button { justify-self: start; }
}

@media (max-width: 860px) {
  .site-header, .site-header.is-scrolled { height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { min-width: 0; }
  .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    cursor: pointer;
  }
  .menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 98px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12,15,19,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero-layout { min-height: 680px; grid-template-columns: 1fr 225px; align-items: start; padding-top: 52px; }
  .hero-copy { padding-top: 7px; }
  .hero h1 { font-size: clamp(45px, 7.6vw, 64px); }
  .portrait-card { align-self: start; margin-top: 45px; }
  .hero-car { left: 11%; bottom: 5px; width: 790px; opacity: .65; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .stat-item:nth-child(n+3) { padding-top: 14px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 265px; }
  .references-layout { grid-template-columns: 1fr; }
  .references-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; }
  .references-intro .section-kicker { grid-column: 1 / -1; }
  .filters { margin: 0; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-card { grid-template-columns: auto 1fr; }
  .contact-card .contact-email { grid-column: 1 / -1; grid-row: auto; width: 100%; }
  .contact-card small { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--container)); }
  .prototype-bar { min-height: 30px; font-size: 9px; }
  .prototype-bar__sep { display: none; }
  .prototype-bar { flex-direction: column; gap: 0; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8.5px; }
  .swiss-mark { width: 39px; height: 39px; }
  .main-nav { top: 89px; left: 13px; right: 13px; }
  .hero-layout { display: flex; flex-direction: column; min-height: 770px; padding-top: 41px; padding-bottom: 36px; }
  .hero-copy { max-width: none; }
  .eyebrow-pill { font-size: 9px; }
  .hero h1 { font-size: clamp(44px, 14vw, 60px); }
  .hero-copy > p { max-width: 100%; font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button:first-child { grid-column: 1 / -1; }
  .hero-actions .button { padding-inline: 13px; }
  .portrait-card { width: 205px; align-self: flex-end; margin: 4px 3px 0 0; }
  .hero-car { left: -150px; bottom: 0; width: 800px; opacity: .42; }
  .stats-wrap { margin-top: -18px; }
  .stats-panel { padding: 10px; }
  .stat-item { gap: 12px; padding: 12px; }
  .stat-item:first-child { padding-left: 12px; }
  .stat-item svg { width: 38px; height: 38px; }
  .stat-item strong { font-size: 18px; }
  .stat-item span { font-size: 7.5px; }
  .section { padding-block: 52px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { margin-top: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .service-copy { min-height: 0; max-width: 62%; }
  .service-image { left: 38%; height: 70%; }
  .service-image::after { background: linear-gradient(90deg, #0e1116 0%, transparent 48%), linear-gradient(180deg, #0e1116 0%, transparent 35%); }
  .about-panel { display: block; }
  .identity-card { margin-top: 23px; }
  .references-intro { display: block; }
  .filters { margin-top: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 20px; }
  .contact-card h2 { font-size: 24px; }
  .process-panel { padding: 22px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { padding: 0 0 16px 15px; }
  .footer-inner { flex-direction: column; align-items: center; padding: 17px 0; text-align: center; }
  .modal, .lightbox { padding: 25px 18px 19px; border-radius: 17px; }
  .modal h2 { font-size: 31px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-actions { display: grid; }
}

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

/* --- Version 2 : accueil personnel et parcours détaillé --- */
.hero {
  min-height: 640px;
}
.hero-layout {
  min-height: 640px;
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 54px;
  padding-block: 38px 54px;
}
.hero-copy { max-width: 650px; }
.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 5.5vw, 78px);
  line-height: .95;
}
.hero h1 > span {
  display: block;
  max-width: 610px;
  color: #f7f7f8;
  font-size: .66em;
  line-height: 1.04;
  font-weight: 760;
  letter-spacing: -.045em;
}
.hero h1 em {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-family: "Avenir Next", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 1.02em;
  line-height: .92;
  font-style: normal;
  font-weight: 950;
  letter-spacing: -.065em;
}
.hero-copy > p {
  max-width: 555px;
  margin-top: 23px;
  font-size: 15.5px;
  line-height: 1.65;
}
.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(10,13,17,.62);
  color: #dfe1e5;
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-car {
  width: min(850px, 66vw);
  left: 27%;
  bottom: 5px;
  opacity: .78;
}
.portrait-stack {
  position: relative;
  z-index: 4;
  align-self: center;
  width: 100%;
}
.portrait-card {
  display: block;
  margin: 0;
}
.portrait-card img {
  width: 100%;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
  background: #15181c;
}
.portrait-story-card {
  position: relative;
  display: grid;
  gap: 6px;
  margin-top: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 17px 15px 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239,11,27,.17), transparent 52%),
    linear-gradient(145deg, rgba(19,23,29,.98), rgba(8,10,13,.98));
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  transition: transform .23s ease, border-color .23s ease, background .23s ease;
}
.portrait-story-card::before {
  content: "";
  position: absolute;
  inset: 15px auto 15px 0;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: var(--red);
}
.portrait-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
}
.portrait-story-card__kicker {
  color: var(--red);
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.portrait-story-card strong {
  font-size: 15px;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.portrait-story-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  color: #bfc2c8;
  font-size: 9px;
  font-weight: 750;
}
.portrait-story-card__link b {
  color: var(--red);
  font-size: 17px;
  line-height: 1;
}

.profile-section {
  position: relative;
  padding-top: 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 13% 25%, rgba(239,11,27,.055), transparent 24rem),
    linear-gradient(180deg, rgba(11,14,18,.38), rgba(5,7,10,.05));
}
.profile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 72px, rgba(255,255,255,.012) 73px 74px);
}
.profile-section > .container { position: relative; }
.profile-heading {
  display: grid;
  grid-template-columns: minmax(310px, .9fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: end;
}
.profile-heading h2 { font-size: clamp(39px, 4.2vw, 58px); }
.profile-heading h2 em { color: var(--red); font-style: normal; }
.profile-lead {
  max-width: 660px;
  margin: 0 0 3px;
  color: #b7bbc2;
  font-size: 14px;
  line-height: 1.75;
}
.profile-lead strong { color: #f4f4f5; font-weight: 800; }
.expertise-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 34px;
}
.expertise-strip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(155deg, rgba(20,24,30,.86), rgba(9,11,15,.9));
  color: #e4e5e8;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}
.journey-layout {
  display: grid;
  grid-template-columns: minmax(285px, .72fr) minmax(0, 1.55fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 25px;
}
.journey-feature {
  min-height: 555px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(160deg, #14181e, #080a0e 78%);
  box-shadow: 0 25px 65px rgba(0,0,0,.24);
}
.journey-feature__visual {
  position: relative;
  min-height: 175px;
  background-image:
    linear-gradient(180deg, rgba(8,10,13,.04), #11151a 96%),
    linear-gradient(90deg, rgba(239,11,27,.04), transparent),
    url("assets/service-mic.jpg");
  background-size: cover;
  background-position: center 52%;
  filter: saturate(.7) contrast(1.08);
}
.journey-feature__visual::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--red);
  opacity: .9;
}
.journey-feature__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}
.journey-feature h3 {
  margin: 0;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: .94;
  letter-spacing: -.055em;
}
.journey-feature__content > p:not(.section-kicker) {
  margin: 17px 0 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.journey-facts {
  display: grid;
  gap: 0;
  margin: auto 0 0;
}
.journey-facts > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.journey-facts dt {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -.015em;
}
.journey-facts dd {
  margin: 0;
  color: #aeb2b9;
  font-size: 9px;
  line-height: 1.45;
}
.journey-accordions { min-width: 0; }
.journey-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  padding: 7px 4px 7px 2px;
}
.journey-toolbar > div { display: grid; gap: 2px; }
.journey-toolbar span { font-size: 13px; font-weight: 850; }
.journey-toolbar small { color: var(--muted); font-size: 9px; }
.journey-toggle {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255,255,255,.035);
  color: #f4f4f5;
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.journey-toggle:hover { transform: translateY(-2px); border-color: var(--red); background: rgba(239,11,27,.08); }
.journey-card {
  overflow: clip;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20,24,30,.92), rgba(8,10,13,.96));
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.journey-card[open] {
  border-color: rgba(239,11,27,.38);
  background: linear-gradient(145deg, rgba(23,26,32,.98), rgba(8,10,13,.98));
  box-shadow: 0 16px 38px rgba(0,0,0,.2);
}
.journey-card summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 43px minmax(0,1fr) 31px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: background .2s ease;
}
.journey-card summary::-webkit-details-marker { display: none; }
.journey-card summary::marker { display: none; content: ""; }
.journey-card summary:hover { background: rgba(255,255,255,.025); }
.journey-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(239,11,27,.35);
  border-radius: 11px;
  background: rgba(239,11,27,.08);
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
}
.journey-title { min-width: 0; display: grid; gap: 4px; }
.journey-title strong { font-size: 14px; line-height: 1.2; letter-spacing: -.012em; }
.journey-title small { overflow: hidden; color: #969ba4; font-size: 9px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.journey-plus {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
}
.journey-plus::before,
.journey-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: #f2f3f4;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, background .22s ease;
}
.journey-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.journey-card[open] .journey-plus { border-color: rgba(239,11,27,.4); }
.journey-card[open] .journey-plus::before,
.journey-card[open] .journey-plus::after { background: var(--red); }
.journey-card[open] .journey-plus::after { transform: translate(-50%, -50%) rotate(0); }
.journey-content {
  border-top: 1px solid var(--line);
  padding: 17px 22px 21px 75px;
}
.journey-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-content li {
  position: relative;
  padding-left: 15px;
  color: #b8bbc2;
  font-size: 10.5px;
  line-height: 1.55;
}
.journey-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.services-section {
  border-bottom: 1px solid var(--line);
  background: rgba(4,6,9,.24);
}

@media (max-width: 1040px) {
  .hero-layout { min-height: 625px; grid-template-columns: minmax(0, 1fr) 296px; gap: 30px; }
  .hero h1 { font-size: clamp(54px, 6vw, 71px); }
  .hero-car { left: 20%; }
  .profile-heading { gap: 42px; }
  .expertise-strip { grid-template-columns: repeat(3, 1fr); }
  .expertise-strip span:nth-child(4), .expertise-strip span:nth-child(5) { grid-column: span 1; }
  .journey-layout { grid-template-columns: 285px minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .hero-layout { min-height: 665px; grid-template-columns: minmax(0, 1fr) 248px; align-items: center; padding-top: 43px; }
  .hero-copy { padding-top: 0; }
  .hero h1 { font-size: clamp(50px, 7.2vw, 63px); }
  .portrait-stack { align-self: center; margin-top: 0; }
  .portrait-card { width: 100%; margin: 0; }
  .portrait-story-card { padding: 14px 14px 13px 17px; }
  .portrait-story-card strong { font-size: 13px; }
  .profile-heading { grid-template-columns: 1fr; gap: 20px; }
  .profile-lead { max-width: 100%; }
  .journey-layout { grid-template-columns: 1fr; }
  .journey-feature {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(210px, .75fr) minmax(0, 1.25fr);
  }
  .journey-feature__visual { min-height: 100%; }
  .journey-feature__content { min-height: 340px; }
}

@media (max-width: 640px) {
  .hero-layout { min-height: auto; padding-top: 38px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(46px, 13.2vw, 61px); }
  .hero h1 > span { font-size: .64em; line-height: 1.08; }
  .hero h1 em { margin-top: 8px; }
  .hero-copy > p { font-size: 13px; }
  .hero-signature { gap: 6px; }
  .hero-signature span { padding-inline: 9px; font-size: 7.5px; }
  .portrait-stack { width: min(100%, 250px); align-self: flex-end; margin: 5px 2px 0 0; }
  .portrait-card { width: 100%; }
  .portrait-story-card { margin-top: 8px; }
  .stats-wrap { margin-top: -17px; }
  .profile-section { padding-top: 65px; }
  .profile-heading h2 { font-size: clamp(36px, 11vw, 49px); }
  .profile-lead { font-size: 12.5px; line-height: 1.7; }
  .expertise-strip { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 25px; }
  .expertise-strip span { min-height: 50px; padding-inline: 8px; font-size: 9px; }
  .expertise-strip span:last-child { grid-column: 1 / -1; }
  .journey-feature { display: flex; }
  .journey-feature__visual { min-height: 150px; }
  .journey-feature__content { min-height: auto; padding: 23px; }
  .journey-facts > div { grid-template-columns: 96px 1fr; }
  .journey-toolbar { align-items: flex-end; }
  .journey-toolbar small { max-width: 210px; }
  .journey-card summary { grid-template-columns: 39px minmax(0,1fr) 28px; gap: 10px; min-height: 74px; padding: 12px; }
  .journey-number { width: 36px; height: 36px; }
  .journey-title strong { font-size: 12.5px; }
  .journey-title small { font-size: 8px; }
  .journey-content { padding: 15px 16px 18px 61px; }
  .journey-content li { font-size: 10px; }
}

@media (max-width: 430px) {
  .journey-toolbar { display: grid; }
  .journey-toggle { justify-self: start; }
  .journey-title small { white-space: normal; }
  .journey-content { padding-left: 20px; }
}

/* --- Version 3 : page « La voix de votre manifestation » --- */
.inline-link {
  color: #fff;
  font-weight: 850;
  text-decoration-color: rgba(239,11,27,.75);
  text-underline-offset: 4px;
}
.inline-link:hover { color: var(--red); }

body[data-page="portfolio"] {
  background:
    radial-gradient(circle at 85% 10%, rgba(239,11,27,.065), transparent 31rem),
    radial-gradient(circle at 18% 58%, rgba(255,255,255,.018), transparent 28rem),
    linear-gradient(180deg, #07090c 0%, #05070a 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #858b94;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.breadcrumb a { color: #d6d8dc; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden="true"] { color: var(--red); }

.voice-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.voice-hero__background {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4,6,9,.99) 0%, rgba(4,6,9,.96) 34%, rgba(4,6,9,.65) 66%, rgba(4,6,9,.86) 100%),
    linear-gradient(180deg, rgba(5,7,10,.08), rgba(5,7,10,.76)),
    url("assets/hero-motion.jpg");
  background-size: cover;
  background-position: center 46%;
  filter: saturate(.56) contrast(1.1) brightness(.62);
  transform: scale(1.035);
}
.voice-hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(239,11,27,.11), transparent 24rem),
    linear-gradient(90deg, transparent 0 48%, rgba(0,0,0,.08));
}
.voice-hero__lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .7;
  background:
    repeating-linear-gradient(0deg, transparent 0 64px, rgba(255,255,255,.018) 65px 66px),
    linear-gradient(115deg, transparent 0 60%, rgba(239,11,27,.04) 60.2%, transparent 60.5%);
}
.voice-hero__layout {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 68px;
  align-items: center;
  padding-block: 48px 78px;
}
.voice-hero__copy { position: relative; z-index: 3; max-width: 690px; }
.voice-hero__copy .eyebrow-pill { margin-bottom: 16px; }
.voice-hero__english {
  margin: 0 0 12px;
  color: #a8acb4;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.voice-hero h1 {
  max-width: 710px;
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 6.2vw, 88px);
  line-height: .9;
  font-weight: 920;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.voice-hero h1 em { display: block; color: var(--red); font-style: normal; }
.voice-hero__lead {
  max-width: 585px;
  margin: 25px 0 0;
  color: #d4d6da;
  font-size: 16px;
  line-height: 1.65;
}
.voice-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.voice-hero__microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 29px;
  color: #a8acb4;
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.voice-hero__microcopy span { position: relative; padding-left: 12px; }
.voice-hero__microcopy span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}
.voice-hero__visual { position: relative; width: 100%; max-width: 390px; justify-self: end; }
.voice-speaker-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 530px;
  border: 1px solid rgba(255,255,255,.21);
  border-radius: 26px;
  background: #111419;
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}
.voice-speaker-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(3,5,7,.15) 69%, rgba(3,5,7,.97) 100%);
  pointer-events: none;
}
.voice-speaker-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -95px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff1227, #bd0010);
  opacity: .92;
  pointer-events: none;
}
.voice-speaker-card img { width: 100%; height: 530px; object-fit: cover; object-position: center 27%; filter: grayscale(1) contrast(1.03); }
.voice-speaker-card figcaption {
  position: absolute;
  z-index: 5;
  left: 25px;
  right: 25px;
  bottom: 24px;
  display: grid;
  gap: 3px;
}
.voice-speaker-card figcaption span { color: #fff; font-size: 25px; line-height: 1; font-weight: 900; letter-spacing: -.035em; }
.voice-speaker-card figcaption small { color: #c4c7cc; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.voice-experience-card {
  position: absolute;
  z-index: 7;
  left: -54px;
  bottom: 79px;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 14px;
  background: rgba(11,14,18,.93);
  box-shadow: 0 22px 48px rgba(0,0,0,.42);
  backdrop-filter: blur(15px);
}
.voice-experience-card strong { color: var(--red); font-size: 32px; line-height: .9; letter-spacing: -.045em; }
.voice-experience-card span { color: #d9dbde; font-size: 9px; line-height: 1.25; font-weight: 850; text-transform: uppercase; }
.voice-live-badge {
  position: absolute;
  z-index: 7;
  right: -20px;
  top: 41px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 160px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,13,17,.88);
  color: #e6e7e9;
  font-size: 8px;
  line-height: 1.3;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.voice-live-badge > span { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(239,11,27,.1); }

.voice-proof { position: relative; z-index: 9; margin-top: -38px; }
.voice-proof__grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(19,22,28,.98), rgba(9,11,15,.98));
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
}
.voice-proof article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 4px 28px;
  border-right: 1px solid var(--line);
}
.voice-proof article:first-child { padding-left: 9px; }
.voice-proof article:last-child { border-right: 0; }
.voice-proof strong { min-width: 45px; color: var(--red); font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.voice-proof span { color: #d0d2d6; font-size: 9px; line-height: 1.35; font-weight: 800; text-transform: uppercase; }

.voice-intro { position: relative; padding-top: 94px; border-bottom: 1px solid var(--line); }
.voice-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(255,255,255,.012) 77px 78px),
    radial-gradient(circle at 19% 50%, rgba(239,11,27,.045), transparent 22rem);
}
.voice-intro > .container { position: relative; }
.voice-intro__grid { display: grid; grid-template-columns: minmax(340px,.9fr) minmax(0,1.25fr); gap: clamp(55px, 8vw, 110px); align-items: start; }
.voice-intro__heading h2 { font-size: clamp(47px, 5vw, 67px); line-height: .95; }
.voice-intro__heading h2 em { color: var(--red); font-style: normal; }
.voice-intro__content { max-width: 680px; }
.voice-intro__content > p { color: #aeb2b9; font-size: 14px; line-height: 1.8; }
.voice-intro__content > p + p { margin-top: 17px; }
.voice-intro__lead { margin-top: 0; color: #f2f3f4 !important; font-size: 18px !important; line-height: 1.6 !important; font-weight: 700; letter-spacing: -.012em; }
.voice-quote {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 17px;
  margin-top: 29px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 14px;
  padding: 21px 24px;
  background: linear-gradient(135deg, rgba(21,25,31,.92), rgba(10,12,16,.92));
}
.voice-quote > span { color: var(--red); font-family: Georgia, serif; font-size: 64px; line-height: .75; }
.voice-quote blockquote { margin: 0; color: #e0e1e4; font-size: 15px; line-height: 1.55; font-weight: 700; font-style: italic; }

.voice-universes { border-bottom: 1px solid var(--line); background: rgba(4,6,9,.28); }
.voice-universe-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.voice-universe-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  background: #11151a;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.voice-universe-card:hover { transform: translateY(-5px); border-color: rgba(239,11,27,.55); box-shadow: 0 28px 75px rgba(0,0,0,.36); }
.voice-universe-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,10,.02) 16%, rgba(5,7,10,.22) 43%, rgba(5,7,10,.98) 83%),
    linear-gradient(90deg, rgba(5,7,10,.22), transparent 55%);
}
.voice-universe-card__image { position: absolute; z-index: 0; inset: 0; }
.voice-universe-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.08) brightness(.82); transition: transform .5s ease, filter .35s ease; }
.voice-universe-card:hover .voice-universe-card__image img { transform: scale(1.035); filter: saturate(.92) contrast(1.08) brightness(.88); }
.voice-universe-card__number {
  position: absolute;
  z-index: 4;
  left: 21px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 12px;
  background: rgba(8,10,13,.78);
  color: var(--red);
  font-size: 10px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.voice-universe-card__body { position: relative; z-index: 3; width: 100%; display: grid; gap: 9px; padding: 28px 28px 25px; }
.voice-universe-card__body strong { color: #fff; font-size: 27px; line-height: 1.05; letter-spacing: -.035em; }
.voice-universe-card__body > span { max-width: 460px; color: #b5b9c0; font-size: 12px; line-height: 1.55; }
.voice-universe-card__body b { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 7px; color: #fff; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.voice-universe-card__body i { color: var(--red); font-size: 18px; font-style: normal; }

.voice-method { border-bottom: 1px solid var(--line); }
.voice-method__panel {
  display: grid;
  grid-template-columns: minmax(270px,.74fr) minmax(0,1.4fr);
  gap: 54px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 44px;
  background:
    radial-gradient(circle at 12% 20%, rgba(239,11,27,.07), transparent 17rem),
    linear-gradient(145deg, rgba(18,22,28,.97), rgba(8,10,13,.98));
  box-shadow: 0 28px 75px rgba(0,0,0,.24);
}
.voice-method__intro h2 { font-size: clamp(35px,3.5vw,48px); }
.voice-method__intro > p:last-child { max-width: 370px; margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.voice-method__steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.voice-method__steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid var(--line); }
.voice-method__steps li:first-child { border-top: 0; }
.voice-method__steps > li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(239,11,27,.36); border-radius: 12px; background: rgba(239,11,27,.075); color: var(--red); font-size: 10px; font-weight: 950; }
.voice-method__steps strong { display: block; color: #fff; font-size: 15px; }
.voice-method__steps p { margin: 6px 0 0; color: #aeb2b9; font-size: 11px; line-height: 1.55; }

.voice-resources { border-bottom: 1px solid var(--line); background: rgba(8,10,13,.58); }
.voice-resources__heading { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 26px; }
.voice-resources__heading > p { max-width: 360px; margin: 0 0 4px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.voice-resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.voice-resource-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 23px;
  background: #111419;
  text-decoration: none;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease;
}
.voice-resource-card:hover { transform: translateY(-4px); border-color: rgba(239,11,27,.52); }
.voice-resource-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, transparent 21%, rgba(6,8,11,.28) 49%, rgba(6,8,11,.98) 84%); }
.voice-resource-card__visual { position: absolute; z-index: -2; inset: 0; }
.voice-resource-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.66) contrast(1.08) brightness(.78); transition: transform .45s ease; }
.voice-resource-card:hover .voice-resource-card__visual img { transform: scale(1.04); }
.voice-resource-card__label { width: fit-content; margin-bottom: 11px; border: 1px solid rgba(239,11,27,.45); border-radius: 999px; padding: 5px 9px; background: rgba(239,11,27,.1); color: var(--red); font-size: 8px; line-height: 1; font-weight: 900; text-transform: uppercase; }
.voice-resource-card strong { max-width: 230px; color: #fff; font-size: 23px; line-height: 1.05; letter-spacing: -.03em; }
.voice-resource-card > span:not(.voice-resource-card__visual):not(.voice-resource-card__label) { margin-top: 7px; color: #b4b7bd; font-size: 10px; }
.voice-resource-card > b { position: absolute; right: 20px; bottom: 20px; color: var(--red); font-size: 21px; }

.voice-gallery { border-bottom: 1px solid var(--line); }
.voice-gallery__layout { display: grid; grid-template-columns: 275px minmax(0,1fr); gap: 34px; align-items: stretch; }
.voice-gallery__intro { padding: 9px 0; }
.voice-gallery__intro h2 { font-size: clamp(39px,4vw,55px); }
.voice-gallery__intro h2 em { color: var(--red); font-style: normal; }
.voice-gallery__intro > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.voice-gallery__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: 220px 220px; gap: 12px; }
.voice-gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0;
  background: #111419;
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform .25s ease, border-color .25s ease;
}
.voice-gallery__item:hover { transform: translateY(-3px); border-color: rgba(239,11,27,.45); }
.voice-gallery__item--wide { grid-column: 1 / -1; }
.voice-gallery__item::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(5,7,10,.91) 100%); }
.voice-gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); transition: transform .45s ease; }
.voice-gallery__item:hover img { transform: scale(1.035); }
.voice-gallery__item > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; display: grid; gap: 3px; }
.voice-gallery__item small { color: var(--red); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.voice-gallery__item strong { color: #fff; font-size: 16px; line-height: 1.12; }

.voice-cta { padding-block: 58px; }
.voice-cta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 22px;
  padding: 37px 42px;
  background:
    radial-gradient(circle at 88% 30%, rgba(255,255,255,.22), transparent 16rem),
    linear-gradient(135deg, #f20c20, #c80012 74%);
  box-shadow: 0 28px 75px rgba(239,11,27,.18);
}
.voice-cta__panel::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.voice-cta__icon { z-index: 1; width: 58px; height: 58px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26); box-shadow: none; }
.voice-cta__panel > div { position: relative; z-index: 2; }
.voice-cta .section-kicker { color: #fff; opacity: .78; }
.voice-cta h2 { max-width: 650px; font-size: clamp(33px,3.5vw,49px); }
.voice-cta__panel > div > p:last-child { max-width: 660px; margin: 14px 0 0; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.55; }
.voice-cta__actions { min-width: 205px; display: grid; gap: 12px; justify-items: stretch; }
.voice-cta__actions .button { min-width: 205px; }
.voice-cta__actions > a { color: #fff; font-size: 11px; font-weight: 850; text-align: center; text-decoration: none; }
.voice-cta__actions > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; }

/* La galerie de la V3 utilise ses propres cartes mais garde la même lightbox. */
body[data-page="portfolio"] .voice-gallery__item.is-hidden { display: none; }

@media (max-width: 1040px) {
  .voice-hero__layout { grid-template-columns: minmax(0,1fr) 335px; gap: 42px; }
  .voice-hero h1 { font-size: clamp(58px,6.4vw,78px); }
  .voice-speaker-card, .voice-speaker-card img { min-height: 485px; height: 485px; }
  .voice-experience-card { left: -30px; }
  .voice-intro__grid { gap: 55px; }
  .voice-gallery__layout { grid-template-columns: 235px minmax(0,1fr); }
  .voice-cta__panel { grid-template-columns: auto 1fr; }
  .voice-cta__actions { grid-column: 2; justify-self: start; grid-template-columns: auto auto; align-items: center; }
}

@media (max-width: 860px) {
  .voice-hero { min-height: auto; }
  .voice-hero__layout { min-height: 660px; grid-template-columns: minmax(0,1fr) 270px; gap: 28px; padding-top: 42px; }
  .voice-hero h1 { font-size: clamp(51px,7.6vw,67px); }
  .voice-hero__lead { font-size: 14px; }
  .voice-speaker-card, .voice-speaker-card img { min-height: 425px; height: 425px; }
  .voice-speaker-card figcaption { left: 20px; bottom: 20px; }
  .voice-speaker-card figcaption span { font-size: 21px; }
  .voice-experience-card { left: -20px; bottom: 70px; min-width: 145px; padding: 12px 14px; }
  .voice-experience-card strong { font-size: 27px; }
  .voice-live-badge { right: -7px; top: 25px; max-width: 143px; }
  .voice-proof__grid { grid-template-columns: repeat(2,1fr); }
  .voice-proof article:nth-child(2) { border-right: 0; }
  .voice-proof article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .voice-proof article { padding: 13px 22px; }
  .voice-proof article:first-child { padding-left: 22px; }
  .voice-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .voice-intro__content { max-width: none; }
  .voice-method__panel { grid-template-columns: 1fr; gap: 20px; }
  .voice-resource-grid { grid-template-columns: 1fr; }
  .voice-resource-card { min-height: 245px; }
  .voice-resources__heading { align-items: start; }
  .voice-gallery__layout { grid-template-columns: 1fr; }
  .voice-gallery__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; }
  .voice-gallery__intro .section-kicker { grid-column: 1 / -1; }
  .voice-gallery__intro > p:last-child { margin: 0; }
}

@media (max-width: 640px) {
  .breadcrumb { margin-bottom: 17px; }
  .voice-hero__layout { display: flex; flex-direction: column; min-height: auto; padding: 34px 0 66px; }
  .voice-hero__copy { max-width: none; }
  .voice-hero__english { font-size: 9px; }
  .voice-hero h1 { font-size: clamp(50px,14vw,65px); }
  .voice-hero__lead { font-size: 13px; line-height: 1.62; }
  .voice-hero__actions { display: grid; grid-template-columns: 1fr; }
  .voice-hero__microcopy { gap: 10px 14px; font-size: 8px; }
  .voice-hero__visual { width: min(100%,285px); margin-top: 12px; align-self: flex-end; }
  .voice-speaker-card, .voice-speaker-card img { min-height: 395px; height: 395px; }
  .voice-experience-card { left: -28px; bottom: 68px; }
  .voice-live-badge { right: -1px; top: 22px; }
  .voice-proof { margin-top: -25px; }
  .voice-proof__grid { padding: 8px; }
  .voice-proof article { gap: 10px; padding: 12px 10px; }
  .voice-proof article:first-child { padding-left: 10px; }
  .voice-proof strong { min-width: 36px; font-size: 20px; }
  .voice-proof span { font-size: 7.5px; }
  .voice-intro { padding-top: 70px; }
  .voice-intro__heading h2 { font-size: clamp(39px,12vw,52px); }
  .voice-intro__lead { font-size: 15px !important; }
  .voice-intro__content > p { font-size: 12px; }
  .voice-quote { grid-template-columns: 35px 1fr; padding: 18px; }
  .voice-quote > span { font-size: 50px; }
  .voice-quote blockquote { font-size: 13px; }
  .voice-universe-grid { grid-template-columns: 1fr; }
  .voice-universe-card { min-height: 305px; }
  .voice-universe-card__body { padding: 24px 21px 21px; }
  .voice-universe-card__body strong { font-size: 23px; }
  .voice-method__panel { padding: 25px 20px; }
  .voice-method__steps li { grid-template-columns: 42px 1fr; gap: 13px; }
  .voice-resources__heading { display: block; }
  .voice-resources__heading > p { margin-top: 15px; }
  .voice-resource-card { min-height: 235px; }
  .voice-gallery__intro { display: block; }
  .voice-gallery__intro > p:last-child { margin-top: 16px; }
  .voice-gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(3,210px); }
  .voice-gallery__item--wide { grid-column: auto; }
  .voice-cta__panel { grid-template-columns: 1fr; gap: 20px; padding: 28px 22px; }
  .voice-cta__icon { width: 50px; height: 50px; }
  .voice-cta__actions { grid-column: 1; grid-template-columns: 1fr; justify-self: stretch; }
  .voice-cta__actions .button { min-width: 0; }
  .footer-links { flex-direction: column; gap: 8px; }
}


/* --- Version 8 : navigation enrichie de la page d’introduction --- */
.home-v8 .header-inner { gap: 18px; }
.home-v8 .main-nav--extended { gap: clamp(7px, .85vw, 12px); }
.home-v8 .main-nav--extended a { font-size: 10.7px; letter-spacing: -.01em; }
.home-v8 .header-cta { padding-inline: 18px; }

@media (max-width: 1180px) and (min-width: 981px) {
  .home-v8 .header-cta { display: none; }
  .home-v8 .header-inner { grid-template-columns: auto 1fr; }
  .home-v8 .main-nav--extended { justify-content: flex-end; gap: 9px; }
  .home-v8 .main-nav--extended a { font-size: 10.2px; }
}

@media (max-width: 980px) {
  .home-v8 .site-header,
  .home-v8 .site-header.is-scrolled { height: 72px; }
  .home-v8 .header-inner { grid-template-columns: 1fr auto; }
  .home-v8 .brand { min-width: 0; }
  .home-v8 .header-cta { display: none; }
  .home-v8 .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    cursor: pointer;
  }
  .home-v8 .menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
  .home-v8 .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .home-v8 .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .home-v8 .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .home-v8 .main-nav--extended {
    position: fixed;
    top: 98px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12,15,19,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .home-v8 .main-nav--extended.is-open { opacity: 1; visibility: visible; transform: none; }
  .home-v8 .main-nav--extended a { padding: 14px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .home-v8 .main-nav--extended a:last-child { border-bottom: 0; }
  .home-v8 .main-nav--extended a::after { display: none; }
}

@media (max-width: 640px) {
  .home-v8 .main-nav--extended { top: 89px; left: 13px; right: 13px; }
}


/* --- Version 9 : ajout du lien « Liens divers » dans la navigation --- */
.home-v9 .site-header .container { width: min(1240px, calc(100% - 40px)); }
.home-v9 .main-nav--extended { gap: clamp(6px, .7vw, 10px); }
.home-v9 .main-nav--extended a { font-size: 10.2px; }
@media (max-width: 1380px) and (min-width: 981px) {
  .home-v9 .header-cta { display: none; }
  .home-v9 .header-inner { grid-template-columns: auto 1fr; }
  .home-v9 .main-nav--extended { justify-content: flex-end; }
}
@media (max-width: 980px) {
  .home-v9 .site-header .container { width: min(var(--container), calc(100% - 40px)); }
}
@media (max-width: 640px) {
  .home-v9 .site-header .container { width: min(100% - 26px, var(--container)); }
}

/* --- Version 11 : menu principal plus lisible et boutons agrandis --- */
.home-v11 .site-header,
.home-v11 .site-header.is-scrolled { height: 94px; }
.home-v11 .site-header .container { width: min(1500px, calc(100% - 32px)); }
.home-v11 .header-inner { grid-template-columns: auto 1fr; gap: 24px; }
.home-v11 .brand { min-width: 220px; }
.home-v11 .header-cta { display: none; }
.home-v11 .main-nav--extended {
  justify-content: flex-end;
  gap: 4px;
}
.home-v11 .main-nav--extended a {
  padding: 13px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.015em;
  transition: color .2s ease, background .2s ease;
}
.home-v11 .main-nav--extended a::after {
  left: 9px;
  bottom: 7px;
}
.home-v11 .main-nav--extended a:hover,
.home-v11 .main-nav--extended a:focus-visible,
.home-v11 .main-nav--extended a.is-active {
  background: rgba(255,255,255,.055);
}

@media (max-width: 1380px) and (min-width: 1191px) {
  .home-v11 .site-header .container { width: min(1340px, calc(100% - 28px)); }
  .home-v11 .brand { min-width: 205px; }
  .home-v11 .main-nav--extended a { padding-inline: 7px; font-size: 12.4px; }
  .home-v11 .main-nav--extended a::after { left: 7px; }
}

@media (max-width: 1190px) {
  .home-v11 .site-header,
  .home-v11 .site-header.is-scrolled { height: 72px; }
  .home-v11 .site-header .container { width: min(var(--container), calc(100% - 40px)); }
  .home-v11 .header-inner { grid-template-columns: 1fr auto; }
  .home-v11 .brand { min-width: 0; }
  .home-v11 .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    cursor: pointer;
  }
  .home-v11 .menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: white; transition: transform .25s ease, opacity .25s ease; }
  .home-v11 .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .home-v11 .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .home-v11 .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .home-v11 .main-nav--extended {
    position: fixed;
    top: 98px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12,15,19,.985);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .home-v11 .main-nav--extended.is-open { opacity: 1; visibility: visible; transform: none; }
  .home-v11 .main-nav--extended a {
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
  }
  .home-v11 .main-nav--extended a:last-child { border-bottom: 0; }
  .home-v11 .main-nav--extended a::after { display: none; }
}

@media (max-width: 640px) {
  .home-v11 .site-header .container { width: min(100% - 26px, var(--container)); }
  .home-v11 .main-nav--extended { top: 89px; left: 13px; right: 13px; }
}

/* Ajustement final V11 : boutons du menu encore plus lisibles sur grand écran. */
@media (min-width: 1191px) {
  .home-v11 .site-header,
  .home-v11 .site-header.is-scrolled { height: 100px; }
  .home-v11 .site-header .container { width: min(1520px, calc(100% - 30px)); }
  .home-v11 .brand { min-width: 230px; }
  .home-v11 .main-nav--extended { gap: 6px; }
  .home-v11 .main-nav--extended a {
    min-height: 44px;
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,.065);
    background: rgba(255,255,255,.022);
    font-size: 14px;
  }
  .home-v11 .main-nav--extended a::after { left: 12px; right: calc(100% - 12px); }
  .home-v11 .main-nav--extended a:hover::after,
  .home-v11 .main-nav--extended a.is-active::after { right: 12px; }
}
@media (min-width: 1191px) and (max-width: 1380px) {
  .home-v11 .site-header .container { width: min(1360px, calc(100% - 26px)); }
  .home-v11 .brand { min-width: 205px; }
  .home-v11 .main-nav--extended { gap: 3px; }
  .home-v11 .main-nav--extended a {
    min-height: 42px;
    padding: 12px 8px;
    font-size: 13px;
  }
  .home-v11 .main-nav--extended a::after { left: 8px; right: calc(100% - 8px); }
  .home-v11 .main-nav--extended a:hover::after,
  .home-v11 .main-nav--extended a.is-active::after { right: 8px; }
}

/* Ajustement final V11 : navigation desktop encore plus lisible */
@media (min-width: 1221px) {
  .home-v11 .main-nav--extended {
    gap: 4px;
  }
  .home-v11 .main-nav--extended a {
    min-height: 44px;
    padding: 11px 9px;
    font-size: 13.4px;
    font-weight: 850;
  }
  .home-v11 .header-cta {
    font-size: 12px;
  }
}

@media (max-width: 1220px) and (min-width: 981px) {
  .home-v11 .main-nav--extended a {
    font-size: 12px;
  }
}
