/* ==========================================================================
   GeDEN — STYLE.CSS (propre / cohérent)
   - Base → Layout commun → Composants → Pages → Utilitaires → Media queries
   - Offres & Services : version "comme Problématiques & Enjeux" (UNE seule)
   ========================================================================== */

/* ==========================================================================
   1) TOKENS / BASE
   ========================================================================== */

:root {
  --blue: #1f4a7a;
  --green: #58a22b;
  --orange: #ee8a3d;
  --ink: #043752;
  --text: #043752;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #fff;
  --ring: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 1rem;
}

/* Typo */
h2 {
  color: var(--ink);
  margin: 0 0 10px;
}

/* ==========================================================================
   2) LAYOUT COMMUN (Header / Footer / Sections)
   ========================================================================== */

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ring);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__name {
  font-weight: 700;
  color: var(--blue);
}

.brand__tag {
  font-size: 0.9rem;
  color: var(--green);
}

.menu {
  display: none;
  gap: 24px;
  align-items: center;
}

.menu a {
  color: var(--ink);
}

.menu a:hover {
  color: var(--orange);
}

/* Lien courant menu */
.menu a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.menu-toggle {
  display: inline-block;
  border: 1px solid var(--ring);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: #fff;
}

#menu.active {
  position: absolute;
  top: 80px;
  background-color: #fff;
  width: 100%;
  left: 0;
  border-top: 1px solid var(--ring);
}

/* Sections / wrappers */
section {
  padding: 60px 0;
}

.white {
  background: #fff;
}

.compact {
  padding-top: 30px;
}

.lead {
  max-width: 75ch;
  color: #475569;
}

/* Footer */
footer {
  border-top: 1px solid var(--ring);
  background: #fff;
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.foot {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

/* ==========================================================================
   3) COMPOSANTS GÉNÉRIQUES (Buttons / Cards / Grids / Badges)
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

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

.btn-ghost {
  background: #ffffff1a;
  color: #fff;
  border: 1px solid #ffffff4d;
}

.btn-white {
  background: #fff;
  color: #0b1220;
}

/* Background helpers */
.gradient {
  background: linear-gradient(#f8fafc, #fff);
}

/* Cards (home / générique) */
.cards {
  display: grid;
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(4, 55, 82, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.card--blue h3 {
  color: var(--blue);
}

.card--orange h3 {
  color: var(--orange);
}

.card--green h3 {
  color: var(--green);
}

/* CTA band (home & pages) */
.band {
  background: #0b1220;
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 24px;
}

.band__row {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

/* Grid 2 colonnes (générique pages) */
.grid-2 {
  display: grid;
  gap: 24px;
  justify-content: space-between;
}

.grid-2.alt {
  align-items: start;
}

/* Figures (génériques) */
.figure {
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  margin: 0;
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Text blocks */
.kicker {
  color: var(--blue);
  font-weight: 700;
  margin: 12px 0 8px;
}

.subtitle {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.bullets {
  padding-left: 1.1rem;
}

.bullets li {
  margin: 0.4rem 0;
}

.bullets.tight {
  margin: 0.25rem 0 0;
}

.bullets.tight li {
  margin: 0.3rem 0;
}

.callout {
  background: #f1f5f9;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 20px;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.badge {
  background: #fff;
  border: 1px solid var(--ring);
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
}

.badges.soft .badge {
  background: #f1f5f9;
  border-color: #e5e7eb;
  color: #475569;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--ring);
  margin: 22px 0;
  opacity: 0.8;
}

/* ==========================================================================
   4) PAGE: HOME (Hero / Objectifs)
   ========================================================================== */

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("img/13.jpg") center/cover no-repeat;
  z-index: -2;
  background-position-y: -250px;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 55, 82, 0.82), rgba(31, 74, 122, 0.68));
  z-index: -1;
}

.hero__inner {
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: end;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

.hero p {
  margin-top: 14px;
  color: #e2e8f0;
  max-width: 60ch;
  font-size: 1.15rem;
}

.cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.goals {
  display: grid;
  gap: 16px;
}

.goal {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 14px;
}

.tick {
  color: var(--green);
  font-weight: 900;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.home-highlights {
  padding-bottom: 28px;
}

.highlights-grid {
  display: grid;
  gap: 18px;
}

.highlight-card {
  background: #f8fafc;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(4, 55, 82, 0.05);
}

.highlight-number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}

.highlight-card h3 {
  margin: 0 0 8px;
}

.section-method {
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
}

.process-flow {
  display: grid;
  gap: 16px;
}

.process-step {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.process-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  margin-bottom: 10px;
}

.process-step h3 {
  margin: 0 0 6px;
}

.case-grid {
  display: grid;
  gap: 18px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(4, 55, 82, 0.07);
}

.case-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-card div {
  padding: 16px;
}

.case-card h3 {
  margin: 0 0 8px;
}

.trust-logos {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.trust-logos img {
  width: 100%;
  height: 95px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 14px;
  padding: 12px;
}

/* ==========================================================================
   5) GABARITS PAGES (Page hero / sections)
   ========================================================================== */

.page-hero {
  background: linear-gradient(#fff, #f8fafc);
  padding: 32px 0 0;
}

.h1 {
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0;
}

.page-hero .h1 {
  font-size: clamp(2rem, 2.2vw + 1.2rem, 3rem);
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: clamp(1rem, 0.6vw + 0.7rem, 1.125rem);
  color: var(--muted);
  max-width: 70ch;
}

/* Main container pages */
main.container {
  padding: 40px 0 64px;
}

/* Section card wrapper */
.section {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: 24px;
}

/* largeur de ligne confortable (pages) */
main.container > .section p,
main.container > .section .bullets {
  max-width: 85ch;
}

/* corps texte (pages) */
.section p,
.section li {
  font-size: 1.02rem;
  line-height: 1.5;
}

/* espacement entre sections */
.section + .section {
  margin-top: 24px;
}

/* ==========================================================================
   6) PAGE: PROBLÉMATIQUES & ENJEUX (hero + cards)
   ========================================================================== */

.ribbon {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin: -8px 0 16px;
  display: inline-block;
}

/* Bande d’appel */
.linkband {
  background: #0b1220;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.linkband__title {
  margin: 0;
  font-size: 1.25rem;
}

.section.enjeux,
.section.permet {
  padding: 0;
}

.section.permet .en-grid {
  grid-template-columns: repeat(2, 1fr);
}


/* Hero “enjeux” */
.enjeux-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin: 0 0 24px; /* <-- correction */
  border-radius: 18px 18px 0 0;
}

.enjeux-hero__bg {
    position: relative;
    isolation: isolate;
    overflow: clip;
    border-radius: 14px;
    margin: 0 0 18px;
    background-size: cover;
    background-position-y: center;
    height: 270px;
}

.enjeux-hero__inner {
  padding: 24px 0 60px 24px;
  color: #fff;
}

.enjeux-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.enjeux-hero__title {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  letter-spacing: -0.2px;
  color: #fff;
}

.enjeux-hero__lede {
  max-width: 80ch;
  color: #e6eefc;
}

/* Grille items (enjeux / problématiques / permet) */
.en-grid {
  display: grid;
  gap: 24px;
  margin: 24px;
}

.en-item {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.en-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.en-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.en-text {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.en-list {
  margin: 0;
  padding-left: 1.05rem;
  line-height: 1.55;
}

.en-list li {
  margin: 0.2rem 0;
}

/* Icon badge */
.icon-badge {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.icon-badge .svg {
  width: 22px;
  height: 22px;
}

/* Badges couleurs (cards pictos) */
.badge-blue {
  background: linear-gradient(180deg, #1b4b7a, #133b60);
}
.badge-orange {
  background: linear-gradient(180deg, #e67d37, #c76422);
}
.badge-green {
  background: linear-gradient(180deg, #2f9e44, #238a3a);
}
.badge-navy {
  background: linear-gradient(180deg, #1f2937, #0f172a);
}
.badge-purple {
  background: linear-gradient(180deg, #7c3aed, #6d28d9);
}
.badge-teal {
  background: linear-gradient(180deg, #0f766e, #115e59);
}
.badge-amber {
  background: linear-gradient(180deg, #f59e0b, #d97706);
}

/* Problématiques */
section.section.problematiques {
  padding: 0;
}

.pr-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin: 0 0 18px;
  border-radius: 14px 14px 0 0;
}

.pr-hero__bg {
    position: relative;
    isolation: isolate;
    overflow: clip;
    border-radius: 14px;
    margin: 0 0 18px;
    background-size: cover;
    background-position-y: center;
    height: 270px;
}

.pr-hero__inner {
  padding: 24px 0 60px 24px;
  color: #fff;
}

.pr-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.pr-hero__title {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  letter-spacing: -0.2px;
}

.pr-hero__lede {
  max-width: 80ch;
  color: #e6eefc;
}

/* ==========================================================================
   7) PAGE: OFFRES & SERVICES (VERSION UNIQUE : comme Problématiques)
   ========================================================================== */

.section-services-hero { padding: 0; }
.section-service-block { padding: 0; }
.section-service-tools { padding: 0; }

/* HERO services */
.services-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-radius: 14px;
  margin: 0 0 18px;
  background-size: cover;
  background-position-y: center;
  height: 270px;
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0.55)),
    var(--img) center/cover no-repeat;
  filter: saturate(1.05);
  z-index: -1;
}

.services-hero__inner {
  padding: 24px 0 60px 24px;
  color: #fff;
}

.services-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.services-hero__title {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  letter-spacing: -0.2px;
  color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);

}

.services-hero__lede {
  max-width: 80ch;
  color: #e6eefc;
}

/* Version "petite" des héros intermédiaires */
.services-hero--small .services-hero__inner {
  padding: 22px 0 44px 22px;
}

/* Cards (résumé 5 offres) */
.services-cards {
  display: grid;
  gap: 20px;
  margin: 24px;
}

.services-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 2px 10px rgba(4, 55, 82, 0.06);
}

.services-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.services-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
}

.services-card p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.services-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.services-icon .svg {
  width: 22px;
  height: 22px;
}

/* Contenu des blocs */
.service-content {
  padding: 18px 24px 26px;
}

.service-content p,
.service-content li {
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ===========================
   FINITIONS OFFRES & SERVICES
   =========================== */

/* 1) Contraste + lisibilité dans les heroes */
.services-hero__title,
.services-hero__lede {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

/* Option : assombrir légèrement le voile (plus pro) */
.services-hero__bg{
  background: rgba(0, 0, 0, 0.5);
}

/* 2) Donner des marges internes cohérentes aux blocs "tools" */
.section-service-tools .tools{
  margin: 24px; 
}

/* 3) Respiration entre hero et contenu (dans chaque bloc) */
.section-service-block .service-content{
  padding-top: 22px;
}

/* ==========================================================================
   8) TOOLS (Offres & Services)
   ========================================================================== */

.tools {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.tool {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(4, 55, 82, 0.06);
}

.tool__title {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.05rem;
}

/* ==========================================================================
   9) PAGE: RÉFÉRENCES (inchangé)
   ========================================================================== */

.pillnav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.pillnav a {
  background: #fff;
  border: 1px solid var(--ring);
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.pillnav a:hover {
  background: #f8fafc;
}

.section-reference {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ref-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  gap: 24px;
}

.ref-meta {
  border-right: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ref-year {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  background: #f1f5f9;
  border: 1px solid var(--ring);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  width: max-content;
}

.ref-client {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ref-client img {
  max-width: 140px;
  height: auto;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--ring);
  padding: 6px;
}

.logo-ref {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ref-title {
  margin: 0.25rem 0 8px;
  color: var(--ink);
  background: #f1f5f9;
  padding: 10px;
  border-radius: 12px;
}

.ref-sub {
  margin: 0.5rem 0 0.25rem;
  color: var(--blue);
  font-weight: 700;
}

.ref-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.ref-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ref-figure--unesco img {
  height: 280px;
  object-position: top;
}

.ref-text .bullets.tight li {
  margin: 0.25rem 0;
}

.fishingIMG {
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: 0 -432px;
  border-radius: 14px;
  margin: 20px 0;
  border: 1px solid var(--ring);
}

/* ==========================================================================
   10) PAGE: PUBLICATIONS (accordion + hero)
   ========================================================================== */

.pubs-acc {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 16px;
  padding: 18px;
}

.pubs-year {
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
  margin-top: 10px;
}

.pubs-year:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.pubs-year__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid #eef2f7;
  background: #fbfcfe;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  color: #0b3b66;
}

.pubs-year__count {
  font-weight: 700;
  color: #64748b;
  margin-left: auto;
}

.pubs-year__chev {
  transition: transform 0.18s ease;
  display: inline-block;
}

.pubs-year.is-open .pubs-year__chev {
  transform: rotate(180deg);
}

.pubs-year__panel {
  display: none;
  padding: 10px 4px 2px;
}

.pubs-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pubs-items li {
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 12px 12px;
  background: #ffffff;
}

.pubs-authors {
  display: block;
  font-weight: 800;
  color: #0b3b66;
  margin-bottom: 4px;
}

.pubs-title {
  display: block;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
}

.pubs-meta {
  display: block;
  font-size: 13px;
  color: #64748b;
}

/* Hero publications (aligné sur enjeux/pr-hero) */
.pubs-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin: 0 0 18px;
  border-radius: 14px;
}

.pubs-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0.55)),
    var(--img) center/cover no-repeat;
  filter: saturate(1.05);
  z-index: -1;
}

.pubs-hero__inner {
  padding: 24px 0 60px 24px;
  color: #fff;
}

.pubs-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.pubs-hero__title {
  margin: 0.5rem 0 0.25rem;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  letter-spacing: -0.2px;
}

.pubs-hero__lede {
  max-width: 80ch;
  color: #e6eefc;
}

/* ==========================================================================
   11) PAGE: CONTACT (inchangé)
   ========================================================================== */

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

.contact-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.form {
  margin-top: 6px;
}

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

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="file"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--ring);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
}

.req {
  color: var(--orange);
}

.hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.check input {
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  color: var(--muted);
  margin: 0;
}

.form-success {
  margin-top: 14px;
  background: #e9f8f1;
  border: 1px solid #b7f0d8;
  color: #0f5132;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.form-field .is-invalid {
  border-color: #dc2626;
  background: #fff7f7;
}

.form-error {
  margin-top: 0.35rem;
  color: #b91c1c;
  font-size: 0.85rem;
}

.form-error-global {
  margin-top: 14px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.form-actions .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}


.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ring);
}

.map-wrap iframe,
.map-wrap img {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ==========================================================================
   12) PAGE: ÉQUIPE + MODAL (inchangé)
   ========================================================================== */

.team-grid {
  display: grid;
  gap: 24px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.team-content {
  padding: 1rem 1.25rem;
  position: relative;
}

.team-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--blue);
}

.team-content .role {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.values-quote {
  background: #f8fafc;
  border-left: 4px solid var(--green);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  font-style: italic;
  color: var(--text);
}

.team-more {
  margin-top: 12px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal__panel {
  position: relative;
  max-width: 820px;
  margin: 48px auto;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal__header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.modal__photo {
  width: 250px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.modal__title {
  margin: 0;
}

.modal__role {
  margin: 4px 0 0;
  opacity: 0.75;
}

.modal__content {
  padding: 20px 0;
}

.modal__content p {
  margin: 10px 0;
}

/* ==========================================================================
   13) ACCESSIBILITÉ / UTILITAIRES
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ==========================================================================
   14) MEDIA QUERIES
   ========================================================================== */

/* ---- <= 768px ---- */
@media (max-width: 768px) {

  /* Home hero */
  .hero__bg { background-position-y: inherit; }
  .hero__inner { padding: 0 20px; }
  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.1;
    margin: 0;
  }

  .section-service-tools .tools{ margin: 12px; }
  .section-service-block .service-content{ padding-top: 14px; }

  /* Sections */
  .section { border-radius: 0; padding: 18px; }
  main.container { padding: 26px 0 46px; }

  /* Offres & services (new layout) */
  .services-hero { border-radius: 0; }
  .services-cards { margin: 12px; gap: 12px; }
  .service-content { padding: 14px 14px 18px; }

  /* Contact */
  .section.contact { padding: 12px; }

  /* Modal */
  .modal__panel {
    margin: 18px;
    max-width: calc(100% - 36px);
  }
  .modal__header { align-items: flex-start; }

  /* Band CTA */
  .band { border-radius: 0; }
  .band__row { padding: 18px; }
}

/* ---- >= 768px ---- */
@media (min-width: 768px) {
  .band__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-field--full { grid-column: 1 / -1; }

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

  .linkband {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .highlights-grid,
  .case-grid { grid-template-columns: repeat(3, 1fr); }

  .process-flow { grid-template-columns: repeat(2, 1fr); }

  .trust-logos { grid-template-columns: repeat(3, 1fr); }
}

/* ---- >= 769px ---- */
@media (min-width: 769px) {
  .goals { grid-template-columns: repeat(2, 1fr); }
  .foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---- >= 900px ---- */
@media (min-width: 900px) {
  .en-grid { grid-template-columns: repeat(3, 1fr); }
  .services-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ---- >= 992px ---- */
@media (min-width: 992px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr 420px; }
  .grid-2.alt.reverse { grid-template-columns: 64% 1fr; }

  .enjeux-cards { grid-template-columns: repeat(3, 1fr); }

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

  .ref-card { grid-template-columns: 280px 1fr; }
  .ref-grid { grid-template-columns: 1fr 320px; }

  .process-flow { grid-template-columns: repeat(4, 1fr); }
}

/* ---- >= 1024px ---- */
@media (min-width: 1024px) {
  .menu { display: flex; }
  .menu-toggle { display: none; }
}

/* ---- >= 1200px ---- */
@media (min-width: 1200px) {
  .ref-meta {
    border-right: 1px dashed var(--ring);
    padding-right: 18px;
  }
}
