/* ── Self-hosted fonts ──────────────────────────────────────────── */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/montserrat-v31-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/montserrat-v31-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/montserrat-v31-latin_latin-ext-700.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/montserrat-v31-latin_latin-ext-800.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/open-sans-v44-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/open-sans-v44-latin_latin-ext-500.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/open-sans-v44-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/open-sans-v44-latin_latin-ext-700.woff2') format('woff2'); }

:root {
  --accent: #c84245;
  --accent-dark: #9d2f32;
  --text: #3f3533;
  --muted: #6e6763;
  --surface: #ffffff;
  --surface-soft: #fbf7f3;
  --surface-alt: #f6efe8;
  --border: #eadfd6;
  --shadow: 0 18px 36px rgba(72, 42, 30, 0.07);
  --max-width: 1280px;
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.grid-2col > * {
  min-width: 0;
}

.theme-steel {
  --accent: #476a80;
  --accent-dark: #2f4a5c;
  --border: #e0e8ee;
  --surface-soft: #f7fafc;
  --surface-alt: #eef4f7;
  --shadow: 0 20px 40px rgba(28, 40, 49, 0.08);
}

.theme-steel main {
  background:
    radial-gradient(circle at top right, rgba(95, 130, 150, 0.09) 0%, rgba(95, 130, 150, 0) 28%),
    radial-gradient(circle at top left, rgba(212, 79, 83, 0.05) 0%, rgba(212, 79, 83, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 252, 1) 100%);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

a:hover {
  color: var(--accent-dark);
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: "Montserrat", Arial, sans-serif;
  color: #2f2725;
}

ul,
ol {
  padding-left: 1.25rem;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 219, 211, 0.9);
}

.theme-steel .site-header {
  border-bottom-color: rgba(219, 231, 239, 0.94);
  box-shadow: 0 10px 24px rgba(39, 60, 76, 0.05);
}

.site-header .container {
  width: min(100%, var(--max-width));
  padding-left: 0.45rem;
  padding-right: 0.7rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 90px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  flex: 0 0 auto;
}

.brand img {
  width: 78px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 14px rgba(33, 29, 28, 0.06));
}

.brand-copy {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
  max-width: 292px;
}

.brand-title {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.22;
  text-transform: uppercase;
  font-size: 0.94rem;
  color: #2f2725;
}

.brand-subtitle {
  display: block;
  font-size: 0.88rem;
  color: #7c6962;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-left: 2.1rem;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 1.08rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item--mobile-only {
  display: list-item;
}

.nav-item--lang {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  white-space: nowrap;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #433634;
}

.lang-current {
  min-width: 76px;
}

.nav-link:hover,
.nav-link.is-active,
.nav-item.has-dropdown:hover > .nav-link {
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: calc(100% - 14px);
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 0.9rem 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #433634;
}

.dropdown a:hover,
.dropdown a.is-active {
  color: var(--accent);
  background: rgba(200, 66, 69, 0.08);
}

.theme-steel .dropdown a:hover,
.theme-steel .dropdown a.is-active {
  background: rgba(59, 92, 113, 0.08);
}

.lang-switcher {
  position: relative;
  margin-left: auto;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(72, 42, 30, 0.06);
  color: #5e4f4c;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 2rem 0.6rem 0.95rem;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-current::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9rem;
  width: 7px;
  height: 7px;
  border-right: 2px solid #8b7d78;
  border-bottom: 2px solid #8b7d78;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.lang-current:hover {
  color: var(--accent);
  border-color: #d9c5bb;
}

.theme-steel .lang-current,
.theme-steel .lang-menu {
  border-color: #dfe6eb;
  box-shadow: 0 12px 28px rgba(22, 34, 44, 0.07);
}

.theme-steel .lang-current:hover {
  border-color: #c8d3db;
  color: #325164;
}

.lang-switcher.is-open .lang-current {
  box-shadow: 0 14px 28px rgba(72, 42, 30, 0.1);
}

.lang-switcher.is-open .lang-current::after {
  transform: translateY(-30%) rotate(-135deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 84px;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 32px rgba(72, 42, 30, 0.12);
}

.lang-switcher.is-open .lang-menu {
  display: grid;
  gap: 0.25rem;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5e4f4c;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.55rem 0.85rem;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-button:hover {
  background: rgba(200, 66, 69, 0.08);
  color: var(--accent);
}

.theme-steel .lang-button:hover {
  background: rgba(59, 92, 113, 0.08);
}

.lang-button.is-active {
  background: var(--accent);
  color: #fff;
}

.lang-button.is-active:hover {
  background: var(--accent-dark);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(15, 11, 10, 0.2) 0%, rgba(15, 11, 10, 0.08) 100%),
    var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58px;
  background: rgba(255, 255, 255, 0.98);
  clip-path: polygon(0 100%, 0 55%, 50% 0, 100% 55%, 100% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7.6rem 0 6.8rem;
  text-align: center;
}

.hero--small .hero-inner {
  padding: 6rem 0 5.35rem;
}

.hero--plain {
  color: #243341;
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f7 100%);
  background-image: none;
}

.hero--plain::after {
  display: none;
}

.hero--plain .hero-inner {
  padding: 4.6rem 0 3.3rem;
}

.hero--plain .hero-title {
  color: #243341;
  font-style: normal;
  text-shadow: none;
}

.hero--plain .hero-subtitle {
  color: #5e7483;
}

.hero--plain .hero-kicker {
  border-color: #d8e1e8;
  background: #fff;
  color: #4f697b;
  backdrop-filter: none;
}

.hero-title {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.hero-subtitle {
  width: min(100%, 760px);
  margin: 1rem auto 0;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.97);
}

.theme-steel .hero {
  background-image:
    linear-gradient(145deg, rgba(11, 15, 19, 0.38) 0%, rgba(47, 66, 81, 0.16) 100%),
    var(--hero-image);
}

.theme-steel .hero::after {
  background: rgba(247, 249, 251, 0.98);
}

.theme-steel .hero-title {
  text-shadow: 0 8px 20px rgba(7, 12, 18, 0.26);
}

.theme-steel .hero-subtitle {
  color: rgba(248, 252, 255, 0.97);
}

.theme-steel .hero--plain {
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f7 100%);
  background-image: none;
}

.theme-steel .hero--plain .hero-title {
  text-shadow: none;
}

.theme-steel .hero--plain .hero-subtitle {
  color: #5e7483;
}

.hero--welcome {
  min-height: clamp(560px, calc(100vh - 90px), 760px);
  /* Position pilotée par --hero-pos (définie en inline style) */
  background-position: var(--hero-pos, center center);
}

.hero--welcome::after {
  display: none;
}

.hero--welcome .hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 6.8rem 0 6rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 252, 255, 0.96);
}

.hero--welcome .hero-title {
  font-style: normal;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero--welcome .hero-subtitle {
  width: min(100%, 900px);
  font-size: 1.12rem;
}

.home-hero {
  padding: 0.9rem 0 2.2rem;
}

.home-hero .container {
  width: min(94%, calc(var(--max-width) + 1.5rem));
}

.home-hero-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(97, 137, 162, 0.12) 0%, rgba(97, 137, 162, 0) 26%),
    linear-gradient(135deg, #20252d 0%, #2a313a 54%, #232931 100%);
  box-shadow: 0 26px 60px rgba(15, 26, 35, 0.16);
}

.home-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 25, 0.05) 0%, rgba(14, 18, 25, 0) 32%, rgba(14, 18, 25, 0) 72%, rgba(14, 18, 25, 0.08) 100%);
  pointer-events: none;
}

.home-hero__media {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(5, 9, 13, 0.24);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media--main {
  top: 0;
  left: 0;
  width: min(43%, 560px);
  height: 100%;
  border-radius: 30px 0 0 30px;
}

.home-hero__media--side {
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(23%, 320px);
  height: 230px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero__panel {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5.3rem 5.2rem 5rem calc(43% + 4.25rem);
  text-align: left;
  color: #fff;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 250, 253, 0.94);
}

.home-hero__title {
  max-width: 620px;
  margin-bottom: 0;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.45rem, 4.8vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 26px rgba(7, 11, 16, 0.24);
}

.home-hero__subtitle {
  width: min(100%, 560px);
  margin: 1rem 0 0;
  font-size: 1.02rem;
  color: rgba(241, 247, 252, 0.92);
}

.home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.home-hero__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.home-hero__actions {
  justify-content: center;
  margin-top: 0;
}

.home-hero__actions .btn {
  min-width: 190px;
}

.home-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  width: 100%;
}

.home-hero__secondary {
  margin-top: 0;
  justify-content: center;
}

.home-hero__secondary .btn {
  min-width: 220px;
}

.theme-steel .home-hero__actions .btn--solid {
  border-color: #5b88a1;
  background: linear-gradient(135deg, #4d738a 0%, #82acc5 100%);
  box-shadow: 0 16px 30px rgba(54, 84, 102, 0.22);
}

.theme-steel .home-hero__actions .btn--solid:hover {
  border-color: #42657b;
  background: linear-gradient(135deg, #42657b 0%, #6f96af 100%);
}

.theme-steel .home-hero__actions .btn--light {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.page-home .hero-inner {
  align-items: center;
}

.page-home .home-hero__actions,
.page-home .home-hero__secondary {
  width: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-hero__actions .btn,
.page-home .home-hero__secondary .btn {
  flex: 0 0 auto;
}

.section {
  padding: 4rem 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--alt {
  background: var(--surface-alt);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.theme-steel .section-intro,
.theme-steel .copy-card p,
.theme-steel .card p,
.theme-steel .cta-panel p,
.theme-steel .contact-card p,
.theme-steel .timeline-item p,
.theme-steel .doc-card p,
.theme-steel .brand-subtitle,
.theme-steel .footer-links a {
  color: #606d77;
}

.theme-steel .footer-links a:hover {
  color: #476a80;
}

.theme-steel .eyebrow {
  color: #567b92;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.media-card,
.copy-card,
.card,
.stat,
.contact-card,
.timeline-item,
.doc-card,
.cta-panel,
.sponsor {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card {
  padding: 1.1rem;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 14px;
}

.theme-steel .media-card,
.theme-steel .copy-card,
.theme-steel .card,
.theme-steel .stat,
.theme-steel .contact-card,
.theme-steel .timeline-item,
.theme-steel .doc-card,
.theme-steel .cta-panel,
.theme-steel .sponsor,
.theme-steel .embed-frame {
  border-color: rgba(88, 118, 136, 0.12);
  box-shadow: 0 18px 34px rgba(36, 52, 64, 0.07);
}

.theme-steel .copy-card,
.theme-steel .card,
.theme-steel .stat,
.theme-steel .contact-card,
.theme-steel .timeline-item,
.theme-steel .doc-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 253, 0.96) 100%),
    #fff;
}

.theme-steel .sponsor {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 253, 0.96) 100%),
    #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-steel .sponsor:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 92, 113, 0.22);
  box-shadow: 0 20px 42px rgba(28, 38, 47, 0.11);
}

.image-natural {
  aspect-ratio: auto !important;
  max-height: 760px;
}

.copy-card {
  padding: 2.15rem;
}

.copy-card p:last-child,
.card p:last-child,
.timeline-item p:last-child,
.doc-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-actions {
  display: none;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions .btn {
  min-width: clamp(180px, 20vw, 230px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: transparent;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: #fff;
}

.btn--solid {
  background: var(--accent);
  color: #fff;
}

.btn--solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--accent);
}

.theme-steel .btn {
  border-color: #5f8094;
  color: #3f6278;
  background: rgba(95, 128, 148, 0.05);
}

.theme-steel .btn:hover {
  background: #3f6278;
  border-color: #3f6278;
  color: #fff;
}

.theme-steel .btn--solid {
  border-color: #45657b;
  background: linear-gradient(135deg, #4a6f86 0%, #7aa0b5 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(55, 88, 108, 0.15);
}

.theme-steel .btn--solid:hover {
  border-color: #355367;
  background: linear-gradient(135deg, #3d5f74 0%, #688ca2 100%);
  color: #fff;
}

.theme-steel .btn--light {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(6px);
}

.theme-steel .btn--light:hover {
  border-color: #fff;
  background: #fff;
  color: #324b5d;
}

.theme-steel .hero--plain .hero-actions .btn--light {
  border-color: #5f8094;
  background: rgba(255, 255, 255, 0.94);
  color: #3f6278;
  backdrop-filter: none;
}

.theme-steel .hero--plain .hero-actions .btn--light:hover {
  border-color: #3f6278;
  background: #3f6278;
  color: #fff;
}

.social-cta {
  gap: 0.55rem;
}

.social-cta svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-cta span {
  line-height: 1;
}

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

.card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.copy-card:hover,
.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(40, 56, 69, 0.09);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1.45rem;
}

.card-title {
  font-size: 1.28rem;
}

.card p {
  color: var(--muted);
}

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

.stat {
  padding: 1.5rem;
}

.stat-value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1.35rem 1.5rem;
  border-left: 5px solid var(--accent);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.doc-grid,
.contact-grid,
.gallery,
.sponsors-grid {
  display: grid;
  gap: 1rem;
}

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

.doc-card {
  padding: 1.5rem;
}

.doc-type {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(200, 66, 69, 0.08);
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-steel .doc-type {
  background: rgba(59, 92, 113, 0.09);
  color: #3b5c71;
}

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

.contact-card {
  padding: 1.5rem;
}

.contact-card h3 {
  font-size: 1.1rem;
}

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

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

.gallery--2col img {
  aspect-ratio: 16 / 10;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.embed-frame {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.sponsors-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sponsors-grid--event {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 168px;
  padding: 1.1rem;
}

.sponsor img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
}

.sponsor--valiant img {
  max-height: 60px;
}

.sponsor--rolle img {
  max-height: 130px;
  mix-blend-mode: multiply;
}

.sponsor--event {
  min-height: 148px;
  padding: 1.35rem;
}

.sponsor--event img {
  max-height: 88px;
}

.sponsor--freesport img {
  max-height: 120px;
}

.sponsor--mauroux img {
  max-height: 110px;
}

.sponsor--tfl {
  align-items: flex-end;
  padding-bottom: 1rem;
}

.sponsor--tfl img {
  max-height: 104px;
  transform: translateY(10px) scale(1.06);
}

.sponsor--kfs img {
  max-height: 104px;
  transform: scale(1.1);
}

.sponsor--helfer img {
  max-height: 104px;
  transform: scale(1.12);
}

.mobile-sponsors-shortcut {
  display: none;
  margin-top: 1rem;
}

.mobile-sponsors-card {
  text-align: center;
}

.mobile-sponsors-card .actions {
  justify-content: center;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.8rem 2rem;
}

.cta-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel--club {
  position: relative;
  overflow: hidden;
  border-color: rgba(59, 92, 113, 0.2);
  background:
    radial-gradient(circle at top right, rgba(95, 130, 150, 0.16) 0%, rgba(95, 130, 150, 0) 38%),
    linear-gradient(135deg, rgba(250, 252, 253, 1) 0%, rgba(240, 246, 250, 1) 100%);
  box-shadow: 0 20px 40px rgba(45, 67, 82, 0.1);
}

.cta-panel--club::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #4d7088 0%, #8aaabd 100%);
}

.cta-panel--club h2 {
  color: #22323d;
}

.cta-panel--club p {
  color: #61737f;
}

.btn--club-solid {
  border-color: #47697f;
  background: linear-gradient(135deg, #4b7087 0%, #7da2b8 100%);
  box-shadow: 0 16px 30px rgba(60, 95, 117, 0.16);
}

.btn--club-solid:hover {
  border-color: #39576b;
  background: linear-gradient(135deg, #3d5f74 0%, #67889d 100%);
}

.btn--club-outline {
  border-color: #64879d;
  background: rgba(100, 135, 157, 0.08);
  color: #3f6278;
}

.btn--club-outline:hover {
  border-color: #3f6278;
  background: #3f6278;
  color: #fff;
}

.note {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: rgba(200, 66, 69, 0.08);
  color: #4a403d;
}

.theme-steel .note {
  background: rgba(59, 92, 113, 0.08);
  color: #465864;
}

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

.form-card,
.info-card,
.status-banner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-card,
.info-card {
  padding: 1.75rem;
}

.status-banner {
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
}

.status-banner p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.status-banner--success {
  border-color: rgba(53, 129, 90, 0.24);
  background: rgba(53, 129, 90, 0.08);
}

.status-banner--error {
  border-color: rgba(200, 66, 69, 0.24);
  background: rgba(200, 66, 69, 0.08);
}

.form-intro {
  margin-bottom: 1.25rem;
}

.form-intro p {
  color: var(--muted);
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.92rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(71, 106, 128, 0.12);
}

.field-note,
.helper-list {
  color: var(--muted);
}

.helper-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.helper-list li {
  position: relative;
  padding-left: 1.15rem;
}

.helper-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  margin-top: 2rem;
}

.footer-top {
  position: relative;
  padding: 4.25rem 0 3rem;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
}

.theme-steel .footer-top {
  background:
    radial-gradient(circle at top right, rgba(80, 110, 129, 0.08) 0%, rgba(80, 110, 129, 0) 32%),
    linear-gradient(180deg, rgba(243, 247, 250, 0.98) 0%, rgba(238, 242, 246, 0.95) 100%);
}

.footer-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 54px;
  transform: translateY(-100%);
  background: var(--surface-soft);
  clip-path: polygon(0 100%, 0 40%, 50% 0, 100% 40%, 100% 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #443836;
  display: inline-block;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-logo {
  max-width: 100px;
  border-radius: 8px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.82rem;
  color: #606d77;
  line-height: 1.6;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.social-link svg {
  display: block;
  width: 18px;
  height: 18px;
}

/* Facebook */
.social-cta[href*="facebook.com"],
.social-link[href*="facebook.com"] {
  background: #fff;
  color: #1877f2;
  border-color: #1877f2;
}
.social-cta[href*="facebook.com"] { box-shadow: none; }
.social-cta[href*="facebook.com"]:hover,
.social-link[href*="facebook.com"]:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

/* Instagram */
.social-cta[href*="instagram.com"],
.social-link[href*="instagram.com"] {
  background: #fff;
  color: #c13584;
  border-color: #c13584;
}
.social-cta[href*="instagram.com"]:hover,
.social-link[href*="instagram.com"]:hover {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 55%, #6228d7 100%);
  border-color: #ee2a7b;
  color: #fff;
}

/* X / Twitter */
.social-cta[href*="twitter.com"],
.social-link[href*="twitter.com"] {
  background: #fff;
  color: #111;
  border-color: #111;
}
.social-cta[href*="twitter.com"]:hover,
.social-link[href*="twitter.com"]:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.social-link:hover {
  color: #fff;
  background: var(--accent);
}

.footer-bottom {
  padding: 1rem 0;
  background: #eaded5;
  color: #5d5652;
  font-size: 0.94rem;
  text-align: center;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 1rem;
  }

  .home-hero-stage,
  .home-hero__panel {
    min-height: 610px;
  }

  .home-hero__panel {
    padding: 6.6rem 14% 5.8rem;
  }

  .home-hero__media--main {
    width: 47%;
    height: 69%;
  }

  .home-hero__media--side {
    width: 34%;
    height: 40%;
  }

  .cards-grid,
  .doc-grid,
  .contact-grid,
  .footer-grid,
  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(36, 52, 64, 0.08);
  }

  .site-header .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .header-inner {
    gap: 0.9rem;
    min-height: 82px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 22px 44px rgba(26, 40, 50, 0.12);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 0.85rem 0.95rem;
  }

  .nav-item {
    border-top: 0;
  }

  .nav-item + .nav-item {
    border-top: 1px solid rgba(231, 219, 211, 0.8);
  }

  .nav-item--mobile-only {
    display: block;
  }

  /* Language switcher : segmented control en haut du menu */
  .nav-item--lang {
    margin-left: 0;
    order: -1;
    padding: 0.55rem 0 0.65rem;
    border-bottom: 1px solid rgba(231, 219, 211, 0.55);
  }

  .lang-switcher {
    margin-left: 0;
    width: 100%;
  }

  .lang-current {
    display: none !important;
  }

  .lang-menu {
    display: flex !important;
    flex-direction: row;
    gap: 0;
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 4px;
    border-radius: 14px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.07);
    background: rgba(0,0,0,0.05);
    border: none;
  }

  .theme-steel .lang-menu {
    background: rgba(47,74,92,0.1);
  }

  .lang-button {
    flex: 1;
    min-height: 38px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--muted);
    box-shadow: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  }

  .lang-button.is-active {
    background: #fff;
    color: #2f4a5c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .theme-steel .lang-button.is-active {
    background: #fff;
    color: #2f4a5c;
  }

  .nav-link {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 1rem 0.45rem 1rem 0.55rem;
    font-size: 0.82rem;
  }

  .dropdown {
    position: static;
    min-width: 0;
    margin: 0.15rem 0 0.7rem;
    padding: 0.2rem 0 0.1rem 0.8rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .dropdown a {
    padding: 0.55rem 0.5rem;
    border-radius: 12px;
  }

  .split,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 0.8rem 0 2rem;
  }

  .home-hero-stage {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .home-hero__media,
  .home-hero__panel {
    position: relative;
  }

  .home-hero__media--main,
  .home-hero__media--side {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    border-radius: 24px;
  }

  .home-hero__media--main {
    order: 1;
  }

  .home-hero__media--side {
    order: 3;
  }

  .home-hero__media--main img {
    aspect-ratio: 16 / 10;
  }

  .home-hero__media--side img {
    aspect-ratio: 16 / 9;
  }

  .home-hero__panel {
    order: 2;
    min-height: auto;
    padding: 1.6rem 1.05rem 1.85rem;
  }

  .home-hero__title {
    font-size: clamp(2.5rem, 9vw, 4.4rem);
  }

  .home-hero__subtitle {
    font-size: 1rem;
  }

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

  .media-card {
    padding: 0.95rem;
  }

  .copy-card,
  .doc-card,
  .contact-card,
  .stat,
  .timeline-item,
  .cta-panel {
    padding: 1.55rem;
  }

  .actions {
    gap: 0.75rem;
  }

  .lang-current {
    width: 100%;
    justify-content: flex-start;
    min-height: 50px;
    padding-left: 1rem;
  }

  .hero-inner {
    padding: 6.8rem 0 6rem;
  }

  .hero--welcome .hero-inner {
    padding: 5.7rem 0 4.9rem;
  }

  .hero--small .hero-inner {
    padding: 4.9rem 0 4.1rem;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .header-inner {
    min-height: 78px;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand img {
    width: 56px;
  }

  .brand-copy {
    max-width: 220px;
  }

  .brand-title {
    font-size: 0.8rem;
    line-height: 1.18;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }

  .site-nav {
    left: 0.55rem;
    right: 0.55rem;
    top: calc(100% + 0.45rem);
    border-radius: 22px;
  }

  .nav-list {
    padding: 0.65rem 0.7rem 0.85rem;
  }

  .nav-link {
    padding: 0.95rem 0.4rem 0.95rem 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .dropdown {
    padding-left: 0.65rem;
  }

  .dropdown a {
    font-size: 0.76rem;
  }

  .section {
    padding: 2.45rem 0;
  }

  .section-intro {
    margin-bottom: 1.15rem;
  }

  .cards-grid,
  .doc-grid,
  .contact-grid,
  .gallery,
  .footer-grid,
  .sponsors-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .copy-card,
  .doc-card,
  .contact-card,
  .stat,
  .timeline-item,
  .cta-panel {
    padding: 1.05rem;
  }

  .media-card {
    padding: 0.7rem;
  }

  .media-card img {
    border-radius: 12px;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
  }

  .card img,
  .gallery img {
    max-height: 190px;
    object-fit: cover;
  }

  .home-sponsors-section {
    display: none;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    padding: 0.58rem 0.82rem;
  }

  .hero--welcome .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
    line-height: 1.06;
  }

  .hero--welcome .hero-subtitle {
    width: min(100%, 96%);
    font-size: 0.92rem;
  }

  .hero--welcome {
    min-height: clamp(330px, calc(100vh - 78px), 440px);
    /* Mobile : recadre l'image vers le centre-bas pour éviter de couper les sujets */
    background-position: center 55%;
  }

  .hero--welcome .hero-inner {
    padding: 2.8rem 0 2.4rem;
  }

  .hero--small .hero-inner,
  .hero--plain .hero-inner {
    padding: 3.35rem 0 2.45rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .embed-frame {
    min-height: 250px;
  }

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

  .form-card,
  .info-card {
    padding: 1.3rem;
  }

  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    padding: 2.7rem 0 2rem;
  }

  .footer-top::before {
    height: 34px;
  }

  .footer-grid {
    gap: 1.35rem;
  }

  .footer-logo {
    max-width: 120px;
  }

  .home-hero .container {
    width: min(95%, calc(var(--max-width) + 1rem));
  }

  .home-hero-stage {
    border-radius: 28px;
    padding: 0.8rem;
  }

  .home-hero__media--main,
  .home-hero__media--side {
    border-radius: 20px;
  }

  .home-hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .home-hero__title {
    font-size: clamp(2.1rem, 11vw, 3.35rem);
  }

  .home-hero__subtitle {
    font-size: 0.96rem;
  }

  .home-hero__tags span {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .home-hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-intro {
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  /* 1 colonne sur mobile pour éviter tout débordement */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline : 1 colonne sur mobile, padding réduit */
  .grid-2col {
    grid-template-columns: 1fr;
  }

  .grid-2col > article {
    padding: 1rem 1rem;
  }

  /* Sécurité anti-overflow sur les cards */
  .contact-card,
  .copy-card,
  .doc-card,
  .cta-panel,
  .card {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    max-width: 100%;
  }

  .cta-panel {
    text-align: left;
  }
}

/* ── Page header (no-photo elegant intro) ───────────────── */
.page-header {
  background: linear-gradient(140deg, #1a2e3f 0%, #2f4a5c 55%, #3a5d74 100%);
  padding: 4.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 110%, rgba(255,255,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner {
  position: relative;
}
.page-header-kicker {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.1rem;
}
.page-header-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1.3rem;
}
.page-header-rule {
  width: 2.75rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin: 0 auto 1.3rem;
}
.page-header-subtitle {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.page-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.page-header-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 640px) {
  .page-header { padding: 3.25rem 0 2.9rem; }
  .page-header-subtitle { font-size: 0.93rem; }
}

/* ── Results table ───────────────────────────────────────── */
.results-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #dce4ea;
  margin-top: 1.5rem;
}
.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 480px;
}
.results-table thead th {
  background: #2f4a5c;
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.results-table tbody tr {
  border-bottom: 1px solid #edf1f4;
  transition: background 0.12s;
}
.results-table tbody tr:last-child { border-bottom: none; }
.results-table tbody tr:hover { background: #f5f8fa; }
.results-table td {
  padding: 0.6rem 1rem;
  vertical-align: middle;
}
.results-table td:first-child {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #2f4a5c;
  white-space: nowrap;
}
.results-year--highlight { background: #eef6ff; }
.results-year--highlight td { font-weight: 600; }
.results-accordion {
  margin-top: 1.25rem;
  border: 1px solid #dce4ea;
  border-radius: 10px;
  overflow: hidden;
}
.results-accordion summary {
  cursor: pointer;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  background: #f5f8fa;
  color: #2f4a5c;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
.results-accordion summary::-webkit-details-marker { display: none; }
.results-accordion summary::before {
  content: '›';
  font-size: 1.15em;
  transition: transform 0.2s;
  display: inline-block;
  line-height: 1;
}
.results-accordion[open] summary::before { transform: rotate(90deg); }
.results-accordion .results-table-wrap {
  margin-top: 0;
  border: none;
  border-radius: 0;
  border-top: 1px solid #dce4ea;
}

/* Palmarès club */
.palmares-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  padding: 1.25rem 1.25rem 0;
}
.palmares-tables .results-table-wrap { margin-top: 0; border: 1px solid #dce4ea; border-radius: 8px; }
.palmares-tables--groupes { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.results-table--compact { min-width: 0; }
.palmares-download { text-align: center; padding: 1.25rem; }
.palmares-download p { margin-bottom: 0.75rem; color: #6b7f8a; font-size: 0.9rem; }
.palmares-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 2rem; }
.palmares-card { background: #fff; border: 1px solid #dce4ea; border-radius: 12px; padding: 1.75rem 1rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.palmares-card__year { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 800; color: #2f4a5c; line-height: 1; }
.palmares-year-content { padding: 1.25rem; }
.palmares-sub-title { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #2f4a5c; margin: 1.5rem 0 0.6rem; }
.palmares-sub-title:first-child { margin-top: 0; }
.palmares-cat-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: #5a7a8a; margin: 0.75rem 0 0.3rem; }
.palmares-cat-label:first-child { margin-top: 0; }
.results-table td.cat { font-size: 0.75rem; color: #5a7a8a; font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* ── Formulaires de contact ───────────────────────────────── */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group--half { max-width: 340px; }
.form-label { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #2f4a5c; }
.form-required { color: var(--accent); font-weight: 700; }
.form-hint { font-weight: 500; text-transform: none; font-size: 0.75rem; color: #6b7f8a; letter-spacing: 0; }
.form-control { width: 100%; padding: 0.7rem 0.9rem; font-family: 'Open Sans', sans-serif; font-size: 0.95rem; color: #3f3533; background: #fff; border: 1.5px solid #d0dce5; border-radius: 8px; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(71,106,128,.15); }
.form-control::placeholder { color: #aab8c2; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232f4a5c' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-required-note { font-size: 0.8rem; color: #6b7f8a; margin-bottom: 1.5rem; }
.form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.form-alert { padding: 0.9rem 1.1rem; border-radius: 8px; font-size: 0.92rem; margin-bottom: 1.5rem; font-weight: 500; }
.form-alert--error { background: #fff0f0; border: 1.5px solid #e8a0a0; color: #7a2020; }
.form-intro-card { display: flex; gap: 1rem; align-items: flex-start; background: #f0f6fa; border: 1.5px solid #d0dce5; border-left: 4px solid var(--accent); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 2rem; max-width: 720px; margin-left: auto; margin-right: auto; }
/* Phone country selector */
.phone-input-wrapper { display: flex; align-items: stretch; }
.phone-flag-select { flex-shrink: 0; min-width: 82px; padding: 0.7rem 0.5rem; font-family: 'Open Sans', sans-serif; font-size: 0.92rem; color: #3f3533; background: #f4f7fa; border: 1.5px solid #d0dce5; border-right: none; border-radius: 8px 0 0 8px; appearance: none; -webkit-appearance: none; cursor: pointer; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; }
.phone-flag-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(71,106,128,.15); position: relative; z-index: 1; }
.phone-input-wrapper .form-control { border-radius: 0 8px 8px 0; flex: 1; }
.form-intro-card__icon { flex-shrink: 0; width: 2rem; height: 2rem; color: var(--accent); margin-top: 0.1rem; }
.form-intro-card__icon svg { width: 100%; height: 100%; }

/* ── Page merci ───────────────────────────────────────────── */
.merci-section { min-height: 60vh; display: flex; align-items: center; }
.merci-card { max-width: 560px; margin: 0 auto; text-align: center; padding: 3rem 2rem; background: #fff; border: 1px solid #dce4ea; border-radius: 16px; box-shadow: 0 4px 24px rgba(47,74,92,.08); }
.merci-icon { width: 5rem; height: 5rem; margin: 0 auto 1.5rem; color: #2e9e6e; }
.merci-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.merci-title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; color: #2f4a5c; margin-bottom: 0.75rem; }
.merci-text { color: #6b7f8a; font-size: 1rem; line-height: 1.65; }

/* Essai intro grid */
.essai-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.essai-intro-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}
.essai-intro-facts {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}
.essai-fact {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.essai-fact__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 0.2rem;
  flex-shrink: 0;
  min-width: 1.8rem;
}
.essai-fact strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2f4a5c;
  margin-bottom: 0.3rem;
}
.essai-fact p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .essai-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .essai-intro-text .section-title {
    text-align: center !important;
  }
  .essai-intro-text { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   OPTIMISATIONS MOBILE — ne touche pas le desktop (>640px)
   ═══════════════════════════════════════════════════════════ */

/* ── 640px et moins ─────────────────────────────────────── */
@media (max-width: 640px) {

  /* 1. iOS : empêche le zoom auto au focus sur les champs
     (iOS zoome quand font-size < 16px)                     */
  .form-control,
  .phone-flag-select {
    font-size: 1rem;
  }

  /* 2. Container légèrement plus large sur petit écran     */
  .container {
    width: min(96%, var(--max-width));
  }

  /* 3. Page header : titre plus compact sur mobile         */
  .page-header-title {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
  }
  .page-header {
    padding: 2.8rem 0 2.4rem;
  }

  /* 4. Espacement sections : un peu plus de respiration    */
  .section {
    padding: 2rem 0;
  }

  /* 5. Formulaire : sélecteur téléphone s'adapte mieux     */
  .phone-flag-select {
    min-width: 74px;
    padding: 0.7rem 0.35rem;
  }

  /* 6. Merci card : padding réduit sur très petit écran    */
  .merci-card {
    padding: 2rem 1.25rem;
  }

  /* 7. Bouton pleine largeur dans les form-actions         */
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* 8. Split : image en second sur mobile (texte d'abord)  */
  .split .media-card {
    order: 2;
  }
  .split .copy-card {
    order: 1;
  }

  /* 9. Footer : masque le logo sur très petit écran        */
  .footer-brand {
    display: none;
  }
}

/* ── Supprime les effets hover sur tactile (pas de souris) ── */
@media (hover: none) {
  .btn:hover {
    transform: none;
  }
  .card:hover,
  .contact-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =====================
   Lightbox
   ===================== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 1.5rem;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  cursor: default;
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: 1.1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  padding: 0.2rem 0.5rem;
}

.lightbox-close:hover { opacity: 1; }

.gallery img,
.gallery--2col img {
  cursor: zoom-in;
}

/* ══════════════════════════════════════════════════════════
   AMÉLIORATIONS VISUELLES
   ══════════════════════════════════════════════════════════ */

/* ── Zoom image au survol des cards articles ─────────────── */
.card img {
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover img {
  transform: scale(1.04);
}

/* ── Logos sponsors : légère désaturation → couleur au survol */
.sponsor img {
  transition: filter 0.35s ease, opacity 0.35s ease;
  filter: grayscale(20%);
  opacity: 0.9;
}
.sponsor:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── Liens sociaux : lift au survol ─────────────────────── */
.social-link {
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, transform 0.22s ease,
              box-shadow 0.22s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.13);
}

/* ── Boutons : shadow dans la transition + plus de profondeur */
.btn {
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, transform 0.22s ease,
              box-shadow 0.22s ease;
}
.theme-steel .btn--solid {
  box-shadow: 0 8px 20px rgba(42, 64, 80, 0.18);
}
.theme-steel .btn--solid:hover {
  box-shadow: 0 12px 28px rgba(36, 60, 76, 0.26);
}

/* ── Ligne décorative sous les titres de section-intro ───── */
.section-intro .section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.6;
}

/* ── Footer bas : cohérence avec le thème steel ──────────── */
.theme-steel .footer-bottom {
  background: #d5dfe8;
  color: #4c5e6b;
}

/* ── Formulaire de contact : aspect carte soignée ────────── */
.contact-form {
  background: #fff;
  border: 1px solid #dce5ed;
  border-radius: 18px;
  padding: 2rem 2.25rem 1.75rem;
  box-shadow: 0 6px 28px rgba(36, 52, 64, 0.07);
}
@media (max-width: 640px) {
  .contact-form {
    padding: 1.4rem 1rem 1.25rem;
    border-radius: 14px;
  }
}

/* ── Cards : bordure subtile au survol ──────────────────── */
.theme-steel .card:hover {
  border-color: rgba(59, 92, 113, 0.22);
}

/* ── Copy-cards : ombre légèrement plus chaude au survol ─── */
.theme-steel .copy-card:hover,
.theme-steel .media-card:hover {
  box-shadow: 0 24px 44px rgba(36, 52, 64, 0.12);
}


/* ── Cookie consent banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  padding: 1.125rem 1.5rem;
  max-width: 660px;
  width: calc(100% - 2rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-text { margin: 0; flex: 1; font-size: 0.875rem; color: var(--muted); min-width: 180px; }
.cookie-actions { display: flex; gap: 0.625rem; flex-shrink: 0; }
@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 0; left: 0; transform: none; width: 100%; max-width: 100%; border-radius: var(--radius) var(--radius) 0 0; padding: 1rem; }
  .cookie-actions { justify-content: center; }
}

/* ── Map placeholder (carte refusée) ───────────────────────────── */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.map-placeholder p { margin: 0; }

/* ── Skip navigation link ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ── Page 404 ──────────────────────────────────────────────────── */
.not-found-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found-card {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.not-found-code {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(5rem, 20vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 0.5rem;
}

.not-found-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.not-found-text {
  color: var(--muted);
  margin: 0 0 0.5rem;
}

/* ══════════════════════════════════════════════════════════
   HERO — Animation à l'entrée (toutes les pages)
   ══════════════════════════════════════════════════════════ */

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero-kicker  { animation: hero-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-title   { animation: hero-in 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-subtitle { animation: hero-in 0.7s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero .actions, .hero .home-hero__cta {
  animation: hero-in 0.6s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-kicker, .hero-title, .hero-subtitle,
  .hero .actions, .hero .home-hero__cta {
    animation: none !important; opacity: 1 !important;
  }
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL — fade discret au scroll
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.reveal.is-visible { opacity: 1; }

/* Sponsors : pop en cascade */
@keyframes sponsor-in {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: none; }
}
.sponsor.reveal.is-visible {
  animation: sponsor-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.sponsors-grid .sponsor.reveal:nth-child(2).is-visible { animation-delay: 0.07s; }
.sponsors-grid .sponsor.reveal:nth-child(3).is-visible { animation-delay: 0.14s; }
.sponsors-grid .sponsor.reveal:nth-child(4).is-visible { animation-delay: 0.21s; }
.sponsors-grid .sponsor.reveal:nth-child(5).is-visible { animation-delay: 0.28s; }
.sponsors-grid .sponsor.reveal:nth-child(6).is-visible { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transition: none; }
  .sponsor.reveal.is-visible { animation: none; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT CARDS – hover desktop
   ══════════════════════════════════════════════════════════ */
.contact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              border-color 0.22s ease;
}
@media (hover: hover) {
  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(36, 52, 64, 0.11);
  }
  .theme-steel .contact-card:hover {
    border-color: rgba(59, 92, 113, 0.28);
  }
}

/* ══════════════════════════════════════════════════════════
   CTA PANEL – bordure accent en haut
   ══════════════════════════════════════════════════════════ */
.cta-panel {
  border-top: 3px solid var(--accent);
}
.theme-steel .cta-panel {
  border-top-color: #476a80;
}

/* ══════════════════════════════════════════════════════════
   NAV ACTIVE – indicateur soulignement
   ══════════════════════════════════════════════════════════ */
@media (min-width: 901px) {
  .nav-link {
    position: relative;
  }
  .nav-link.is-active::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.8;
  }
  .theme-steel .nav-link.is-active::after {
    background: #476a80;
  }
}
