:root {
  --teal: #1F5F66;
  --teal-dark: #144047;
  --teal-light: #2a7d86;
  --blue: #0d4f8b;
  --blue-dark: #082f55;
  --orange: #ED7A2D;
  --orange-soft: #f59555;
  --gray: #f4f5f7;
  --gray-soft: #f8fafc;
  --text: #111117;
  --text-light: #ffffff;
  --bg: #ffffff;
  --border: rgba(31, 95, 102, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.center-content {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.accent-orange { color: var(--orange); }
.white-text { color: #fff; }
.white-text-soft { color: rgba(255, 255, 255, 0.85); }
.muted { color: #6b7280; font-size: 0.92rem; margin-top: 0.2rem; }

/* ===== HEADER (UNCHANGED LAYOUT) ===== */
.header .container {
  width: 100%;
  max-width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-dark);
  border: 2px solid #fff;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: none;
}

.brand {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  padding: 0.4rem 0.55rem;
}

.brand img { width: 80px; height: auto; }

.top-links {
  grid-column: 2 / span 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-height: 38px;
  padding: 0 1.5rem 0 1rem;
  border-left: 2px solid #fff;
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.top-links a { color: #fff; text-decoration: none; padding: 0.1rem 0; }
.top-links a + a {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}
.top-links a:hover,
.top-links a:focus-visible { opacity: 0.85; }

.nav-grid {
  grid-row: 2;
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 80px;
  gap: 0;
  align-items: stretch;
  min-height: 80px;
}

.nav-grid a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  padding: 1rem 1.4rem;
  border: 2px solid #fff;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  min-height: 68px;
}
.nav-grid a + a { border-left: none; }
.nav-grid a:hover,
.nav-grid a:focus-visible { background: rgba(255, 255, 255, 0.12); }

.nav-grid .nav-cta.alt,
.nav-grid a:last-child,
.nav-grid .nav-cta {
  background: var(--orange);
  color: var(--teal-dark);
  border-color: #fff;
}
.nav-grid .nav-cta {
  background: var(--orange);
  color: var(--teal-dark);
  border-color: #fff;
  box-shadow: 0 18px 40px rgba(255, 106, 16, 0.18);
}
.nav-grid .button-primary:hover,
.nav-grid .nav-cta:hover {
  transform: none;
  background: #d96a20;
  color: #fff;
}
.nav-grid .nav-cta.alt {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}
.nav-grid .nav-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav-links { display: none; }

/* ===== LIGHTBOX (Gallery viewer) ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 20, 24, 0.94);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: var(--teal-dark);
  animation: lb-zoom 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes lb-zoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.lightbox-counter {
  position: absolute;
  top: -2.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
  z-index: 10;
  display: grid;
  place-items: center;
  font-family: inherit;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox-close:hover { transform: scale(1.08) rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  font-size: 1.4rem;
}
.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Gallery hover hint */
.gallery-item {
  cursor: zoom-in;
  position: relative;
}
.gallery-item::after {
  content: "🔍";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 720px) {
  .lightbox { padding: 1rem; }
  .lightbox-close { width: 42px; height: 42px; font-size: 1.6rem; top: 0.6rem; right: 0.6rem; }
  .lightbox-prev,
  .lightbox-next { width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-img { max-height: 70vh; border-radius: 8px; }
  .lightbox-counter { top: -2rem; font-size: 0.75rem; }
}

/* ===== FULLSCREEN MENU (Desktop hamburger) ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--teal-dark);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fs-logo {
  display: block;
  align-self: flex-start;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 200ms ease;
}
.fs-logo img {
  width: 200px;
  height: auto;
  display: block;
}
.fs-logo:hover { transform: scale(1.05); }

/* Ultra-wide / 4K */
@media (min-width: 1800px) {
  .fs-logo img { width: 280px; }
}
@media (min-width: 1400px) and (max-width: 1799px) {
  .fs-logo img { width: 240px; }
}

/* Petit desktop / tablette landscape */
@media (max-width: 1200px) {
  .fs-logo img { width: 160px; }
}

/* Tablette portrait */
@media (max-width: 980px) {
  .fs-logo img { width: 120px; }
  .fs-logo { margin-bottom: 1rem; }
}

/* Mobile */
@media (max-width: 720px) {
  .fs-logo img { width: 100px; }
}

@media (max-width: 480px) {
  .fs-logo img { width: 80px; }
}

.fullscreen-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  z-index: 5;
  transition: transform 180ms ease;
}
.fullscreen-close:hover { transform: rotate(90deg); }

.fullscreen-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 0;
  overflow: hidden;
}

.fs-main {
  background: var(--teal-dark);
  padding: 1.4rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fs-main::-webkit-scrollbar { display: none; }

.fs-menu-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fs-side { scrollbar-width: none; -ms-overflow-style: none; }
.fs-side::-webkit-scrollbar { display: none; }

.fs-main-link {
  display: block;
  color: #fff;
  font-family: "Anton", "Impact", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 180ms ease, padding-left 180ms ease;
}
.fs-main-link:first-child { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.fs-main-link:hover,
.fs-main-link:focus-visible {
  color: var(--orange);
  padding-left: 0.8rem;
}

.fs-secondary {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}
.fs-secondary a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 180ms ease;
}
.fs-secondary a:hover { color: var(--orange); }

.fs-side {
  position: relative;
  background: var(--teal);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.fs-side-lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.6rem;
  max-width: 320px;
}
.fs-side-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease;
}
.fs-side-cta:hover {
  background: #fff;
  color: var(--teal-dark);
}

.fs-social {
  position: absolute;
  right: 2.4rem;
  bottom: 2.4rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.fs-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease;
}
.fs-social-link i { display: block; }
.fs-social-link:hover,
.fs-social-link:focus-visible {
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.fs-bottom-bar {
  display: block;
  background: var(--orange);
  color: var(--teal-dark);
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem;
  transition: background 180ms ease;
}
.fs-bottom-bar:hover { background: #d96a20; color: #fff; }

@media (max-width: 980px) {
  .fullscreen-inner { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .fs-main { padding: 0.8rem 1.5rem 1.5rem; }
  .fs-main-link { font-size: clamp(1.6rem, 7vw, 2.4rem); padding: 0.8rem 0; }
  .fs-side { padding: 2rem 1.5rem; }
  .fs-side-lead { font-size: 0.95rem; }
  .fullscreen-close { top: 0.6rem; right: 0.8rem; font-size: 2.2rem; }
  .fs-social { right: 1.2rem; bottom: 1.2rem; gap: 1rem; }
  .fs-social-link { width: 56px; height: 56px; font-size: 2.4rem; }
}

/* ===== MOBILE ACTIONS BAR (hidden on desktop) ===== */
.mobile-actions { display: none; }

.mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.1rem 0.5rem;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
  border-right: 2px solid #fff;
  text-decoration: none;
  transition: filter 180ms ease;
}
.mobile-cta:last-child { border-right: none; }
.mobile-cta:hover, .mobile-cta:focus-visible { filter: brightness(1.08); }
.mobile-cta svg { display: block; }

.mobile-cta.primary {
  background: var(--teal);
  color: #fff;
}
.mobile-cta.accent {
  background: var(--orange);
  color: var(--teal-dark);
}
.mobile-cta.accent-2 {
  background: var(--orange-soft);
  color: var(--teal-dark);
}

.header-social { display: none; }

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== BUTTONS ===== */
.button-primary,
.button-secondary {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(237, 122, 45, 0.30);
}
.button-primary:hover {
  transform: translateY(-2px);
  background: #d96a20;
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
.button-secondary.dark {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: transparent;
}
.button-secondary.dark:hover {
  background: var(--teal);
  color: #fff;
}

/* ===== HERO / CAROUSEL ===== */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--teal-dark);
  /* #home est la 1re section : l'ancre doit ramener tout en haut, sous l'en-tête sticky */
  scroll-margin-top: 200px;
}

.carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1200ms ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  transition: background 180ms ease;
}
.carousel-btn:hover { background: rgba(0, 0, 0, 0.6); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 5;
}

.carousel-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
}
.carousel-dots .dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(8, 31, 62, 0.55) 0%, rgba(20, 64, 71, 0.75) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  padding: 2rem 0;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.hero-logo {
  width: 400px;
  height: auto;
  margin: 0 auto 1.4rem;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

@media (max-width: 720px) {
  .hero-logo { width: 100px; margin-bottom: 1rem; }
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin: 0 0 1rem;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* ===== HERO TITLE (impressive version) ===== */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0 1.4rem;
  text-shadow: none;
  font-weight: 400;
  line-height: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: hero-rise 0.7s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  margin-bottom: 0.6rem;
}
.hero-eyebrow .bar {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-big {
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 0.92;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.15),
    0 8px 28px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(40px);
  animation: hero-rise 0.85s 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-mega {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 8.2rem);
  letter-spacing: 0.025em;
  line-height: 0.9;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.15),
    0 12px 40px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(50px);
  animation: hero-rise 0.95s 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-glow {
  position: relative;
  background: linear-gradient(
    100deg,
    #ED7A2D 0%,
    #ffb673 20%,
    #ffffff 45%,
    #ffb673 70%,
    #ED7A2D 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0;
  animation:
    hero-rise 0.95s 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    hero-shimmer 5s 1.2s linear infinite;
  filter:
    drop-shadow(0 4px 14px rgba(237, 122, 45, 0.55))
    drop-shadow(0 0 26px rgba(237, 122, 45, 0.25));
  opacity: 0;
  transform: translateY(50px);
}

.hero-sub {
  opacity: 0;
  animation: hero-rise 0.7s 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-actions {
  opacity: 0;
  animation: hero-rise 0.7s 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-stats {
  opacity: 0;
  animation: hero-rise 0.7s 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: -250% 50%; }
}

@media (max-width: 720px) {
  .hero-eyebrow .bar { width: 22px; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; }
  .hero-mega { gap: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-big,
  .hero-mega,
  .hero-glow,
  .hero-sub,
  .hero-actions,
  .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
  color: var(--orange);
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-light { background: var(--gray-soft); }
.section-dark { background: var(--teal-dark); color: #fff; }

.section-title {
  margin: 0 auto 2.5rem;
  max-width: 820px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(2rem, 2.75vw, 2.8rem);
  margin: 0 0 0.8rem;
  line-height: 1.15;
  color: var(--teal-dark);
}

.section-dark .section-title h2 { color: #fff; }

.section-title p {
  color: #4c556d;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}
.section-dark .section-title p { color: rgba(255, 255, 255, 0.85); }

.sub-h2 {
  font-size: 1.4rem;
  color: var(--teal-dark);
  margin: 0 0 1.2rem;
}

/* ===== CARDS GRID ===== */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 55px rgba(31, 95, 102, 0.06);
}

.card h3 { margin: 0 0 1rem; font-size: 1.2rem; color: var(--teal-dark); }
.card p, .card li { color: #575f75; line-height: 1.65; }

/* ===== PROBLEM CARDS (Situation actuelle) ===== */
.problem-card {
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.problem-card h3 {
  color: #fff;
  margin: 0.6rem 0 0.8rem;
  font-size: 1.25rem;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.6;
  font-size: 0.97rem;
}

.problem-card strong { color: var(--orange); font-weight: 700; }

.problem-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.problem-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  background: rgba(237, 122, 45, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.problem-badge {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Solution banner */
.solution-banner {
  margin-top: 2.5rem;
  background: #fff5ec;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.solution-banner p { margin: 0; color: var(--teal-dark); line-height: 1.6; }
.solution-banner strong { color: var(--orange); }
.solution-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ===== SOLUTION GRID ===== */
.solution-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card {
  background: var(--teal);
  border-radius: 20px;
  padding: 1.8rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-card-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.solution-card-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  background: rgba(237, 122, 45, 0.2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.solution-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Solution section title with logo */
.solution-title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1rem;
}
.solution-logo {
  height: clamp(2.6rem, 5vw, 4rem);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
@media (max-width: 720px) {
  .solution-title { gap: 0.6rem; }
  .solution-logo { height: 2.4rem; }
}

.solution-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.solution-card .muted { color: rgba(255, 255, 255, 0.7); margin-top: 0.3rem; }

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

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.section-light .check-list li,
.section:not(.section-dark) .experience-card .check-list li,
.section:not(.section-dark) .benefit-card .check-list li {
  color: #495267;
}
.section-light .check-list li::before,
.section:not(.section-dark) .experience-card .check-list li::before {
  color: var(--orange);
}

.check-list li strong { color: var(--orange); font-weight: 700; }

.solution-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}

.mini-stat {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  flex: 1;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--orange);
}

.mini-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== FEATURE GRID (Installations) ===== */
.feature-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-marker {
  min-width: 2.6rem;
  min-height: 2.6rem;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-text h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--teal-dark);
}

.feature-text p {
  margin: 0;
  color: #4c556d;
  font-size: 0.95rem;
  line-height: 1.55;
}

.grid-2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.rounded-image {
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(31, 95, 102, 0.18);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Location block */
.location-block {
  margin-top: 3rem;
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(31, 95, 102, 0.06);
}

.location-info h3 { margin-top: 0; }
.location-label {
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.location-perks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.location-perks li {
  font-size: 0.95rem;
  color: #4c556d;
}

/* ===== TIMELINE STATS (Pourquoi le W) ===== */
.timeline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.stat-pill {
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 1rem 0.6rem;
  text-align: center;
}
.stat-pill strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: #fff;
}
.stat-pill span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.value-card {
  background: var(--teal);
  border-radius: 14px;
  padding: 1.2rem 0.6rem;
  text-align: center;
  color: #fff;
}
.value-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  background: rgba(237, 122, 45, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.7rem;
  color: var(--orange);
}
.value-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.value-card h4 {
  margin: 0 0 0.2rem;
  color: var(--orange);
  font-size: 0.95rem;
}
.value-card p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.callout {
  background: #fff5ec;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  color: var(--teal-dark);
  line-height: 1.55;
  font-size: 0.97rem;
}

/* ===== EXPERIENCE CARDS ===== */
.experience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 14px 40px rgba(31, 95, 102, 0.06);
  display: flex;
  flex-direction: column;
}
.experience-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  background: rgba(237, 122, 45, 0.12);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--orange);
}
.experience-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.experience-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.2rem;
}
.experience-card .muted { margin: 0.2rem 0 1.1rem; }
.experience-card .check-list { margin-bottom: 1rem; }

.tag-pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(237, 122, 45, 0.15);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-top: auto;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  background: var(--teal);
  border-radius: 20px;
  padding: 1.8rem;
  color: #fff;
}

.benefit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.benefit-icon {
  font-size: 1.7rem;
  width: 50px;
  height: 50px;
  background: rgba(237, 122, 45, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--orange);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.benefit-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
}

.benefit-card h3 {
  color: #fff;
  margin: 0.5rem 0 0.7rem;
  font-size: 1.25rem;
}
.benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.benefit-card strong { color: var(--orange); }

.p3r-banner {
  margin-top: 2.5rem;
  background: rgba(237, 122, 45, 0.15);
  border: 1.5px solid var(--orange);
  border-radius: 16px;
  padding: 1.4rem;
  text-align: center;
}
.banner-title {
  margin: 0 0 0.3rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.banner-sub { margin: 0; color: rgba(255, 255, 255, 0.92); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(31, 95, 102, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8, 31, 62, 0.85) 100%);
  color: #fff;
  padding: 1.2rem 0.9rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== TIMELINE (Préouverture) ===== */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 0 auto 2rem;
}

.timeline-card {
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: 0 14px 35px rgba(31, 95, 102, 0.18);
}

.timeline-card.highlight {
  background: var(--orange);
  transform: translateY(-8px);
}

.timeline-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.timeline-card.highlight .timeline-label { color: #fff; }

.timeline-date {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

.timeline-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.pill-icon {
  background: var(--teal);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.pill-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  display: block;
}

.cta-final {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 20px;
  color: #fff;
}
.cta-title { font-size: 1.2rem; margin: 0 0 0.5rem; }
.cta-sub {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 600;
}
.cta-sub strong { color: var(--orange); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card {
  background: var(--teal-dark);
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
}
.contact-card h3 { margin-top: 0; color: var(--orange); }
.contact-card p { color: rgba(255, 255, 255, 0.92); line-height: 1.6; }
.contact-card a { color: var(--orange-soft); }
.contact-card a:hover { color: var(--orange); }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group label { font-weight: 600; font-size: 0.95rem; color: var(--teal-dark); }

.input,
textarea,
select.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31, 95, 102, 0.18);
  background: #f8fafc;
  padding: 0.85rem 1.1rem;
  color: var(--text);
}
.input:focus, textarea:focus, select.input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }

.form-status {
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.4em;
}
.form-status.success {
  color: #1f7d4e;
  background: #e6f6ed;
  border: 1px solid #b6e0c8;
  border-radius: 10px;
  padding: 0.7rem 1rem;
}
.form-status.error {
  color: #b02a2a;
  background: #fdecec;
  border: 1px solid #f2bcbc;
  border-radius: 10px;
  padding: 0.7rem 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 80px;
  background: #fff;
  padding: 0.4rem;
  border-radius: 8px;
}
.footer-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-tag {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer h4 {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.footer-list a:hover { color: var(--orange); }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}
.page-breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.8rem;
}
.page-breadcrumb a { color: var(--orange-soft); }
.page-breadcrumb a:hover { color: var(--orange); }
.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}
.page-lead {
  font-size: 1.1rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* ===== TEAM (acteurs.php) ===== */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 64, 71, 0.18);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 360px;
}

.team-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.team-card-photo {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  background: rgba(20, 64, 71, 0.78);
  color: var(--orange);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(237, 122, 45, 0.25);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  border: 2px solid rgba(237, 122, 45, 0.4);
}

.team-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
  color: #fff;
}

.team-role {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.team-banner { margin-top: 2.5rem; }

@media (max-width: 720px) {
  .team-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .team-card-photo { aspect-ratio: 4 / 3; }
  .team-card-photo img { object-position: center top; }
}

/* ===== MEMBERS (membres.php) ===== */
.member-overview {
  background: var(--teal-dark);
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
}
.member-overview-icon {
  width: 64px;
  height: 64px;
  background: rgba(237, 122, 45, 0.2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}
.member-overview .sub-h2 { color: var(--orange); margin-top: 0; }
.check-list.dark li { color: rgba(255, 255, 255, 0.92); }

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

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 18px 50px rgba(31, 95, 102, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-card.highlight {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: 0 25px 70px rgba(20, 64, 71, 0.25);
}

.pricing-tag {
  display: inline-block;
  background: rgba(237, 122, 45, 0.15);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  align-self: center;
}

.pricing-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.6rem;
}
.pricing-card.highlight h3 { color: #fff; }

.pricing-spots {
  margin: 0.3rem 0 0;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.pricing-spots-label {
  margin: 0 0 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}
.pricing-card.highlight .pricing-spots-label { color: rgba(255, 255, 255, 0.7); }

.pricing-card .check-list { text-align: left; margin-bottom: 1.4rem; }
.pricing-card .check-list li { color: #4c556d; }
.pricing-card.highlight .check-list li { color: rgba(255, 255, 255, 0.92); }
.pricing-card.highlight .check-list li::before { color: var(--orange); }

.pricing-card .button-primary { align-self: center; }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.partner-tag {
  background: #fff;
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.partners-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

/* ===== NEWS / MÉDIAS PAGE ===== */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.news-filter {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.news-filter:hover {
  background: var(--teal);
  color: #fff;
}
.news-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
/* Centre la carte quand il n'y en a qu'une seule */
.news-grid:has(.news-card:only-child) {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}
/* Deux cartes : centre en 2 colonnes */
.news-grid:has(.news-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
}

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(31, 95, 102, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(31, 95, 102, 0.12);
}

.news-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--gray-soft);
}
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.news-card:hover .news-card-media img {
  transform: scale(1.06);
}

.news-source {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--teal-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.news-title {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
  color: var(--teal-dark);
  line-height: 1.3;
}

.news-excerpt {
  margin: 0 0 1.2rem;
  color: #4c556d;
  line-height: 1.55;
  font-size: 0.95rem;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}
.news-link:hover {
  color: var(--teal);
  border-bottom-color: var(--orange);
}
.news-link svg {
  transition: transform 180ms ease;
}
.news-link:hover svg {
  transform: translate(2px, -2px);
}

.press-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 50px rgba(20, 64, 71, 0.18);
}
.press-cta h3 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  color: #fff;
}
.press-cta p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.4rem; }
  .news-filter { flex-shrink: 0; }
}

/* ===== PICKLEBALL PAGE ===== */
.pb-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: var(--teal-dark);
}
.pb-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.pb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(20,64,71,0.85) 0%, rgba(31,95,102,0.65) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  padding: 4rem 0;
}
.pb-hero-content {
  text-align: center;
  max-width: 880px;
}
.pb-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin: 0.4rem 0 1.2rem;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.pb-hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.pb-hero-content .page-breadcrumb a { color: var(--orange-soft); }
.pb-hero-content .page-breadcrumb { color: rgba(255,255,255,0.7); }

/* Stats grid */
.pb-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.pb-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.pb-stat strong {
  display: block;
  font-size: 2.4rem;
  color: var(--orange);
  margin-bottom: 0.4rem;
  font-weight: 800;
  line-height: 1;
}
.pb-stat span {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Rule cards */
.rule-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 14px 40px rgba(31,95,102,0.06);
  position: relative;
}
.rule-number {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(237,122,45,0.18);
  line-height: 1;
}
.rule-card h3 {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 1.25rem;
  padding-right: 3rem;
}
.rule-card p {
  margin: 0;
  color: #4c556d;
  line-height: 1.65;
}
.rule-card strong { color: var(--orange); }

/* Court diagram */
.court-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.court-svg {
  width: 100%;
  height: auto;
  background: #f8fafc;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(31,95,102,0.10);
}
.court-legend {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.legend-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.legend-swatch {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.legend-swatch.teal { background: #2a7d86; }
.legend-swatch.orange { background: rgba(237,122,45,0.6); }
.legend-swatch.dark { background: #0e2f33; }
.legend-item strong {
  display: block;
  color: var(--teal-dark);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.legend-item p {
  margin: 0;
  color: #4c556d;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Equipment cards */
.equipment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 14px 40px rgba(31,95,102,0.06);
}
.equipment-icon {
  font-size: 2.4rem;
  width: 70px;
  height: 70px;
  background: rgba(237,122,45,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.equipment-card h3 {
  color: var(--teal-dark);
  margin: 0 0 0.7rem;
}
.equipment-card p {
  color: #4c556d;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.equipment-card strong { color: var(--orange); }

/* Audience cards */
.audience-card {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 20px;
  padding: 1.8rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 40px rgba(20,64,71,0.18);
}
.audience-icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 0.8rem;
}
.audience-card h3 {
  color: #fff;
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}
.audience-card p {
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.55;
  font-size: 0.93rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .card-grid,
  .card-grid-3,
  .gallery-grid,
  .contact-grid,
  .solution-grid,
  .benefits-grid,
  .feature-grid,
  .timeline-cards,
  .location-block,
  .footer-grid,
  .team-grid,
  .pricing-grid,
  .partners-perks,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .member-overview { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .pricing-card.highlight { transform: none; }

  .pb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .court-wrap { grid-template-columns: 1fr; gap: 1.5rem; }

  /* === Mobile header layout === */
  .header-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
  }
  .brand {
    grid-row: 1;
    grid-column: 1;
  }
  .brand img { width: 60px; }

  .top-links { display: none !important; }
  .nav-grid { display: none !important; }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    margin: 0 0.5rem;
  }
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    background: #fff;
  }

  .header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-right: 0.4rem;
  }
  .header-social a {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: color 180ms ease, transform 180ms ease;
  }
  .header-social a:hover,
  .header-social a:focus-visible {
    color: var(--orange);
    transform: translateY(-2px);
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 2px solid #fff;
  }

  .location-block { padding: 1.5rem; }
  .location-perks { grid-template-columns: 1fr; }
  .timeline-stats { grid-template-columns: repeat(3, 1fr); }
  .value-cards { grid-template-columns: repeat(3, 1fr); }

  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-auto-flow: row;
    gap: 0;
    padding: 1rem 1.5rem;
    background: var(--teal-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .timeline-card.highlight { transform: none; }
}

@media (max-width: 720px) {
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card strong { font-size: 1.4rem; }

  .button-primary,
  .button-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-actions { display: grid; width: 100%; max-width: 360px; margin: 0 auto; }

  .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .carousel-prev { left: 0.4rem; }
  .carousel-next { right: 0.4rem; }

  .section { padding: 3.5rem 0; }
  .section-title h2 { font-size: 1.8rem; }

  .timeline-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .stat-pill { padding: 0.7rem 0.4rem; }
  .stat-pill strong { font-size: 1.2rem; }

  .value-cards { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .value-icon { width: 36px; height: 36px; font-size: 1.2rem; }
  .value-card h4 { font-size: 0.85rem; }
  .value-card p { font-size: 0.72rem; }

  .gallery-item img { height: 180px; }

  .mobile-cta {
    font-size: 0.68rem;
    padding: 0.9rem 0.4rem;
    letter-spacing: 0.02em;
  }
  .mobile-cta svg { width: 18px; height: 18px; }
  .brand img { width: 52px; }
}
