/* =============================================
   ARCAN — Styles globaux
   ============================================= */

:root {
  --navy: #001B3D;
  --gold: #C0954F;
  --white: #FFFFFF;
  --slate: #4A5568;
  --body-text: #333333;
  --light-bg: #F8F8F8;
  --font: Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
}

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

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

/* =============================================
   UTILITAIRES
   ============================================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: block;
}

.gold-line {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.brand-highlight {
  color: var(--gold);
  font-weight: 600;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Éléments hero visibles immédiatement, sans animation */
.hero .hero__logo,
.hero .hero__headline,
.hero .hero__sub,
.hero .hero__tagline,
.hero .btn {
  opacity: 1;
  transform: none;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(0, 27, 61, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
}

.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.hero__logo-img {
  height: 140px;
  width: auto;
  margin: 0 auto 32px;
  display: block;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--white);
}

.nav__cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  padding: 5px 9px;
}

.nav__lang-current {
  color: var(--gold);
  font-weight: bold;
}

.nav__lang-sep {
  color: rgba(255,255,255,0.3);
}

.nav__lang-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.nav__lang-link:hover {
  color: var(--white);
}

.nav__mobile-menu .nav__lang {
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav__mobile-menu .nav__cta {
  font-size: 14px;
  padding: 12px 28px;
}

/* =============================================
   HERO (commun)
   ============================================= */

.hero {
  background: var(--navy);
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.hero__logo {
  font-family: var(--font);
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero__headline {
  font-size: 26px;
  font-weight: bold;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

.hero__tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 44px;
}

.hero__separator {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Page sub-heroes */
.hero--page {
  padding: 80px 40px 70px;
}

.hero--page .hero__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 14px;
}

.hero--page .hero__subtitle {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   BOUTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

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

.btn--gold:hover {
  background: #d4a85e;
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   SECTION ENGAGEMENTS
   ============================================= */

.engagements {
  background: var(--white);
  padding: 90px 0;
}

.engagements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 16px;
  align-items: start;
}

.engagement__title {
  font-size: 15px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(192,149,79,0.3);
  min-height: 60px;
}

.engagement__text {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.8;
  text-align: justify;
}

/* =============================================
   SECTION ACCROCHE
   ============================================= */

.accroche {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}

.accroche__text {
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 2.2;
}

.accroche__text em {
  color: var(--gold);
  font-style: normal;
}

/* =============================================
   SECTION SERVICES (aperçu accueil)
   ============================================= */

.services-preview {
  background: var(--white);
  padding: 90px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,27,61,0.08);
}

.service-row:first-of-type {
  border-top: 1px solid rgba(0,27,61,0.08);
}

.service-row__label {
  font-size: 15px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(192,149,79,0.3);
  display: block;
}

.service-row__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
}

.services-preview__cta {
  margin-top: 48px;
  text-align: right;
}

.link-gold {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.link-gold:hover {
  gap: 10px;
}

/* =============================================
   SECTION CTA INTERMÉDIAIRE
   ============================================= */

.cta-band {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}

.cta-band__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-band__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-style: italic;
}

/* =============================================
   SECTION FAQ
   ============================================= */

.faq {
  background: var(--white);
  padding: 90px 0;
}

.faq__list {
  margin-top: 8px;
}

.faq__item {
  border-bottom: 1px solid rgba(0,27,61,0.1);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: bold;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: normal;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.85;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

/* =============================================
   SECTION À PROPOS (aperçu accueil)
   ============================================= */

.apropos-preview {
  background: var(--navy);
  padding: 90px 0;
}

.apropos-preview__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.apropos-preview__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(192,149,79,0.12);
  border: 1px solid rgba(192,149,79,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(192,149,79,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}

.apropos-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apropos-preview__content {
  color: rgba(255,255,255,0.82);
}

.apropos-preview__name {
  font-size: 18px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 28px;
}

.apropos-preview__text p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

.apropos-preview__cta {
  margin-top: 32px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer__separator {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
  margin-bottom: 60px;
}

.footer__grid {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
}

.footer__grid > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.footer__tagline {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* =============================================
   PAGE SERVICES — Sections détaillées
   ============================================= */

.service-section {
  padding: 90px 0;
}

.service-section--alt {
  background: var(--light-bg);
}

.service-section__num {
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.service-section__pitch {
  font-size: 22px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 22px;
  font-style: italic;
}

.service-section__desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 44px;
  text-align: justify;
}

.service-section__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

.service-section__subtitle {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: bold;
}

.service-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-section__list li {
  font-size: 13.5px;
  color: var(--slate);
  position: relative;
  line-height: 1.6;
  text-align: justify;
}

.service-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.tarif-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,27,61,0.07);
  gap: 20px;
}

.tarif-row__name {
  font-size: 13px;
  color: var(--body-text);
}

.tarif-row__price {
  font-size: 14px;
  font-weight: bold;
  color: var(--navy);
  white-space: nowrap;
}

.tarif-note {
  font-size: 11px;
  color: var(--slate);
  font-style: italic;
  margin-top: 14px;
}

/* =============================================
   TUNNEL CLIENT
   ============================================= */

.tunnel {
  background: var(--navy);
  padding: 90px 0;
}

.tunnel__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-bottom: 64px;
}

.tunnel__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.tunnel__steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: rgba(192,149,79,0.3);
}

.tunnel__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.tunnel__step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.tunnel__step-title {
  font-size: 13px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.tunnel__step-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* =============================================
   PAGE À PROPOS
   ============================================= */

.fondateur {
  background: var(--navy);
  padding: 90px 0;
}

.fondateur__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}

.fondateur__photo {
  width: 100%;
  background: rgba(192,149,79,0.1);
  border: 1px solid rgba(192,149,79,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(192,149,79,0.35);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.fondateur__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.fondateur__name {
  font-size: 22px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 32px;
}

.fondateur__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.philosophie {
  background: var(--white);
  padding: 90px 0;
}

.philosophie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 16px;
  align-items: start;
}

.philosophie__bloc-title {
  font-size: 17px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(192,149,79,0.3);
  font-style: italic;
  min-height: 60px;
}

.philosophie__bloc-text {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.85;
  text-align: justify;
}

.pourquoi {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
}

.pourquoi__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-style: italic;
}

/* =============================================
   PAGE VEILLE
   ============================================= */

.veille-intro {
  background: var(--white);
  padding: 80px 0;
}

.veille-intro__text {
  max-width: 100%;
  margin: 0 auto;
}

.veille-intro__text p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}

.veille-intro__note {
  font-size: 11px;
  color: rgba(74,85,104,0.6);
  font-style: italic;
}

.veille-inscription {
  background: #0a2548;
  padding: 80px 0;
}

.veille-inscription__title {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
  text-align: center;
}

.veille-inscription__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  font-style: italic;
  text-align: center;
}

.inscription-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.inscription-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 13px 18px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.inscription-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.inscription-form input:focus {
  border-color: var(--gold);
}

.inscription-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 13px 24px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.inscription-form button:hover {
  background: #d4a85e;
}

.inscription-note {
  font-size: 11px;
  color: var(--slate);
  opacity: 0.6;
  margin: 14px auto 0;
  font-style: italic;
  text-align: center;
  max-width: 560px;
}

.veille-editions {
  background: var(--white);
  padding: 80px 0;
}

.veille-placeholder {
  background: var(--light-bg);
  border: 1px solid rgba(0,27,61,0.08);
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.veille-placeholder__text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  font-style: italic;
}

/* =============================================
   PAGE CONTACT
   ============================================= */

.contact-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.contact-tally {
  min-height: 500px;
}

.tally-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 40px;
}

.contact-info__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.contact-info__item {
  margin-bottom: 20px;
}

.contact-info__item-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.contact-info__item-value {
  font-size: 14px;
  color: var(--white);
}

.contact-info__item-value a {
  color: var(--gold);
  transition: color 0.2s;
}

.contact-info__item-value a:hover {
  color: #d4a85e;
}

.contact-note {
  margin-top: 36px;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.06);
}

.contact-note__text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-style: italic;
  text-align: justify;
}

/* =============================================
   PAGE MENTIONS LÉGALES
   ============================================= */

.mentions-content {
  background: var(--white);
  padding: 80px 0;
}

.mentions-section {
  margin-bottom: 64px;
}

.mentions-section__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(192,149,79,0.3);
}

.mentions-block {
  margin-bottom: 24px;
}

.mentions-block__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.mentions-block__value {
  font-size: 14px;
  color: var(--body-text);
}

.cgs-article {
  margin-bottom: 36px;
}

.cgs-article__title {
  font-size: 14px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.cgs-article__body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 12px;
}

.cgs-article__body:last-child {
  margin-bottom: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .engagements__grid,
  .philosophie__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tunnel__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .tunnel__steps::before {
    display: none;
  }

  .fondateur__inner,
  .apropos-preview__inner {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }

  .service-section__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__inner > .nav__links,
  .nav__inner > .nav__cta,
  .nav__inner > .nav__lang {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .hero {
    padding: 72px 24px;
  }

  .hero__logo {
    font-size: 32px;
  }

  .hero__headline {
    font-size: 20px;
  }

  .container {
    padding: 0 24px;
  }

  .engagements,
  .services-preview,
  .faq,
  .fondateur,
  .philosophie,
  .veille-intro,
  .veille-editions,
  .contact-section,
  .mentions-content,
  .service-section {
    padding: 60px 0;
  }

  .engagements__grid,
  .philosophie__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .fondateur__inner,
  .apropos-preview__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fondateur__photo,
  .apropos-preview__photo {
    max-width: 240px;
    aspect-ratio: 3/4;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .accroche__text {
    font-size: 20px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .inscription-form {
    flex-direction: column;
  }

  .inscription-form input,
  .inscription-form button {
    width: 100%;
  }
}
