:root {
  --blue: #17559b;
  --red: #e15124;
  --ink: #141313;
  --text: #54595f;
  --muted: #7a7a7a;
  --line: #dedede;
  --soft: #f1f1f1;
  --paper: #ffffff;
  --container: min(1140px, calc(100vw - 40px));
  --shadow: 0 24px 70px rgba(23, 85, 155, 0.16);
  --shadow-soft: 0 18px 54px rgba(20, 19, 19, 0.08);
  --title-font: "Outfit", Arial, sans-serif;
  --heading-copy-gap: clamp(24px, 2.8vw, 36px);
  --section-heading-gap: clamp(46px, 4.8vw, 62px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

html.has-open-dialog main,
html.has-open-dialog .site-header,
html.has-open-dialog .site-footer {
  filter: blur(1.5px);
  transition: filter 0.22s ease;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(225, 81, 36, 0.5);
  outline-offset: 4px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 222, 222, 0.8);
  backdrop-filter: blur(14px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(222, 222, 222, 0.88);
  box-shadow: 0 18px 50px rgba(20, 19, 19, 0.07);
}

.navbar {
  width: var(--container);
  margin: 0 auto;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-menu a,
.footer-socials a {
  transition: color 0.2s ease;
}

.site-menu a:hover,
.footer-socials a:hover {
  color: var(--red);
}

.navbar {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  transition: min-height 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .navbar {
  min-height: 74px;
}

.brand img {
  width: 168px;
  transition: filter 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled .brand img {
  transform: scale(0.9);
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-menu a {
  position: relative;
  padding: 8px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-menu a:hover::after,
.site-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu a[aria-current="page"] {
  color: var(--blue);
}

.site-menu__mobile-contact {
  display: none;
}

.home .site-header {
  position: fixed;
  right: 0;
  left: 0;
  color: #fff;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.home .site-header:not(.is-scrolled) .brand img {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.42));
}

.home .site-header:not(.is-scrolled) .site-menu a {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.home .site-header:not(.is-scrolled) .site-menu a:hover {
  color: #ff7048;
}

.home .site-header.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(222, 222, 222, 0.8);
  box-shadow: 0 18px 50px rgba(20, 19, 19, 0.08);
  backdrop-filter: blur(14px);
}

.home .site-header.is-scrolled .site-menu a {
  color: inherit;
  text-shadow: none;
}

.home .site-header.is-scrolled .site-menu a:hover {
  color: var(--red);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease;
}

.button-ripple {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.16;
  pointer-events: none;
  transform: scale(0);
  animation: rippleOut 0.62s ease-out forwards;
}

.header-cta,
.button--blue {
  color: #fff;
  background: var(--blue);
}

.home .site-header:not(.is-scrolled) .header-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home .site-header:not(.is-scrolled) .header-cta:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--ghost {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.button--light {
  color: var(--blue);
  background: #fff;
  border-color: #fff;
}

.button--outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.button--muted {
  color: var(--muted);
  background: #ededed;
  cursor: not-allowed;
}

.button.is-loading::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.header-cta:hover,
.button--blue:hover {
  background: #103f74;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(23, 85, 155, 0.22);
}

.button--light:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.button--outline-light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: background 0.2s ease;
}

.home .site-header:not(.is-scrolled) .menu-toggle span:not(.sr-only) {
  background: #fff;
}

.hero {
  position: relative;
  min-height: 76dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 19, 19, 0.74), rgba(20, 19, 19, 0.18));
}

.hero::after {
  z-index: 1;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
}

.hero__video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.hero__label,
.hero h1,
.hero .button {
  animation: heroRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero .button {
  animation-delay: 0.18s;
}

.hero__label,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1,
.page-title h1 {
  max-width: 820px;
  margin: 0 0 var(--heading-copy-gap);
  color: inherit;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
}

.programme-detail main > .section:not(.program-hero) {
  width: 100%;
  margin: 0;
  padding: 112px max(20px, calc((100vw - 1140px) / 2));
}

.programme-detail main > .section:nth-of-type(even):not(.program-hero) {
  background: #f6f7f8;
}

.programme-detail main > .section:nth-of-type(odd):not(.program-hero) {
  background: #fff;
}

.home main > .section,
.entreprise-page main > .section,
.actualites-page main > .section {
  width: 100%;
  margin: 0;
  padding: 112px max(20px, calc((100vw - 1140px) / 2));
}

.home main > .section:nth-of-type(even),
.entreprise-page main > .section:nth-of-type(even),
.actualites-page main > .section:nth-of-type(even) {
  background: #f6f7f8;
}

.home main > .section:nth-of-type(odd),
.entreprise-page main > .section:nth-of-type(odd),
.actualites-page main > .section:nth-of-type(odd) {
  background: #fff;
}

.home main > .figures-band,
.entreprise-page main > .figures-band {
  gap: 20px;
  border: 0;
  background: transparent;
}

.home main > .figures-band article,
.entreprise-page main > .figures-band article {
  border: 1px solid rgba(222, 222, 222, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.section--soft {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1140px) / 2));
  background: var(--soft);
}

.section-heading {
  margin-bottom: var(--section-heading-gap);
}

.section-heading h2,
.split h2,
.objectives h2,
.cta-band h2,
.program-copy h2,
.gallery-section h2,
.linkedin-feed h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 55px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.split h2 {
  margin-bottom: var(--heading-copy-gap);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.split__content p:not(.section-kicker),
.objective-list p,
.program-copy p,
.legal-content p {
  max-width: 66ch;
  margin: 0 0 16px;
  font-weight: 300;
}

.split__content .button {
  margin-top: 16px;
}

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

.program-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.78);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(23, 85, 155, 0.07), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-38%);
  transition: opacity 0.32s ease, transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover {
  border-color: rgba(23, 85, 155, 0.22);
  transform: translateY(-7px);
  box-shadow: 0 30px 76px rgba(23, 85, 155, 0.18);
}

.program-card:hover::before {
  opacity: 1;
  transform: translateX(38%);
}

.program-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.program-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(20, 19, 19, 0.56), rgba(20, 19, 19, 0));
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.program-card:hover .program-card__image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.055);
}

.program-card__image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  padding: 8px 11px;
  color: #fff;
  background: rgba(20, 19, 19, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.28s ease, background 0.28s ease;
}

.program-card:hover .program-card__image span {
  background: rgba(23, 85, 155, 0.82);
  transform: translateY(-3px);
}

.program-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.program-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.program-card__city {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.program-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  color: var(--ink);
  background: #f6f7f8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.program-card__availability {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
}

.program-card__facts {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.program-card__facts div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.program-card__facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.program-card__facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link::after {
  content: " ->";
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .text-link {
  color: var(--red);
  transform: translateX(3px);
}

.program-card:hover .text-link::after {
  transform: translateX(4px);
}

.center-action {
  margin-top: 44px;
  text-align: center;
}

.objectives {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.objective-list {
  display: grid;
  gap: 18px;
}

.objective-list p {
  padding: 24px;
  margin: 0;
  background: var(--soft);
  border-left: 4px solid var(--blue);
}

.partners img {
  width: min(900px, 100%);
  margin: 0 auto;
}

.figures-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-block: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.figures-band article {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.figures-band article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.figures-band article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(23, 85, 155, 0.12);
}

.figures-band strong {
  display: block;
  color: var(--blue);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.9;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.figures-band span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.figures-band p,
.placeholder-note,
.simulator-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.trust-grid,
.commitment-list,
.team-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.commitment-list article,
.team-grid article,
.legal-grid article,
.placeholder-tool {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-grid article::before,
.commitment-list article::before,
.team-grid article::before,
.legal-grid article::before,
.placeholder-tool::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 56px;
  height: 4px;
  background: var(--blue);
}

.trust-grid h3,
.commitment-list h3,
.team-grid h3,
.legal-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-grid p,
.commitment-list p,
.team-grid p,
.legal-grid p,
.placeholder-tool p {
  margin: 0;
  font-weight: 300;
}

.linkedin-feed__frame {
  min-height: 420px;
  padding: clamp(18px, 3vw, 32px);
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-logo-grid article {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.partner-logo-grid img {
  display: block;
  width: auto;
  max-width: min(190px, 86%);
  max-height: 86px;
  object-fit: contain;
}

.partner-logo-grid article:nth-child(2) img {
  max-height: 98px;
}

.partner-logo-grid article:nth-child(3) img {
  max-height: 112px;
}

.partner-logo-grid article:hover {
  border-color: rgba(23, 85, 155, 0.28);
  transform: translateY(-4px);
}

.team-grid article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.team-grid img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.team-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-category-list {
  display: grid;
  gap: 72px;
}

.program-category {
  display: grid;
  gap: 28px;
}

.category-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: end;
}

.category-head .section-kicker {
  grid-column: 1 / -1;
}

.category-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 55px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.category-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-band {
  text-align: center;
  background: var(--soft);
  width: 100%;
  padding-inline: 20px;
}

.cta-band h2 {
  margin-bottom: 30px;
}

.program-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 82px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.program-hero__content {
  animation: heroRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.program-hero__image {
  animation: heroImageIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.program-hero h1 {
  margin: 0 0 var(--heading-copy-gap);
  color: var(--ink);
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.program-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.program-details div {
  padding: 16px;
  background: var(--soft);
  border-radius: 6px;
}

.program-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-details strong {
  color: var(--ink);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.program-hero__image img {
  width: 100%;
  height: min(62dvh, 620px);
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.program-hero__image:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.program-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.program-copy .program-copy__title {
  max-width: 640px;
  margin-bottom: var(--heading-copy-gap);
}

.program-copy__content p {
  font-size: 18px;
  line-height: 1.72;
}

.program-copy__media img {
  width: 100%;
  height: min(44dvh, 460px);
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.action-grid .button {
  width: 100%;
  min-height: 74px;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  background: #fff;
  border-color: rgba(222, 222, 222, 0.92);
  box-shadow: var(--shadow-soft);
}

.action-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: currentColor;
  background: rgba(23, 85, 155, 0.08);
  border-radius: 8px;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s ease;
}

.action-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.action-label {
  min-width: 0;
  line-height: 1.2;
}

.action-grid .button--blue {
  background: var(--blue);
  border-color: var(--blue);
}

.action-grid .button--blue .action-icon {
  background: rgba(255, 255, 255, 0.16);
}

.action-grid .button:not(:disabled):hover {
  border-color: rgba(23, 85, 155, 0.28);
  box-shadow: 0 22px 60px rgba(23, 85, 155, 0.14);
  transform: translateY(-4px);
}

.action-grid .button:not(:disabled):hover .action-icon {
  transform: translateY(-1px) scale(1.05);
}

.button--placeholder {
  border-style: dashed;
  opacity: 0.74;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill-list li {
  max-width: 100%;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: normal;
}

.benefits-section .placeholder-note {
  margin-top: 18px;
}

.legal-reassurance .pill-list {
  margin-top: 28px;
}

.empty-state {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: var(--soft);
  border-left: 4px solid var(--blue);
}

.unit-accordions {
  display: grid;
  gap: 16px;
}

.unit-accordion {
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.86);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.unit-accordion[open] {
  border-color: rgba(23, 85, 155, 0.24);
  box-shadow: 0 24px 64px rgba(23, 85, 155, 0.13);
}

.unit-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  background: #fff;
  overflow: hidden;
  transition: background 0.24s ease;
}

.unit-accordion summary:hover {
  background: #fafafa;
}

.unit-accordion summary::-webkit-details-marker {
  display: none;
}

.unit-accordion summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--red);
  background: #f6f7f8;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), background 0.26s ease, color 0.26s ease;
}

.unit-accordion[open] summary::after {
  color: #fff;
  background: var(--red);
  transform: rotate(45deg);
}

.unit-accordion summary span {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
}

.unit-accordion summary strong {
  margin-left: auto;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.24s ease, color 0.24s ease;
}

.unit-accordion[open] summary strong {
  color: var(--red);
  transform: translateX(-4px);
}

.unit-accordion__body {
  display: grid;
  gap: 1px;
  padding: 0 18px 18px;
  background: #fff;
  animation: accordionReveal 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.unit-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border: 1px solid rgba(222, 222, 222, 0.76);
  border-radius: 8px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.unit-accordion[open] .unit-row.has-entered {
  animation: rowIn 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--row-index, 0) * 34ms);
}

.unit-row:hover {
  background: #fff;
  border-color: rgba(23, 85, 155, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(23, 85, 155, 0.1);
}

.unit-row__main {
  display: grid;
  gap: 8px;
}

.unit-row__reference {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.unit-status {
  width: fit-content;
  padding: 6px 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.unit-status--optionne,
.unit-status--reserve {
  background: #8d6e35;
}

.unit-status--vendu,
.unit-status--masque {
  background: var(--muted);
}

.unit-row__details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.unit-row__details div {
  min-width: 0;
  padding: 10px 12px;
  background: #fff;
  border-radius: 6px;
}

.unit-row__details dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.unit-row__details dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.unit-row__plan {
  white-space: nowrap;
  min-width: 150px;
}

.simulator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.simulator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border-left: 4px solid var(--blue);
}

.simulator-form .button,
.simulator-form .simulator-note {
  grid-column: 1 / -1;
}

.jean-brun-form label:nth-of-type(3),
.jean-brun-form label:nth-of-type(4) {
  grid-column: 1 / -1;
}

.simulator-result {
  position: sticky;
  top: 132px;
  padding: 28px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.simulator-result p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.simulator-result strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.simulator-result dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.simulator-result div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.simulator-result dt {
  color: rgba(255, 255, 255, 0.74);
}

.simulator-result dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.jean-brun-conditions {
  margin-top: 28px;
  padding: 24px;
  background: #f6f7f8;
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.jean-brun-conditions ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.jean-brun-conditions li,
.jean-brun-conditions p:not(.section-kicker) {
  color: var(--text);
  font-weight: 300;
}

.jean-brun-conditions p:not(.section-kicker) {
  margin: 18px 0 0;
  font-size: 13px;
}

.jean-brun-conditions a {
  color: var(--blue);
  font-weight: 700;
}

.placeholder-tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.muted-text {
  color: var(--muted);
  font-style: italic;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.gallery-stage {
  position: relative;
  min-height: min(58dvh, 620px);
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-stage::after {
  content: "Agrandir";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(20, 19, 19, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gallery-stage:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: min(58dvh, 620px);
  object-fit: cover;
  animation: mediaFade 0.34s ease;
  transition: opacity 0.22s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-stage:hover img {
  transform: scale(1.012);
}

.gallery-stage img.is-swapping {
  opacity: 0;
  transform: scale(1.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 150px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--soft);
  transition: transform 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 19, 0.16);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover,
.gallery-item.is-current {
  border-color: var(--red);
  transform: translateY(-2px);
}

.gallery-item:hover::after,
.gallery-item.is-current::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.image-lightbox {
  position: fixed;
  inset: 24px;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(16, 25, 35, 0.9);
  backdrop-filter: blur(10px);
}

.image-lightbox[open] {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  animation: dialogIn 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox figure {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.image-lightbox figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-align: center;
}

.image-lightbox__close,
.image-lightbox__nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, background 0.22s ease;
}

.image-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
}

.image-lightbox__close:hover,
.image-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.page-title {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.contact-experience {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.contact-experience__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.contact-experience__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact-experience__heading p:not(.section-kicker) {
  max-width: 58ch;
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

.contact-layout--enhanced {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 54px);
}

.contact-form,
.dialog-form {
  display: grid;
  gap: 16px;
}

.contact-form--card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.88);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-form--card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
}

.contact-form__intro {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-form__intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.netlify-honeypot {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d9dd;
  border-radius: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f9fafb;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(23, 85, 155, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 85, 155, 0.08);
  outline: 0;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.was-validated input:invalid,
.was-validated textarea:invalid,
.was-validated .checkline input:invalid {
  border-color: var(--red);
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.checkline input {
  width: auto;
  margin-top: 6px;
}

.form-feedback {
  min-height: 26px;
  margin: 0;
  color: var(--red);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.form-feedback.has-message {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.is-success {
  color: var(--blue);
}

.dialog-form[aria-busy="true"] {
  opacity: 0.72;
}

.dialog-form[aria-busy="true"] .button {
  cursor: wait;
}

.dialog-form.form-submitted {
  animation: formConfirmed 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-card--featured {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 34px);
}

.contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.contact-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-card li {
  margin-bottom: 10px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #f8f9fa;
  border: 1px solid rgba(222, 222, 222, 0.82);
  border-radius: 8px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-method:hover {
  background: #fff;
  border-color: rgba(23, 85, 155, 0.2);
  transform: translateY(-2px);
}

.contact-method .action-icon {
  width: 42px;
  height: 42px;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method strong {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-method span {
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-quick-actions .button {
  width: 100%;
}

.contact-visual {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(1.02);
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 25, 35, 0.78), rgba(16, 25, 35, 0.04));
}

.contact-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  max-width: 360px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.contact-visual span {
  display: block;
  margin-bottom: 8px;
  color: #ff7048;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-assurance {
  background: #f6f7f8;
}

.contact-page main > .contact-assurance {
  width: 100%;
  margin: 0;
  padding: 112px max(20px, calc((100vw - 1140px) / 2));
}

.contact-assurance-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 1fr 0.92fr;
  gap: 16px;
}

.contact-assurance-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(222, 222, 222, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-assurance-grid article:hover {
  border-color: rgba(23, 85, 155, 0.22);
  box-shadow: 0 22px 58px rgba(23, 85, 155, 0.12);
  transform: translateY(-4px);
}

.contact-assurance-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-assurance-grid p {
  margin: 0;
  font-weight: 300;
}

.legal-content h2 {
  margin: 42px 0 18px;
  color: var(--ink);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #101923;
  overflow: hidden;
}

.footer-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(52px, 6vw, 74px) max(20px, calc((100vw - 1140px) / 2));
  background: #164a86;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 25, 35, 0.18), rgba(16, 25, 35, 0.02)),
    url("/assets/img/capcorse3.jpg") center / cover;
  opacity: 0.2;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--red);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
}

.footer-cta .section-kicker {
  color: #ff7048;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.footer-cta p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 300;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-main {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 68px) 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand {
  max-width: 310px;
}

.footer-logo img {
  width: 184px;
}

.footer-logo {
  display: inline-flex;
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 300;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-column p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a,
.footer-column span,
.footer-socials a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a {
  width: fit-content;
  font-weight: 400;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-column a:hover {
  transform: translateX(3px);
}

.footer-column strong,
.footer-column span {
  display: block;
}

.footer-column strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-column span {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 300;
}

.footer-socials {
  margin-top: 22px;
  gap: 12px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.footer-bottom__inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  translate: -50% -50%;
  width: min(980px, calc(100vw - 32px));
  max-height: min(820px, calc(100dvh - 32px));
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  overflow: auto;
  overscroll-behavior: contain;
}

.tool-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  translate: -50% -50%;
  width: min(1120px, calc(100vw - 32px));
  max-height: min(860px, calc(100dvh - 32px));
  overflow: auto;
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: clamp(28px, 4vw, 52px);
  color: var(--text);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  overscroll-behavior: contain;
}

.tool-dialog--compact {
  width: min(820px, calc(100vw - 32px));
}

.contact-dialog::backdrop {
  background: rgba(20, 19, 19, 0.72);
  backdrop-filter: blur(8px);
}

.tool-dialog::backdrop {
  background: rgba(20, 19, 19, 0.76);
  backdrop-filter: blur(8px);
}

.tool-dialog .section {
  width: auto;
  padding: 0;
}

.tool-dialog .section-heading {
  margin-bottom: 28px;
}

.tool-dialog .simulator-result {
  position: static;
}

.contact-dialog[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: dialogIn 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-dialog[open] {
  animation: dialogIn 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.dialog-media {
  min-height: 620px;
  background: url("/assets/img/contact.jpg") center / cover;
}

.dialog-form {
  padding: clamp(32px, 5vw, 58px);
  background: #fff;
}

.dialog-form h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.plan-dialog__media {
  background-image: url("/assets/img/programme.jpg");
}

.brochure-dialog__media {
  background-image: url("/assets/img/s3c-lucciana-2.jpg");
}

.plan-dialog__intro {
  margin: -4px 0 6px;
  color: var(--text);
  font-weight: 300;
}

.plan-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dialog-close:hover {
  background: #c8421b;
  transform: rotate(8deg) scale(1.04);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  width: min(720px, calc(100vw - 40px));
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 4px 0 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

[hidden] {
  display: none !important;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 45ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rippleOut {
  to {
    opacity: 0;
    transform: scale(2.8);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes accordionReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formConfirmed {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.012);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes mediaFade {
  from {
    opacity: 0.72;
    transform: scale(1.01);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .hero__label,
  .hero h1,
  .hero .button,
  .program-hero__content,
  .program-hero__image {
    animation: none;
  }
}

@media (max-width: 960px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu,
  .header-cta {
    grid-column: 1 / -1;
  }

  .site-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu__mobile-contact {
    display: block;
  }

  .home .site-header:not(.is-scrolled) .site-menu.is-open {
    margin-bottom: 18px;
    padding: 18px;
    background: rgba(20, 19, 19, 0.56);
    border-top: 0;
    border-radius: 8px;
    backdrop-filter: blur(14px);
  }

  .header-cta {
    display: none;
  }

  .split,
  .program-copy,
  .objectives,
  .program-hero,
  .program-actions,
  .figures-band,
  .trust-grid,
  .commitment-list,
  .team-grid,
  .legal-grid,
  .partner-logo-grid,
  .simulator-grid,
  .gallery-showcase,
  .unit-row,
  .contact-layout,
  .contact-experience__heading,
  .contact-assurance-grid,
  .footer-cta__inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-experience__heading {
    align-items: start;
  }

  .contact-assurance-grid article {
    min-height: 0;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta__actions {
    justify-content: flex-start;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom__inner div {
    justify-content: flex-start;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simulator-result {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-stage,
  .gallery-stage img {
    min-height: 420px;
  }

  .image-lightbox[open] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .image-lightbox__close,
  .image-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .unit-row__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .contact-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1140px);
    --heading-copy-gap: 22px;
    --section-heading-gap: 36px;
  }

  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 140px;
  }

  .hero h1,
  .page-title h1,
  .program-hero h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .section-heading h2,
  .split h2,
  .objectives h2,
  .cta-band h2,
  .program-copy h2,
  .gallery-section h2,
  .contact-experience__heading h2,
  .category-head h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero {
    min-height: 66dvh;
  }

  .hero__inner {
    padding: 80px 0 92px;
  }

  .section {
    padding: 64px 0;
  }

  .programme-detail main > .section:not(.program-hero) {
    padding: 76px 20px;
  }

  .home main > .section,
  .entreprise-page main > .section,
  .contact-page main > .contact-assurance {
    padding: 76px 20px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-details,
  .action-grid,
  .simulator-form,
  .unit-row__details,
  .gallery-grid,
  .partner-logo-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form--card,
  .contact-card--featured,
  .contact-assurance-grid article {
    padding: 24px 20px;
  }

  .contact-method {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .contact-method .action-icon {
    width: 38px;
    height: 38px;
  }

  .contact-visual,
  .contact-visual img {
    min-height: 280px;
  }

  .program-card__topline,
  .program-card__facts div,
  .simulator-result div {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-card__availability,
  .program-card__facts dd,
  .simulator-result dd {
    text-align: left;
  }

  .category-head,
  .team-grid article,
  .placeholder-tool {
    grid-template-columns: 1fr;
  }

  .team-grid article,
  .placeholder-tool {
    display: grid;
  }

  .team-grid img {
    width: 100%;
    height: 240px;
  }

  .unit-accordion summary,
  .unit-row {
    padding: 18px;
  }

  .unit-row__plan {
    width: 100%;
    min-width: 0;
  }

  .unit-accordion summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .unit-accordion summary strong {
    margin-left: 0;
  }

  .gallery-stage,
  .gallery-stage img {
    min-height: 300px;
  }

  .gallery-stage::after {
    opacity: 1;
    transform: none;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 128px;
  }

  .image-lightbox {
    inset: 12px;
  }

  .image-lightbox[open] {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .image-lightbox figure {
    grid-column: 1 / -1;
    order: 1;
  }

  .image-lightbox__nav {
    order: 2;
    justify-self: center;
  }

  .image-lightbox__close {
    top: 0;
    right: 0;
  }

  .image-lightbox img {
    max-height: calc(100dvh - 150px);
  }

  .split__media img {
    min-height: 280px;
  }

  .program-hero {
    padding-top: 56px;
  }

  .program-hero__image img {
    height: 320px;
  }

  .program-copy__media img {
    height: 300px;
    min-height: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-wrap: wrap;
  }

  .footer-cta__actions,
  .footer-cta__actions .button {
    width: 100%;
  }

  .action-grid .button {
    min-height: 68px;
    padding: 16px;
  }

  .action-icon {
    width: 34px;
    height: 34px;
  }

  .action-icon svg {
    width: 20px;
    height: 20px;
  }

  .dialog-form {
    padding: 32px 22px;
  }

  .contact-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .tool-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 30px 18px;
  }

  .simulator-result {
    padding: 24px 20px;
  }

  .simulator-result strong {
    font-size: clamp(32px, 13vw, 48px);
  }
}
