@font-face {
  font-family: "Nexa Heavy";
  font-display: swap;
  src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --noir: #1d1d1b;
  --bleu: #17406f;
  --rouge: #e42027;
  --ambre: #f9a625;
  --creme: #fefaf9;
  --ligne: #e8dada;
  --wrap: 88rem;
  --section: 97%;
  --display: "Nexa Heavy", Helvetica, Arial, sans-serif;
  --body: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: auto; }
html.lenis,
html.lenis body { height: auto; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}
.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}
body {
  font-family: var(--body);
  color: var(--noir);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--rouge); text-decoration: none; }
.wrap {
  width: 100%;
  max-width: 88rem;
  margin-inline: auto;
}
.topbar .wrap,
.site-header .wrap {
  width: min(88rem, calc(100% - 6rem));
}

.topbar {
  background: #fff;
  color: var(--bleu);
  border-bottom: 1px solid var(--ligne);
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px 28px;
  padding: 10px 0;
}
.topbar-nav {
  min-width: 0;
}
.topbar-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar a {
  color: var(--bleu);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.topbar a:hover,
.topbar .current-menu-item > a { color: var(--rouge); }
.socials { display: flex; align-items: center; gap: 14px; }
.socials a {
  position: relative;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rouge);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.socials a[aria-label="LinkedIn"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.5 8.5h4V24h-4V8.5zM8.5 8.5h3.8v2.1h.05c.53-1 1.84-2.1 3.78-2.1 4.04 0 4.79 2.66 4.79 6.12V24h-4v-7.7c0-1.84-.03-4.2-2.56-4.2-2.56 0-2.95 2-2.95 4.06V24h-4V8.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.5 8.5h4V24h-4V8.5zM8.5 8.5h3.8v2.1h.05c.53-1 1.84-2.1 3.78-2.1 4.04 0 4.79 2.66 4.79 6.12V24h-4v-7.7c0-1.84-.03-4.2-2.56-4.2-2.56 0-2.95 2-2.95 4.06V24h-4V8.5z'/%3E%3C/svg%3E");
}
.socials a[aria-label="Facebook"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 13.5h2.5l.5-3H14v-2c0-.9.3-1.5 1.6-1.5H17V4.1c-.3 0-1.2-.1-2.3-.1C12.2 4 10.5 5.4 10.5 8.3V10.5H8v3h2.5V20h3.5v-6.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 13.5h2.5l.5-3H14v-2c0-.9.3-1.5 1.6-1.5H17V4.1c-.3 0-1.2-.1-2.3-.1C12.2 4 10.5 5.4 10.5 8.3V10.5H8v3h2.5V20h3.5v-6.5z'/%3E%3C/svg%3E");
}
.topbar .socials a:hover {
  background: transparent;
  color: var(--bleu);
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--ligne);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img {
  height: 52px;
  width: auto;
  max-width: 220px;
}
.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}
.site-nav a {
  font-family: var(--display);
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--bleu);
  line-height: 1.2;
  transition: color .2s;
}
.site-nav a:hover, .site-nav a.is-active,
.site-nav .current-menu-item > a { color: var(--rouge); }
.site-nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__resources { display: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.nav-toggle { display: none; }
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle__bars { top: 21px; }
.nav-toggle__bars::before { content: ""; top: -7px; }
.nav-toggle__bars::after { content: ""; top: 7px; }

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: .85rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: .85rem 1.15rem;
  border-radius: 4px;
  border: 2px solid var(--rouge);
  background: var(--rouge);
  color: #fbf9ff !important;
  cursor: pointer;
  width: fit-content;
  line-height: 1;
}
.btn::after {
  content: "→";
  display: inline-block;
  width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 1em;
  line-height: 1;
  transition: width .2s ease, margin-left .2s ease, opacity .2s ease;
}
.btn:hover::after {
  width: 1em;
  margin-left: .45em;
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--rouge) !important;
}
.btn-ghost:hover { background: var(--rouge); color: #fff !important; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--noir);
  margin: 0 0 .4em;
  text-wrap: balance;
}
.prose h1, .hero h1 { font-size: clamp(28px, 3.4vw, 48px); max-width: 16ch; }
.prose h2, .hero h2, .section-title { font-size: clamp(32px, 4vw, 2.8rem); }
.prose h3 { font-size: clamp(22px, 2.4vw, 35px); }
.prose p, .lede {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--noir);
  margin: 0 0 1em;
  max-width: 62ch;
}
.accent { color: var(--rouge); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section { padding: 72px 0; }
.section-split { background: #f7f7f5; }
.section-wide { padding-left: 0; padding-right: 0; }

.hero-section {
  position: relative;
  width: var(--section);
  max-width: 97%;
  margin: 0 auto;
  padding: 0 3rem 96px;
  background: #fff;
  border-radius: 0 0 50px 50px;
  z-index: 60;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
  min-height: min(72vh, 700px);
  padding: 48px 0 8px;
}
.hero-copy .btn { margin-top: 2.5rem; }
.hero-visual {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1.05;
  margin-left: auto;
  overflow: visible;
  background: none;
}
.hero-mask-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 82%;
  aspect-ratio: 1;
  z-index: 1;
  background: none;
  overflow: visible;
}
.hero-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  display: block;
}
.hero-photo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33%;
  height: auto;
  max-width: none;
  object-fit: contain;
  z-index: 2;
}
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.play-wrap {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 40;
  overflow: visible;
}
.play-btn {
  width: 180px; height: 180px; border: 0; background: none; cursor: pointer; padding: 0;
  overflow: visible;
}
.play-btn svg { width: 100%; height: 100%; overflow: visible; }
.play-btn .play-label {
  fill: #fff;
  font-family: var(--display);
  font-size: 84px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
}
.play-btn:hover .play-shape { transform: scale(1.12) translateX(8px); }
.play-btn:hover .ring { transform: rotate(180deg); }
.play-shape, .ring { transform-origin: 500px 500px; transition: transform .45s cubic-bezier(.175,.885,.32,1.275); }

.band {
  position: relative;
  z-index: 15;
  width: var(--section);
  max-width: var(--section);
  margin: -5rem auto 0;
  padding: 16rem 3rem 10rem;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  clip-path: inset(0 round 0 0 50px 50px);
  color: #fff;
  isolation: isolate;
}
#presentation {
  z-index: 50;
}
.band-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  height: 156%;
  z-index: 0;
  will-change: transform;
  background: linear-gradient(115deg, #f9a625 0%, #e42027 42%, #17406f 100%);
  border-radius: 0 0 50px 50px;
}
.band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}
.band .wrap, .band .split { position: relative; z-index: 1; }
.band-photo {
  margin: 0;
  width: min(100%, 400px);
  border-radius: 32px;
  overflow: hidden;
  align-self: stretch;
  min-height: 280px;
}
.band-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.band-copy h2 {
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 1em;
}
.band-copy p {
  color: #fff;
  max-width: 58ch;
  margin: 0 0 1em;
}
.band-copy strong { font-weight: 700; }
.band .btn { margin-top: 1.5rem; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split .media {
  min-height: 280px;
  border-radius: 32px;
  overflow: hidden;
}
.band-spacer { min-height: 220px; }

.photo-band {
  position: relative;
  z-index: 30;
  width: var(--section);
  max-width: var(--section);
  margin: -5rem auto 0;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  clip-path: inset(0 round 0 0 50px 50px);
  isolation: isolate;
}
.photo-band .parallax-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -32%;
  height: 164%;
  will-change: transform;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.panel {
  position: relative;
  z-index: 20;
  width: var(--section);
  max-width: var(--section);
  margin: -5rem auto 0;
  padding: 10rem 3rem 8rem;
  background: #fff;
  border: 1px solid var(--noir);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  clip-path: inset(0 round 0 0 50px 50px);
}
.panel .wrap {
  width: 100%;
  max-width: 88rem;
}
.panel-missions { z-index: 40; }
.panel-resources { z-index: 20; padding-top: 8rem; }
.panel-news { z-index: 10; padding-top: 7rem; padding-bottom: 6rem; }
.panel h2 { font-size: 2.8rem; }

.expertise { display: grid; gap: 0; margin-top: 2.5rem; }
.expertise-item {
  position: relative;
  border-top: 1px solid var(--ligne);
  padding: 28px 72px 28px 8px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  display: block;
}
.expertise-item:last-child { border-bottom: 1px solid var(--ligne); }
.expertise-head {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.expertise-head::before {
  content: attr(data-number);
  font-family: var(--display);
  font-size: 30px;
  color: var(--bleu);
  min-width: 2.2ch;
  transition: color .5s;
}
.expertise-item h3 {
  font-size: clamp(28px, 5vw, 60px);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  transition: color .3s;
}
.expertise-item p {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  margin: 0 0 0 70px;
  max-width: 600px;
  font-weight: 300;
  transition: max-height .35s, margin .35s, color .3s;
}
.expertise-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity .3s;
}
.expertise-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #f9a825, #e42027, #17406f);
  opacity: 0;
  transition: opacity .3s;
}
.expertise-item:hover,
.expertise-item:focus-visible {
  border-color: transparent;
}
.expertise-item:hover + .expertise-item,
.expertise-item:focus-visible + .expertise-item { border-top-color: transparent; }
.expertise-item:hover::after,
.expertise-item:focus-visible::after { opacity: 1; }
.expertise-item:hover h3,
.expertise-item:hover p,
.expertise-item:focus-visible h3,
.expertise-item:focus-visible p { color: #fff; }
.expertise-item:hover .expertise-head::before,
.expertise-item:focus-visible .expertise-head::before { color: #fff; }
.expertise-item:hover p,
.expertise-item:focus-visible p { max-height: 160px; margin-top: 12px; margin-bottom: 8px; }
.expertise-item:hover .expertise-arrow,
.expertise-item:focus-visible .expertise-arrow { opacity: 1; }
a.expertise-item:focus-visible {
  outline: 2px solid var(--bleu);
  outline-offset: 2px;
}

.resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.resources article { padding-right: 8%; }
.resources p { max-width: 46ch; margin-bottom: 2rem; }

.news-head { text-align: center; margin-bottom: 40px; }
.news-head p {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 2.8rem);
  letter-spacing: -.03em;
  margin: 0;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-list a {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--creme);
  color: var(--noir);
  padding: 28px 24px;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.news-list a:hover { color: var(--rouge); }

.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.partners img { max-height: 72px; width: auto; margin: 0 auto; filter: grayscale(.2); }

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 24px;
}
.page-hero img { width: 100%; object-fit: cover; border-radius: 32px; }

.site-footer { background: #fff; color: var(--noir); padding: 80px 0 0; }
.footer-cta { text-align: center; margin-bottom: 64px; }
.footer-cta h2 {
  font-size: clamp(40px, 5vw, 3.5rem);
  color: var(--bleu);
  margin-bottom: 24px;
}
.footer-cta .embed { max-width: 720px; margin: 0 auto; text-align: left; }
.wrap.footer-grid,
.wrap.footer-legal {
  width: var(--section);
  max-width: 97%;
  margin-inline: auto;
  background: var(--rouge);
  color: #fff;
}
.wrap.footer-grid {
  border-radius: 1rem 1rem 0 0;
  padding: 2.5rem clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.site-footer h3 {
  font-size: 2.25rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #fff;
}
.site-footer .footer-grid a,
.site-footer .footer-grid p { color: #fff; }
.site-footer .footer-grid a:hover { color: var(--ambre); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 .4em; }
.footer-grid .btn,
.btn-on-red {
  background: #fff;
  color: var(--rouge) !important;
  border-color: #fff;
}
.footer-grid .btn:hover,
.btn-on-red:hover { background: var(--creme); }
.footer-socials { margin-top: .35rem; }
.footer-socials a { color: #fff; }
.footer-socials a:hover { color: var(--ambre); }
.footer-legal {
  padding: 14px clamp(2rem, 5vw, 4.5rem) 22px;
  border-top: 0;
  border-radius: 0 0 50px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.footer-legal a { color: #fff; }
.footer-legal a:hover { color: var(--ambre); }
.footer-legal p { margin: 0; }
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.wrap.footer-legal { margin-top: 0; }

.row { display: grid; gap: 32px; }
.cols-1 { grid-template-columns: 1fr; }
.cols-2 { grid-template-columns: 1.05fr .95fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.col { min-width: 0; }
.section-band { background: #f7f7f5; }
.prose img { margin: 12px 0; }
.embed { margin: 16px 0; }
.media-video video { width: 100%; background: #000; }

.dialog {
  border: 0;
  padding: 0;
  background: rgba(0,0,0,.85);
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
}
.dialog::backdrop { background: rgba(0,0,0,.85); }
.dialog-inner { width: min(960px, 92vw); margin: 8vh auto; }
.dialog-inner video { width: 100%; }
.dialog-close {
  position: absolute; top: 16px; right: 24px;
  background: none; border: 0; color: #fff; font-size: 32px; cursor: pointer;
}

.qsn-hero {
  position: relative;
  z-index: 60;
  width: var(--section);
  max-width: 97%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  min-height: min(78vh, 760px);
}
.qsn-hero-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 72%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}
.qsn-hero-photo img {
  position: absolute;
  left: -4%;
  bottom: -28%;
  width: 155%;
  height: auto;
  max-width: none;
}
.qsn-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(78vh, 760px);
  align-items: center;
  padding: 4rem 0 6rem;
}
.qsn-hero-copy { grid-column: 2; }
.qsn-hero h1 {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1rem;
}
.qsn-hero h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  margin-bottom: .8em;
}
.qsn-hero p {
  max-width: 46ch;
  margin-bottom: 2rem;
}
.qsn-hero,
.qsn-map-band,
.qsn-soins,
.qsn-two,
.qsn-partners,
.qsn-logos,
.nm-hero,
.nm-intro,
.nm-expert,
.nm-photo,
.nm-coord,
.nm-care,
.nm-etp,
.pi-hero,
.pi-veille,
.pi-coord,
.pi-dialyse,
.act-feed,
.art-body,
.ct-form,
.rs-body {
  border: 1px solid var(--noir);
  clip-path: none;
}
.hero-section,
.qsn-hero,
.nm-hero,
.pi-hero,
.act-hero,
.rs-hero,
.art-hero,
.ct-hero,
.page-hero {
  border-top: 0;
}
.qsn-map-band { z-index: 50; padding-top: 8rem; }
.qsn-map-band h2,
.qsn-soins h2,
.qsn-two h2,
.qsn-partners h2,
.qsn-logos h2 {
  font-size: 2.8rem;
}
.qsn-map-band h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
.qsn-map {
  position: relative;
  width: 100%;
  height: min(86vh, 888px);
  min-height: 624px;
  margin: 0 auto;
  background: transparent;
  overflow: visible;
}
.qsn-map.leaflet-container {
  background: transparent;
  font-family: var(--body);
  overflow: visible;
  cursor: default;
}
.qsn-map .leaflet-grab,
.qsn-map .leaflet-dragging .leaflet-grab { cursor: default; }
.qsn-map .leaflet-control-zoom { display: none; }
.qsn-map .leaflet-tile-pane,
.qsn-map .leaflet-overlay-pane svg,
.qsn-map img.leaflet-marker-icon { max-width: none; }
.qsn-map .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 30px;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.qsn-map .leaflet-control-zoom a:hover { background: rgba(255,255,255,.28); color: #fff; }
.qsn-map .leaflet-bar { border: 0; box-shadow: none; }
.qsn-radar-wrap { background: none !important; border: 0 !important; }
.qsn-radar {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
}
.qsn-radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(228,32,39,.9), 0 0 10px rgba(255,255,255,.55);
  z-index: 2;
}
.qsn-radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 1.5px solid rgba(255,255,255,.8);
  border-radius: 50%;
  animation: qsn-sonar 2.8s ease-out infinite;
  pointer-events: none;
}
.qsn-radar-ring--delay { animation-delay: 1.1s; }
@media (prefers-reduced-motion: reduce) {
  .qsn-radar-ring { animation: none; opacity: 0; }
}
@keyframes qsn-sonar {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(4.2); opacity: 0; }
}
.leaflet-tooltip.qsn-map-label {
  background: rgba(23, 64, 111, .92);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(29, 29, 27, .18);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .02em;
  padding: 6px 10px;
  white-space: nowrap;
}
.leaflet-tooltip-bottom.qsn-map-label::before,
.leaflet-tooltip-top.qsn-map-label::before { display: none; }
.qsn-map .leaflet-popup-content-wrapper {
  background: #fff;
  color: var(--noir);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(29, 29, 27, .2);
  padding: 0;
}
.qsn-map .leaflet-popup-content {
  margin: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px 22px 16px;
}
.qsn-map .leaflet-popup-content p { margin: 0; }
.qsn-map .leaflet-popup-content p.qsn-tip-city {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 28px 8px 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #eee8e6;
}
.qsn-map .leaflet-popup-content p.qsn-tip-group {
  margin: 16px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bleu);
}
.qsn-map .leaflet-popup-content p.qsn-tip-ville {
  margin: 14px 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bleu);
}
.qsn-map .leaflet-popup-tip { background: #fff; }
.qsn-map a.leaflet-popup-close-button {
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  font-size: 20px;
  line-height: 28px;
  color: #8a8a88;
}
.qsn-map a.leaflet-popup-close-button:hover { color: var(--noir); }
.qsn-tip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qsn-tip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #3a3a38;
}
.qsn-tip-list .pastille { margin-top: 3px; }
.qsn-map-fallback { color: #fff; text-align: center; }
.pastille {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 14px;
  margin-top: 2px;
}
.pastille.udm { background: #f8a525; }
.pastille.dialyse { background: #e42027; }
.pastille.autodialyse { background: #1b3f6d; }
.pastille.prive { background: #333; }
.pastille.public { background: #999; }
.pastille.peritoneale { background: #2e7d32; }
.qsn-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  margin-top: 2rem;
  color: #fff;
  font-size: 14px;
}
.qsn-legend span { display: inline-flex; align-items: center; gap: 8px; }
.qsn-legend .pastille { margin-top: 0; }
.qsn-soins {
  z-index: 40;
  background: #fff;
  overflow: hidden;
}
.qsn-soins-art {
  position: absolute;
  left: -10%;
  top: -22%;
  width: 72%;
  height: 144%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.qsn-soins-art img {
  width: 118%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  opacity: .92;
}
.qsn-soins-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.qsn-soins p { max-width: 58ch; }
.qsn-two {
  z-index: 30;
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.qsn-two h2,
.qsn-two p { color: #fff; }
.qsn-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.qsn-two-grid article { padding-right: 1rem; }
.qsn-partners { z-index: 25; }
.qsn-logos { z-index: 20; }
.qsn-logos-2 { z-index: 15; }
.qsn-logos-3 { z-index: 10; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 36px 48px;
  align-items: center;
  margin-top: 2rem;
}
.logo-item { margin: 0; display: grid; place-items: center; min-height: 140px; }
.logo-item img {
  max-height: 128px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-slider {
  position: relative;
  margin-top: 2rem;
  min-height: 180px;
}
.logo-slider-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 36px 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity .45s ease;
}
.logo-slider-group.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nm-hero {
  z-index: 60;
  background: #fff;
  margin-top: 0;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.nm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: min(68vh, 640px);
}
.nm-hero h1 {
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 1rem;
}
.nm-hero h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  margin-bottom: .6em;
}
.nm-hero p {
  max-width: 42ch;
  margin-bottom: 2rem;
}
.nm-hero-photo {
  margin: 0;
  height: min(68vh, 640px);
  overflow: hidden;
  border-radius: 32px;
}
.nm-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.nm-intro { z-index: 50; }
.nm-expert { z-index: 40; }
.nm-photo { z-index: 30; }
.nm-coord { z-index: 20; }
.nm-care { z-index: 10; }
.nm-etp { z-index: 8; padding-top: 9rem; }
.nm-expert h2,
.nm-care h2,
.nm-etp h2,
.nm-intro h2,
.nm-coord h2 {
  font-size: 2.8rem;
}
.nm-etp h2 { margin-bottom: 1.4em; }
.nm-etp .serein-carte {
  --sc-font: var(--body);
  overflow: hidden;
}
.nm-copy { max-width: 52rem; }
.nm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.nm-text-photo {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
}
.nm-text-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.nm-intro .band-photo,
.nm-coord .band-photo,
.pi-veille .band-photo {
  width: 100%;
  max-width: none;
}

.pi-hero {
  z-index: 60;
  background: #fff;
  margin-top: 0;
  padding: 0 3rem;
  min-height: min(78vh, 720px);
  overflow: hidden;
}
.pi-hero-logo {
  position: absolute;
  left: 18%;
  top: -22%;
  width: 72%;
  height: 144%;
  pointer-events: none;
  z-index: 0;
}
.pi-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.pi-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.pi-hero-photo img {
  max-width: none;
  width: 128%;
  height: 112%;
  object-fit: contain;
  object-position: left bottom;
}
.pi-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(78vh, 720px);
  align-items: center;
}
.pi-hero-copy { grid-column: 2; padding: 4rem 0 5rem; }
.pi-hero h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  margin-bottom: .6em;
  line-height: 1.05;
}
.pi-hero p {
  max-width: 42ch;
  margin-bottom: 2rem;
}
.pi-veille { z-index: 50; }
.pi-coord { z-index: 40; padding-top: 9rem; }
.pi-dialyse { z-index: 30; padding-top: 9rem; }
.pi-coord h2,
.pi-veille h2,
.pi-dialyse h2 {
  font-size: 2.8rem;
  margin-bottom: 1.4em;
}
.pi-coord .pi-list { max-width: 46rem; }
.pi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.pi-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.pi-list h3 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0;
  color: inherit;
}
.pi-list p {
  margin: .45em 0 0;
  font-weight: 300;
  max-width: 52ch;
}
.pi-ico {
  width: 28px;
  height: 28px;
  margin-top: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.pi-ico::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.pi-list-ink {
  color: var(--bleu);
}
.pi-list-ink .pi-ico { color: var(--rouge); }
.pi-list-ink h3 { color: var(--noir); }

.act-hero {
  position: relative;
  z-index: 60;
  width: var(--section);
  max-width: var(--section);
  margin: 0 auto;
  padding: 9vw 3rem 8vw;
  background: linear-gradient(180deg, #fff 0%, var(--creme) 43%);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  text-align: center;
}
.act-hero h2 {
  font-size: clamp(42px, 5.4vw, 5rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 auto .8em;
  max-width: 18ch;
}
.act-hero .btn { margin-top: .4rem; }
.act-feed {
  z-index: 40;
  padding-top: 10rem;
  padding-bottom: 6rem;
}
.act-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.act-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.act-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.act-card-body {
  padding: 22px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.act-card h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0 0 .55em;
}
.act-card h3 a { color: var(--noir); }
.act-card h3 a:hover { color: var(--rouge); }
.act-meta {
  color: var(--rouge);
  font-size: .92rem;
  margin: 0 0 .85em;
}
.act-meta a { color: var(--rouge); }
.act-card p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
}
.act-pager {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  font-family: var(--display);
}

.art-hero {
  position: relative;
  z-index: 60;
  width: var(--section);
  max-width: var(--section);
  margin: 0 auto;
  padding: 8rem 3rem 7rem;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  background: #1d1d1b;
  color: #fff;
}
.art-hero-bg {
  position: absolute;
  inset: 0;
}
.art-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 27, .65);
}
.art-hero .wrap { position: relative; z-index: 1; }
.art-cat {
  display: inline-block;
  margin: 0 0 .8em;
  padding: 7px 15px;
  background: #fff;
  border-radius: 2px;
  font-size: 20px;
  line-height: 1;
  font-family: var(--body);
  font-weight: 600;
}
.art-cat a { color: var(--noir); }
.art-cat a:hover { color: var(--rouge); }
.art-hero h1 {
  font-size: clamp(34px, 4.8vw, 5rem);
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 0 .4em;
}
.art-hero .btn { margin-top: 3.5rem; }
.art-body {
  z-index: 40;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.art-prose {
  max-width: 66rem;
}
.art-prose h2 {
  color: var(--rouge);
  font-size: clamp(28px, 3.2vw, 2.4rem);
  margin: 0 0 .8em;
}
.art-prose h3 { font-size: 2rem; }
.art-prose p { margin: 0 0 1em; }
.art-prose ol,
.art-prose ul { margin: 0 0 1em; padding-left: 1.25em; }
.art-prose li { margin: 0 0 .35em; }
.art-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
}
.art-prose iframe {
  max-width: 100%;
  border: 0;
}

.rs-hero {
  position: relative;
  z-index: 60;
  width: var(--section);
  max-width: var(--section);
  margin: 0 auto;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(180deg, #fff 0%, var(--creme) 55%);
  border-radius: 0 0 50px 50px;
  text-align: center;
}
.rs-hero h1 {
  font-size: clamp(42px, 6vw, 5rem);
  line-height: 1;
  margin: 0 auto;
  max-width: 14ch;
}
.rs-hero .lede {
  margin: 1.2rem auto 0;
  max-width: 46ch;
}
.rs-body {
  z-index: 40;
  margin-top: 1.5rem;
  padding: 4rem 3rem 10rem;
  background: #fff5f2;
  border-radius: 50px;
}
.rs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0 0 3.5rem;
}
.rs-pills a {
  font-family: var(--display);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--noir);
  background: #fff;
  border-radius: 999px;
  padding: .55rem 1rem;
}
.rs-pills a:hover { color: var(--rouge); }
.rs-body h2 {
  font-size: clamp(32px, 3.6vw, 2.8rem);
  margin: 0 0 1.6rem;
  scroll-margin-top: 6.5rem;
}
.rs-body h3.rs-sub {
  font-size: 1.6rem;
  margin: 0 0 1.4rem;
  scroll-margin-top: 6.5rem;
}
.rs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 0 4rem;
}
.rs-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  padding: 2.4rem 1.6rem 2rem;
  color: inherit;
  min-height: 100%;
  transition: transform .2s ease;
}
a.rs-card:hover { transform: translateY(-4px); }
.rs-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 0 1.6rem;
}
.rs-card h3 {
  font-size: 1.25rem;
  color: var(--rouge);
  margin: 0 0 .6em;
  letter-spacing: -.02em;
}
.rs-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--noir);
}
.rs-lock {
  max-width: 36rem;
  margin: 2rem auto 0;
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
}
.rs-lock p { margin: 0 0 1.2em; }
.rs-lock form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.rs-lock input[type="password"] {
  flex: 1 1 220px;
  font-family: var(--body);
  font-size: 1rem;
  padding: .75rem 1rem;
  border: 1px solid var(--ligne);
  border-radius: 4px;
}
.rs-subtitle {
  margin: -0.5rem 0 1.5rem;
  font-size: 1.1rem;
}

.ct-hero {
  padding: 8rem 3rem 6rem;
}
.ct-hero .hero {
  min-height: 0;
  padding: 0;
  align-items: center;
}
.ct-hero h1 {
  font-size: clamp(42px, 6vw, 5rem);
  line-height: 1;
  max-width: 9ch;
  margin-bottom: .55em;
}
.ct-hero .lede {
  max-width: 36ch;
  margin-bottom: 0;
}
.ct-shape {
  width: min(100%, 640px);
  aspect-ratio: 1;
  margin-left: auto;
  background: linear-gradient(-45deg, #e42027, #19406e, #f9a625, #e42027);
  background-size: 300% 300%;
  animation: moveGradient 15s infinite;
}
.ct-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-photo { z-index: 40; }
.ct-form {
  z-index: 30;
  padding-top: 15rem;
  padding-bottom: 10rem;
  scroll-margin-top: 6rem;
}
.ct-form h2 { margin-bottom: 1.5rem; }
.ct-form .embed { max-width: none; }

@media (max-width: 980px) {
  .wrap { width: min(88rem, calc(100% - 32px)); }
  .topbar .wrap,
  .site-header .wrap { width: min(88rem, calc(100% - 32px)); }
  .nav-toggle {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--bleu);
    cursor: pointer;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid var(--bleu);
    outline-offset: 2px;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }
  .header-actions {
    margin-left: auto;
    gap: 8px;
  }
  .header-actions .btn {
    padding: .65rem .9rem;
  }
  .logo img {
    height: 40px;
  }
  .topbar-inner {
    gap: 10px 16px;
    padding: 8px 0;
  }
  .topbar-nav {
    display: none;
  }
  .topbar a {
    font-size: 11px;
  }
  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    margin: 4px 0 0;
    padding: 6px 0 4px;
    border-top: 1px solid var(--ligne);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--ligne);
    font-size: .8rem;
  }
  .site-nav li:last-child a { border-bottom: 0; }
  .site-nav__resources {
    display: block;
    margin-top: 8px;
    padding-top: 4px;
    border-top: 1px solid var(--ligne);
  }
  .site-nav__label {
    margin: 10px 0 2px;
    color: var(--bleu);
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .7;
  }
  .site-nav__resources ul {
    margin: 0;
  }
  .hero, .split, .resources, .page-hero, .footer-grid, .news-list, .partners, .act-grid, .rs-grid { grid-template-columns: 1fr; }
  .act-hero { padding: 4rem 1.5rem; }
  .rs-hero { padding: 4rem 1.5rem 2.5rem; }
  .rs-body { padding: 3rem 1.5rem 4rem; border-radius: 32px; }
  .rs-grid { grid-template-columns: 1fr 1fr; }
  .art-hero { padding: 4.5rem 1.5rem 4rem; }
  .art-hero .btn { margin-top: 1.8rem; }
  .hero-visual { min-height: 280px; width: min(100%, 480px); margin: 0 auto; }
  .play-wrap { position: relative; bottom: auto; left: auto; transform: none; display: flex; justify-content: center; margin-top: 12px; }
  .hero-section { max-width: 97%; width: 97%; padding: 0 1.5rem 24px; }
  .ct-hero { padding: 3rem 1.5rem 2.5rem; }
  .ct-hero h1 { max-width: none; }
  .ct-shape { margin: 0 auto; }
  .band { padding: 6rem 1.5rem 4rem; margin-top: 0; width: 97%; max-width: 97%; }
  .panel { max-width: 97%; width: 97%; margin-top: 0; padding: 4rem 1.5rem; }
  .expertise-item { padding: 20px 16px; }
  .expertise-item p { margin-left: 0; }
  .band-spacer { display: none; }
  .photo-band { min-height: 280px; margin-top: 0; width: 97%; max-width: 97%; }
  .qsn-hero { min-height: 0; }
  .qsn-hero-photo { position: relative; width: 100%; height: 360px; }
  .qsn-hero-photo img { width: 100%; left: 0; bottom: 0; }
  .qsn-hero-grid { grid-template-columns: 1fr; min-height: 0; padding: 1.5rem 0 3rem; }
  .qsn-hero-copy { grid-column: 1; }
  .qsn-soins-grid, .qsn-two-grid { grid-template-columns: 1fr; }
  .qsn-soins-grid > div:empty { display: none; }
  .qsn-soins-art {
    position: relative;
    left: 0;
    top: 0;
    width: min(100%, 420px);
    height: 280px;
    margin: 0 auto 1.5rem;
  }
  .qsn-soins-art img { width: 100%; }
  .nm-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .nm-hero-photo { height: 360px; }
  .nm-split { grid-template-columns: 1fr; }
  .pi-hero { min-height: 0; padding: 0 1.5rem 2rem; }
  .pi-hero-logo { width: 110%; left: -18%; top: -6%; height: 52%; }
  .pi-hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    margin: 0 auto;
  }
  .pi-hero-photo img {
    object-fit: cover;
    object-position: 18% bottom;
  }
  .pi-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .pi-hero-copy { grid-column: 1; padding: 1.5rem 0 2rem; }
  .qsn-map { min-height: 504px; height: 624px; }
  .leaflet-tooltip.qsn-map-label { display: none; }
  .footer-legal { flex-direction: column; }
}
