/* =========================================
   ZEIDEAL GROUP SAS - PROAQUI
   Site web corporate - Feuille de style globale
   Référence : ZG-COM-2026-04-CSS-001
   Avril 2026
   ========================================= */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }

/* ===== DESIGN TOKENS - CHARTE PROAQUI ===== */
:root {
  /* Palette principale */
  --navy: #0B1F3A;
  --navy-soft: #E6EBF1;
  --navy-dark: #07172B;
  --teal: #1F4E5F;
  --teal-soft: #E0EAEC;
  --gold: #C9A45C;
  --gold-soft: #F8F1E1;
  --gold-light: #F5E9CC;

  /* Neutres */
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F2F2F2;
  --grey-200: #E5E5E5;
  --grey-400: #A0A0A0;
  --grey-600: #555555;
  --black: #000000;

  /* Sémantique */
  --success: #2D6A4F;
  --warning: #B07A2A;
  --danger: #8B2A1F;

  /* Typographie */
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Garamond, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tailles fluides (clamp pour responsive) */
  --fs-xs: 0.8125rem;       /* 13px */
  --fs-sm: 0.9375rem;       /* 15px */
  --fs-base: 1.0625rem;     /* 17px */
  --fs-md: 1.1875rem;       /* 19px */
  --fs-lg: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-2xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.625rem);
  --fs-3xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.5rem);

  /* Espacement */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Conteneur */
  --container-max: 1280px;
  --container-narrow: 880px;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 12px 32px rgba(11, 31, 58, 0.14);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Z-index */
  --z-header: 100;
  --z-modal: 200;
}

/* ===== BASE ===== */
html { font-size: 16px; }
body {
  font-family: var(--font-serif);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold); color: var(--navy); }

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); margin-top: var(--space-12); margin-bottom: var(--space-6); }
h3 { font-size: var(--fs-xl); margin-top: var(--space-8); margin-bottom: var(--space-4); }
h4 { font-size: var(--fs-lg); margin-top: var(--space-6); margin-bottom: var(--space-3); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; color: var(--navy); }
em, i { font-style: italic; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--t-fast);
  border-bottom: 1px solid transparent;
}
a:hover { color: var(--navy); border-bottom-color: var(--gold); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

ul, ol { padding-left: var(--space-6); margin-bottom: var(--space-4); }
li { margin-bottom: var(--space-2); }
li::marker { color: var(--gold); }

/* ===== UTILITAIRES ===== */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 4rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3rem, 6vw, 6rem); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy a { color: var(--gold); }
.section--navy a:hover { color: var(--white); }
.section--soft { background: var(--navy-soft); }
.section--gold { background: var(--gold-soft); }

.text-center { text-align: center; }
.eyebrow { font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: var(--space-3); }

.gold-rule { width: 64px; height: 3px; background: var(--gold); border: 0; margin-block: var(--space-4); }
.gold-rule--center { margin-inline: auto; }

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600;
  padding: 0.875rem 1.75rem; border: 2px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none; transition: all var(--t-base);
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); border-bottom-color: transparent; }
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 1.125rem 2.25rem; font-size: var(--fs-base); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--t-base);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  height: 80px;
}
.header__logo {
  font-family: var(--font-sans); font-weight: 800; font-size: 1.05rem;
  color: var(--navy); letter-spacing: -0.01em; text-decoration: none; border: none;
  display: flex; align-items: center; gap: var(--space-3);
}
.header__logo:hover { color: var(--teal); border: none; }
.header__logo-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(11, 31, 58, 0.10);
}
.header__logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.header__logo-text-main {
  font-weight: 800; font-size: 1rem; color: var(--navy);
  letter-spacing: 0.05em;
}
.header__logo-text-sub {
  font-weight: 500; font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .header__logo-img { height: 44px; }
  .header__logo-text { display: none; }
}
.header__nav {
  display: flex; align-items: center; gap: var(--space-8);
}
.header__menu { display: flex; gap: var(--space-6); list-style: none; padding: 0; margin: 0; }
.header__menu a {
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 500;
  color: var(--navy); border: none; padding: 0.5rem 0; position: relative;
}
.header__menu a:hover { color: var(--teal); border: none; }
.header__menu a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold);
}
.header__menu-item { position: relative; }
.header__submenu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); box-shadow: var(--shadow-lg); border-radius: var(--radius-md);
  padding: var(--space-2); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t-base); border: 1px solid var(--grey-200);
}
.header__menu-item:hover .header__submenu,
.header__menu-item:focus-within .header__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header__submenu li { margin: 0; }
.header__submenu a { display: block; padding: 0.625rem 0.875rem; border-radius: var(--radius-sm); }
.header__submenu a:hover { background: var(--navy-soft); }
.header__actions { display: flex; align-items: center; gap: var(--space-4); }
.header__lang {
  display: flex; gap: 0; font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600;
  border: 1px solid var(--grey-200); border-radius: var(--radius-sm); overflow: hidden;
}
.header__lang a {
  padding: 0.375rem 0.625rem; color: var(--grey-600); border: none;
}
.header__lang a.active { background: var(--navy); color: var(--white); }
.header__lang a:hover:not(.active) { background: var(--navy-soft); color: var(--navy); border: none; }

.header__burger {
  display: none; background: transparent; border: 0; padding: 0.5rem; cursor: pointer;
  color: var(--navy);
}
.header__burger svg { width: 28px; height: 28px; }

/* Header mobile */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__burger { display: block; }
  .header__nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-4);
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    padding: var(--space-6); border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
  }
  .header__nav.is-open .header__menu { flex-direction: column; gap: var(--space-3); width: 100%; }
  .header__nav.is-open .header__submenu { position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; padding-left: var(--space-4); border: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 600px;
  display: grid; place-items: center; text-align: center; color: var(--white);
  overflow: hidden; isolation: isolate;
}
.hero--secondary { min-height: 380px; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.55) 0%, rgba(11, 31, 58, 0.75) 100%);
}
.hero__content { padding-block: var(--space-20); padding-inline: clamp(1rem, 4vw, 4rem); max-width: 960px; }
.hero__eyebrow {
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: var(--space-4);
}
.hero h1 { color: var(--white); font-size: var(--fs-3xl); margin-bottom: var(--space-4); }
.hero__subtitle {
  font-style: italic; font-size: var(--fs-md); line-height: 1.5;
  color: rgba(255, 255, 255, 0.92); margin-bottom: var(--space-8); max-width: 720px;
  margin-inline: auto;
}
.hero__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.hero__breadcrumb {
  font-family: var(--font-sans); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase; letter-spacing: 0.15em; margin-top: var(--space-6);
}
.hero__breadcrumb a { color: rgba(255, 255, 255, 0.7); border: none; }
.hero__breadcrumb a:hover { color: var(--gold); border: none; }

/* ===== KPI BANNER ===== */
.kpi-banner {
  background: var(--gold-soft);
  padding-block: var(--space-12);
  border-block: 1px solid var(--gold-light);
}
.kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6);
  text-align: center;
}
.kpi-item__value {
  font-family: var(--font-sans); font-weight: 800; font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: var(--navy); line-height: 1; margin-bottom: var(--space-2);
}
.kpi-item__label {
  font-family: var(--font-sans); font-size: var(--fs-sm); color: var(--teal);
  font-weight: 500; line-height: 1.4;
}
@media (max-width: 768px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
}

/* ===== CARDS ===== */
.cards { display: grid; gap: var(--space-6); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md);
  overflow: hidden; transition: all var(--t-base); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.card__media {
  aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: relative; overflow: hidden;
}
.card__media-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--gold); font-family: var(--font-sans); font-weight: 600;
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.15em;
  text-align: center; padding: var(--space-4);
}
.card__badge {
  position: absolute; top: var(--space-3); left: var(--space-3);
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.375rem 0.75rem; border-radius: var(--radius-sm);
}
.card__badge--gold { background: var(--gold); color: var(--navy); }
.card__badge--teal { background: var(--teal); color: var(--white); }
.card__badge--navy { background: var(--navy); color: var(--white); }
.card__body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.card__eyebrow {
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--space-2);
}
.card h3 { margin-top: 0; margin-bottom: var(--space-3); font-size: var(--fs-lg); }
.card p { font-size: var(--fs-sm); line-height: 1.6; flex: 1; }
.card__footer { margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--grey-200); }
.card__cta {
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 600;
  color: var(--teal); border: none;
}
.card__cta::after { content: ' →'; transition: transform var(--t-fast); display: inline-block; }
.card__cta:hover::after { transform: translateX(4px); }

/* ===== TABLES ===== */
.data-table { width: 100%; border-collapse: collapse; margin-block: var(--space-6); font-size: var(--fs-sm); }
.data-table th, .data-table td {
  padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--grey-200);
}
.data-table th {
  background: var(--navy); color: var(--white); font-family: var(--font-sans);
  font-weight: 600; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em;
}
.data-table tbody tr:nth-child(even) { background: var(--navy-soft); }
.data-table tbody tr:hover { background: var(--gold-soft); }
.data-table .label { font-weight: 600; color: var(--navy); }

/* ===== INSTITUTIONAL INSET ===== */
.inset {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: var(--space-6) var(--space-8); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: var(--space-6);
}
.inset--navy { background: var(--navy-soft); border-left-color: var(--navy); }
.inset--teal { background: var(--teal-soft); border-left-color: var(--teal); }
.inset h3, .inset h4 { margin-top: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy); color: var(--white); text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.cta-banner h2 { color: var(--white); margin-top: 0; }
.cta-banner p { font-style: italic; font-size: var(--fs-md); color: rgba(255, 255, 255, 0.85); margin-bottom: var(--space-8); }
.cta-banner__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ===== ARCHITECTURE DIAGRAM ===== */
.flow-diagram {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-2); align-items: stretch; margin-block: var(--space-8);
}
.flow-step {
  background: var(--white); border: 2px solid var(--navy);
  padding: var(--space-4) var(--space-3); text-align: center;
  display: flex; flex-direction: column; gap: var(--space-1);
  position: relative; border-radius: var(--radius-sm);
}
.flow-step__num {
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em;
}
.flow-step__title {
  font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-sm);
  color: var(--navy); line-height: 1.3;
}
.flow-step__detail { font-size: var(--fs-xs); color: var(--teal); line-height: 1.4; }
.flow-step--accent { background: var(--gold-soft); border-color: var(--gold); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: var(--space-8); margin-block: var(--space-8); }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--gold);
}
.timeline-item { position: relative; padding-bottom: var(--space-6); }
.timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 6px; width: 16px; height: 16px;
  background: var(--white); border: 3px solid var(--gold); border-radius: 50%;
}
.timeline-item__date {
  font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem;
}
.timeline-item__title {
  font-family: var(--font-sans); font-weight: 700; color: var(--navy);
  font-size: var(--fs-base); margin-bottom: 0.25rem;
}
.timeline-item__detail { font-size: var(--fs-sm); color: var(--grey-600); }

/* ===== VIDEO PLAYER ===== */
.video-section {
  background: linear-gradient(135deg, var(--soft-navy) 0%, var(--white) 100%);
  padding: var(--space-16) 0;
}
.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.25), 0 8px 20px rgba(11, 31, 58, 0.12);
  background: var(--navy);
  aspect-ratio: 16 / 9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: 960px;
  margin: var(--space-4) auto 0;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  font-size: var(--fs-sm);
}
.video-meta__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--grey-600);
}
.video-meta__item strong {
  color: var(--navy);
  font-weight: 600;
}
.video-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--soft-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.video-intro {
  max-width: 680px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
@media (max-width: 768px) {
  .video-meta { flex-direction: column; align-items: flex-start; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark); color: rgba(255, 255, 255, 0.85);
  padding-top: var(--space-16); padding-bottom: var(--space-6);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__title {
  font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: var(--space-4);
}
.footer__brand-name {
  font-family: var(--font-sans); font-weight: 800; font-size: 1.25rem; color: var(--white);
  margin-bottom: var(--space-2);
}
.footer__brand-tagline { font-style: italic; line-height: 1.5; margin-bottom: var(--space-4); }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: var(--space-2); }
.footer__list a { color: rgba(255, 255, 255, 0.85); border: none; }
.footer__list a:hover { color: var(--gold); border: none; }
.footer__newsletter input[type=email] {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05); color: var(--white);
  border-radius: var(--radius-sm); font-size: var(--fs-sm); margin-bottom: var(--space-3);
}
.footer__newsletter input[type=email]::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer__newsletter button { width: 100%; }
.footer__rgpd { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.5); margin-top: var(--space-2); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: var(--space-6);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: var(--space-4); font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.6); border: none; margin-inline: var(--space-3); }
.footer__bottom a:hover { color: var(--gold); border: none; }

/* ===== FORMS ===== */
.form-group { margin-bottom: var(--space-4); }
.form-label {
  display: block; font-family: var(--font-sans); font-size: var(--fs-xs); font-weight: 600;
  color: var(--navy); margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm); font-size: var(--fs-base); background: var(--white);
  font-family: var(--font-serif); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp var(--t-slow) ease-out backwards; }
.fade-up--delay-1 { animation-delay: 80ms; }
.fade-up--delay-2 { animation-delay: 160ms; }
.fade-up--delay-3 { animation-delay: 240ms; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--navy); color: var(--white);
  padding: var(--space-2) var(--space-4); z-index: 1000; border: 0;
}
.skip-link:focus { top: 0; }

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

/* ===== PRINT ===== */
@media print {
  .header, .footer, .cta-banner, .hero__actions, .header__actions { display: none; }
  body { font-size: 11pt; }
}

/* ===== ZEIDEAL FARM — COMPOSANTS SPECIFIQUES ===== */

/* Hero variant pour Zeideal Farm — touche aquatique */
.hero--aqua {
  background: linear-gradient(135deg, #0B1F3A 0%, #1F4E5F 60%, #2a6b80 100%);
  position: relative;
  overflow: hidden;
}
.hero--aqua::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 164, 92, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31, 78, 95, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero--aqua::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.3));
  pointer-events: none;
}

/* Tagline d'accroche */
.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

/* Bandeau teal — séparateur visuel */
.divider-teal {
  height: 8px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 50%, var(--gold) 100%);
}

/* Section ESG cards à 3 colonnes */
.esg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .esg-cards { grid-template-columns: 1fr; }
}
.esg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.esg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12);
}
.esg-card--social { border-top-color: var(--teal); }
.esg-card--env { border-top-color: var(--gold); }
.esg-card--gov { border-top-color: var(--navy); }
.esg-card__icon {
  width: 56px; height: 56px;
  background: var(--soft-gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

/* Big stat number */
.bignum {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.bignum + .bignum-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}

/* Banner appel à action commercial */
.commerce-banner {
  background: linear-gradient(135deg, var(--soft-gold) 0%, var(--white) 100%);
  border-left: 4px solid var(--gold);
  padding: var(--space-8);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-8) 0;
}

/* Liste de partenaires logos */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  align-items: center;
  justify-items: center;
}
@media (max-width: 700px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-logo {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 80px;
  display: flex; align-items: center; justify-content: center;
}

/* Tableaux de produits */
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.product-card:hover {
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.08);
  transform: translateY(-2px);
}
.product-card__head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  padding: var(--space-4) var(--space-6);
}
.product-card__head h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.25rem;
}
.product-card__body { padding: var(--space-6); }
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.product-card__price-label {
  font-size: 0.85rem;
  color: var(--grey-600);
  font-style: italic;
}
.product-card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}
.product-card__list li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--grey-200);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.product-card__list li:last-child { border-bottom: none; }

/* Indicateurs ASC / certif */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--soft-teal);
  color: var(--teal);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
}
.cert-badge--gold {
  background: var(--soft-gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

/* Box for tagline/promesse */
.promise-box {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-12) var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promise-box::before {
  content: "“";
  position: absolute;
  top: -20px; left: 30px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.promise-box h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}

/* ===== STATS GRID — chiffres clés ===== */
.stats-grid {
  display: grid;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}
.stats-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stats-grid--3 { grid-template-columns: repeat(3, 1fr); }
.stats-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats-grid--3, .stats-grid--4 { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.05);
  text-align: center;
}
.stat-card--gold { border-left-color: var(--gold); background: var(--soft-gold); }
.stat-card--navy { border-left-color: var(--navy); background: var(--soft-navy); }
.stat-card--teal { border-left-color: var(--teal); background: var(--soft-teal); }
.stat-card .bignum { margin-bottom: 0.5rem; }

/* ===== ENHANCEMENTS PREMIUM v2 ===== */

/* Hero avec image de fond SVG */
.hero--image {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-16) 0;
}
.hero--image .hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero--image .hero__overlay-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.7) 0%, rgba(31, 78, 95, 0.55) 60%, rgba(11, 31, 58, 0.7) 100%);
  z-index: 1;
}
.hero--image .hero__content {
  position: relative;
  z-index: 2;
}

/* Section avec illustration full-bleed */
.full-illustration {
  width: 100%;
  display: block;
  margin: var(--space-8) 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(11, 31, 58, 0.12);
}
.full-illustration--no-shadow {
  box-shadow: none;
  border-radius: 0;
}

/* Image-text split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.split-section--reverse {
  direction: rtl;
}
.split-section--reverse > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .split-section, .split-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.split-section__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.15);
}

/* Badge ASC / certifications */
.badges-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-6) 0;
}

/* Quote / testimonial */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: var(--space-8);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  position: relative;
  margin: var(--space-6) 0;
}
.testimonial__author {
  display: block;
  margin-top: var(--space-4);
  font-size: 0.95rem;
  color: var(--teal);
  font-weight: 600;
  font-style: normal;
}

/* Highlighted facts strip */
.facts-strip {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.facts-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}
.facts-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (max-width: 800px) { .facts-strip__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); } }
.facts-strip__item .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.facts-strip__item .label {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

/* Module grid avec icônes */
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1100px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .module-grid { grid-template-columns: 1fr; } }
.module-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.1);
  border-color: var(--gold);
}
.module-card__num {
  display: inline-block;
  background: var(--soft-gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.module-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--space-2) 0;
  font-family: var(--font-serif);
}
.module-card__desc {
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.4;
}

/* Image with caption */
.figure {
  margin: var(--space-8) 0;
}
.figure__caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-600);
  font-style: italic;
  margin-top: var(--space-3);
}

/* Decorated section header */
.deco-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.deco-header::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto var(--space-4);
}
.deco-header h2 {
  margin-bottom: var(--space-3);
}

/* Image background overlay variants */
.section--with-bg {
  position: relative;
  overflow: hidden;
}
.section__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.08;
}
.section__bg-image-content {
  position: relative;
  z-index: 1;
}


/* =========================================================
   KIT MÉDIA — Page presse-kit / brand assets
   ========================================================= */
.brand-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 164, 92, 0.15), transparent 60%);
  pointer-events: none;
}
.brand-hero__inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin-inline: auto; }
.brand-hero h1 { color: var(--white); font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: var(--space-4); }
.brand-hero p { font-size: var(--fs-md); color: rgba(255,255,255,0.85); }

/* Showcase grid — assets logo */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.asset-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.asset-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.asset-card__preview {
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-8); min-height: 220px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
}
.asset-card__preview--navy { background: var(--navy); }
.asset-card__preview--gold { background: var(--gold-soft); }
.asset-card__preview--gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.asset-card__preview img,
.asset-card__preview svg { max-height: 140px; max-width: 100%; height: auto; width: auto; }
.asset-card__body { padding: var(--space-5); }
.asset-card__title { font-family: var(--font-sans); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: var(--space-2); }
.asset-card__meta { font-size: var(--fs-xs); color: var(--grey-600); margin-bottom: var(--space-4); display: flex; gap: var(--space-2); flex-wrap: wrap; }
.asset-card__meta span { background: var(--grey-100); padding: 2px 8px; border-radius: var(--radius-sm); font-weight: 500; }
.asset-card__downloads { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.asset-card__btn {
  font-size: var(--fs-xs); padding: 0.5rem 0.875rem;
  border: 1px solid var(--gold); color: var(--navy); background: transparent;
  border-radius: var(--radius-sm); text-decoration: none; font-weight: 600;
  transition: all var(--t-base);
}
.asset-card__btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Color palette grid */
.colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.color-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.color-card__swatch {
  height: 130px;
  position: relative;
}
.color-card__swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.06));
  pointer-events: none;
}
.color-card__body { padding: var(--space-4); font-family: var(--font-sans); }
.color-card__name { font-weight: 700; color: var(--navy); margin-bottom: var(--space-2); font-size: 0.95rem; }
.color-card__codes { font-size: var(--fs-xs); color: var(--grey-600); line-height: 1.7; }
.color-card__codes code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  font-size: 0.78rem; background: var(--grey-100); padding: 1px 6px;
  border-radius: 3px; color: var(--navy);
}

/* Typography spec */
.typo-spec {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: var(--space-6);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: var(--space-4);
}
.typo-spec__sample { font-size: 1.5rem; color: var(--navy); margin-bottom: var(--space-3); }
.typo-spec__label { font-family: var(--font-sans); font-weight: 600; color: var(--gold);
  text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.15em; margin-bottom: var(--space-1); }
.typo-spec__details { font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--grey-600); }

/* Usage rules */
.usage-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.usage-rule {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--white);
  border-top: 4px solid var(--success);
}
.usage-rule--no { border-top-color: var(--danger); }
.usage-rule__icon { font-size: 1.5rem; margin-bottom: var(--space-2); }
.usage-rule__title { font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  color: var(--navy); margin-bottom: var(--space-2); }
.usage-rule__text { font-size: var(--fs-sm); color: var(--grey-600); line-height: 1.6; }

/* Big download CTA */
.big-download {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white); padding: var(--space-12);
  border-radius: var(--radius-lg); text-align: center;
  position: relative; overflow: hidden;
}
.big-download::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 164, 92, 0.18), transparent 50%);
  pointer-events: none;
}
.big-download > * { position: relative; z-index: 1; }
.big-download h3 { color: var(--white); font-size: 1.875rem; margin-bottom: var(--space-3); }
.big-download p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-6); font-size: var(--fs-md); }

/* Brand section sur Qui sommes-nous */
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-8);
}
.brand-showcase__visual {
  background: var(--navy-soft);
  padding: var(--space-12);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.brand-showcase__visual img,
.brand-showcase__visual svg { max-width: 80%; height: auto; }
@media (max-width: 900px) {
  .brand-showcase { grid-template-columns: 1fr; }
}

/* =========================================================
   PHOTOS RÉELLES — Composants premium
   ========================================================= */

/* Galerie 6 photos — section "En images" */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.photo-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.photo-gallery__item:hover img { transform: scale(1.06); }
.photo-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 31, 58, 0.85) 100%);
  pointer-events: none;
  transition: opacity var(--t-base);
}
.photo-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-5) var(--space-4);
  color: var(--white);
  z-index: 1;
}
.photo-gallery__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.photo-gallery__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
}
@media (max-width: 900px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .photo-gallery { grid-template-columns: 1fr; }
}

/* Hero avec photo background + overlay navy */
.hero--photo {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--photo .hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.85) 0%, rgba(31, 78, 95, 0.65) 100%);
  z-index: 1;
}
.hero--photo .hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero--photo .hero__title { color: var(--white); }
.hero--photo .hero__subtitle { color: rgba(255, 255, 255, 0.9); }

/* Figure photo professionnelle (split-section) */
.photo-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.18);
}
.photo-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-figure__caption {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  border-left: 3px solid var(--gold);
}

/* Cards process (Boucle intégrée illustrée) */
.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.process-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.process-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-card__photo::before {
  content: attr(data-step);
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.process-card__body { padding: var(--space-5); }
.process-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.process-card__text {
  font-size: var(--fs-sm);
  color: var(--grey-600);
  line-height: 1.6;
}

/* Photo accent (petite, en complément d'une section) */
.photo-accent {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.photo-accent img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Strip photo (bandeau facts illustré) */
.facts-strip--photo {
  position: relative;
  overflow: hidden;
}
.facts-strip--photo .facts-strip__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.18;
}
.facts-strip--photo > .container { position: relative; z-index: 1; }
