/* ============================================================
   ARGONAUTE Solutions RH — feuille de style statique
   Reproduction propre du design du site argonauterh.com
   ============================================================ */

:root {
  --c-primary: #00567d;      /* bleu foncé */
  --c-secondary: #629bb5;    /* bleu acier */
  --c-orange: #ff8a00;
  --c-yellow: #efb509;
  --c-footer: #223f59;
  --c-footer-bottom: #00567d;
  --c-text: #4a4a4a;
  --c-title: #00567d;
  --tint-blue: rgba(0, 111, 175, 0.07);
  --band-gray: #e6ecf4;
  --container: 1170px;
  --font: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background-color: var(--c-primary); color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 600;
  color: var(--c-title);
  margin: 0 0 15px;
}
h1 { font-size: 55px; line-height: 70px; }
h2 { font-size: 28px; line-height: 42px; text-transform: uppercase; }
h3 { font-size: 22px; line-height: 32px; }
h4 { font-size: 20px; line-height: 30px; }
h5 { font-size: 20px; line-height: 30px; }
h6 { font-size: 15px; line-height: 23px; }

p { margin: 0 0 15px; }
b, strong { font-weight: 600; }

a { color: var(--c-primary); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--c-secondary); }

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

ul { padding-left: 20px; }

blockquote {
  margin: 0 0 20px;
  padding: 15px 25px;
  border-left: 4px solid var(--c-secondary);
  background: var(--tint-blue);
}
blockquote :last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-center { text-align: center; }

/* Titre de contenu (pages intérieures) : petit, avec trait dessous */
.heading {
  position: relative;
  font-size: 21px;
  line-height: 28px;
  padding-bottom: 15px;
  margin: 0 0 30px;
}
.heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--c-secondary);
}
.heading--center::after { left: 50%; margin-left: -15px; }
* + .heading { margin-top: 35px; }

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  padding: 14px 20px;
  border: 2px solid var(--c-secondary);
  background: var(--c-secondary);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all .4s ease-in-out;
  font-family: inherit;
}
.btn:hover { background: transparent; color: var(--c-secondary); }

.btn--orange { border-color: var(--c-orange); background: var(--c-orange); }
.btn--orange:hover { background: transparent; color: var(--c-orange); }

.btn--outline-white { border-color: #fff; background: transparent; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--c-primary); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: padding .3s ease;
}
.site-header.is-stuck .header-inner { padding-top: 15px; padding-bottom: 15px; }

.logo img { display: block; height: 78px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-primary);
  font-size: 26px;
  cursor: pointer;
  padding: 5px;
}

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--c-primary);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.is-active > a { color: var(--c-secondary); }

.main-nav .caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--c-primary);
}
.main-nav .sub-menu a:hover { color: var(--c-secondary); }

/* Boutons du menu */
.main-nav li.menu-btn > a {
  color: #fff;
  padding: 12px 15px;
  line-height: 1;
  border: 2px solid transparent;
  margin-left: 6px;
}
.main-nav li.menu-btn--cv > a { background: var(--c-secondary); }
.main-nav li.menu-btn--cv > a:hover {
  background: transparent;
  border-color: var(--c-secondary);
  color: var(--c-secondary);
}
.main-nav li.menu-btn--offres > a { background: var(--c-orange); }
.main-nav li.menu-btn--offres > a:hover {
  background: transparent;
  border-color: var(--c-orange);
  color: var(--c-orange);
}

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .main-nav.is-open { display: block; }
  .main-nav > ul { display: block; padding: 10px 0; }
  .main-nav > ul > li > a { padding: 10px 20px; }
  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
  }
  .main-nav li.menu-btn > a { margin: 8px 20px; display: inline-block; }
}

/* ---------- Bandeau de titre (pages intérieures) ---------- */

.page-header {
  background: #f5f5f5;
  padding: 35px 0;
}
.page-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.page-header__title {
  margin: 0;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #444;
  text-transform: uppercase;
}
.breadcrumbs { font-size: 14px; color: #444; }
.breadcrumbs a { color: #444; }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs .icon { margin: 0 4px; color: var(--c-secondary); width: 12px; height: 12px; }

.page-header--image {
  position: relative;
  padding: 45px 0;
  background-size: cover;
  background-position: center;
}
.page-header--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.page-header--image .container { position: relative; }
.page-header--image .page-header__title,
.page-header--image .breadcrumbs,
.page-header--image .breadcrumbs a { color: #fff; }

/* ---------- Sections ---------- */

.section { padding-top: 50px; padding-bottom: 50px; }
.section--tint { background: var(--tint-blue); }
.section--gray { background: var(--band-gray); }
.section--flush { padding-top: 0; padding-bottom: 0; }

.section-heading { text-align: center; margin-bottom: 30px; }
.section-heading h1,
.section-heading h2 { font-size: 28px; line-height: 42px; margin-bottom: 10px; }
.section-heading .lead { max-width: 900px; margin: 0 auto; }

/* ---------- Slider (accueil) ---------- */

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: var(--c-primary);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 56, 0.25);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-slide__title {
  font-family: var(--font);
  font-size: 64px;
  line-height: 64px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7b00;
  margin: 0;
  max-width: 800px;
  opacity: 0;
  transform: scale(0.9);
  transition: all .5s ease .55s;
}
.hero-slide__sub {
  font-family: "Open Sans", var(--font);
  font-size: 20px;
  line-height: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease .3s;
}
.hero-slide.is-active .hero-slide__title { opacity: 1; transform: none; }
.hero-slide.is-active .hero-slide__sub { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero-slider { height: 450px; }
  .hero-slide__title { font-size: 58px; line-height: 52px; }
}
@media (max-width: 778px) {
  .hero-slider { height: 400px; }
  .hero-slide__title { font-size: 48px; line-height: 46px; margin-bottom: 35px; }
}
@media (max-width: 480px) {
  .hero-slider { height: 620px; }
  .hero-slide__title { font-size: 38px; line-height: 34px; }
  .hero-slide__sub { font-size: 16px; }
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  transition: background .3s ease;
}
.hero-dots button.is-active,
.hero-dots button:hover { background: rgba(255, 255, 255, 0.9); }

/* ---------- Grille secteurs (accueil / secteurs) ---------- */

.sector-grid {
  max-width: 1142px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sector-grid img { display: block; width: 100%; }

@media (max-width: 767px) {
  .sector-grid { grid-template-columns: 1fr; }
}

/* ---------- Boîtes à icône ---------- */

.icon-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.icon-box { text-align: center; }
.icon-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  background: var(--c-primary);
  border: 2px solid var(--c-primary);
  margin-bottom: 25px;
  transition: all .45s ease-in-out;
}
.icon-box__icon .icon { width: 28px; height: 28px; }
.icon-box:hover .icon-box__icon { background: var(--c-secondary); border-color: var(--c-secondary); }
.icon-box h5 { font-size: 18px; font-weight: 600; line-height: 26px; margin-bottom: 10px; }
.icon-box h5 a { color: inherit; }
.icon-box p { font-size: 15px; line-height: 23px; margin: 0; }

@media (max-width: 767px) {
  .icon-boxes { grid-template-columns: 1fr; }
}

/* ---------- Cartes offres (carrousel accueil + liste) ---------- */

.offers-carousel { position: relative; }
.offers-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 3);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.offers-track::-webkit-scrollbar { display: none; }

@media (max-width: 991px) {
  .offers-track { grid-auto-columns: calc((100% - 30px) / 2); }
}
@media (max-width: 640px) {
  .offers-track { grid-auto-columns: 100%; }
}

.offer-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
}
.offer-card h3 {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 12px;
}
.offer-card h3 a { color: var(--c-primary); }
.offer-card h3 a:hover { color: var(--c-secondary); }

.offer-meta {
  font-size: 13px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.offer-meta .icon { width: 14px; height: 14px; margin-right: 5px; }
.offer-meta a { color: #888; }
.offer-meta a:hover { color: var(--c-secondary); }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}
.carousel-nav button {
  width: 30px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--c-secondary);
  background: transparent;
  cursor: pointer;
  transition: background .3s ease;
}
.carousel-nav button.is-active,
.carousel-nav button:hover { background: var(--c-secondary); }

/* Fiches prestataires */
.provider-card {
  background: #f9f9f9;
  border-radius: 2px;
  padding: 30px;
}
.provider-card h6 { margin-bottom: 20px; }
.provider-card__cta { text-align: right; margin: 25px 0 0; }

/* Article d'annonce (page individuelle) */
.post-article__title {
  font-size: 28px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 15px;
}
.post-article__meta { margin-bottom: 30px; }
.post-article__content h2 { margin-top: 35px; }
.post-article__content a { word-break: break-word; }

/* Liste des offres (page Nos offres) */
.offer-row {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.offer-row h3 { font-size: 20px; line-height: 30px; margin-bottom: 8px; }
.offer-row__excerpt { margin: 12px 0; }
.offer-row .read-more {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--c-secondary);
  font-weight: 600;
}
.offer-row .read-more:hover { color: var(--c-primary); }
.offer-row .read-more .icon { width: 13px; height: 13px; }

/* ---------- Galeries d'images ---------- */

.img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}
.img-row img { display: block; width: 100%; }
@media (max-width: 767px) {
  .img-row { grid-template-columns: 1fr; }
}

/* Galerie avec légende au survol (page Nos services) */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.gallery-item img { display: block; width: 100%; transition: opacity .3s ease; }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 86, 125, 0.7);
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  padding: 15px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  margin: 0;
}
.gallery-item__overlay span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 22px;
}

/* ---------- Citation (testimonial) ---------- */

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 30px;
}
.testimonial p { font-size: 16px; font-style: italic; }
.testimonial__author { margin-top: 25px; }
.testimonial__author h4 {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 5px;
  padding-top: 15px;
}
.testimonial__author h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--c-secondary);
}
.testimonial__author span {
  display: block;
  font-size: 14px;
  color: var(--c-secondary);
}

/* ---------- Mise en page avec sidebar ---------- */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 991px) {
  .layout { grid-template-columns: 1fr; }
}

.sidebar .widget { margin-bottom: 40px; }
.widget-title {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 23px;
  padding-bottom: 15px;
  margin: 0 0 25px;
}
.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--c-secondary);
}

.contact-box {
  background: var(--c-primary);
  color: #fff;
  padding: 35px 30px;
}
.contact-box h5 { color: #fff; margin-bottom: 12px; }
.contact-box p { font-size: 14px; line-height: 22px; }
.contact-box .btn { display: block; text-align: center; margin-top: 12px; }
.contact-box .btn .icon { margin-right: 8px; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--c-primary);
  color: #fff;
  transition: background .3s ease;
}
.social-links a:hover { background: var(--c-secondary); }
.social-links .icon { width: 17px; height: 17px; }

.widget-menu { list-style: none; margin: 0; padding: 0; }
.widget-menu li { border-bottom: 1px solid #eee; }
.widget-menu a { display: block; padding: 10px 0; }

/* ---------- Bandeau valeurs (Notre ADN) ---------- */

.values-band { background: var(--band-gray); }
.values-band .icon-boxes { margin-top: 0; grid-template-columns: repeat(3, 1fr); }
.values-band .icon-box { margin-bottom: 10px; }
@media (max-width: 767px) {
  .values-band .icon-boxes { grid-template-columns: 1fr; }
}

/* ---------- Carrousel de citations ---------- */

.quotes-carousel { position: relative; text-align: center; min-height: 130px; }
.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}
.quote-slide.is-active { position: relative; opacity: 1; visibility: visible; }
.quote-slide h4 { font-weight: 600; }
.quote-slide p { font-size: 14px; color: #777; }

/* ---------- Onglets (Expertise RH) ---------- */

.tabs__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--c-secondary);
}
.tabs__nav button {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-primary);
  background: none;
  border: none;
  border-right: 1px solid #ddd;
  padding: 15px 25px 13px;
  cursor: pointer;
  transition: background .3s ease;
}
.tabs__nav li:last-child button { border-right: none; }
.tabs__nav button:hover { background: rgba(84, 139, 201, 0.14); }
.tabs__nav button.is-active { background: rgba(84, 139, 201, 0.14); }
.tabs__nav button.is-active--dark { background: rgba(2, 8, 10, 0.1); }
.tabs__nav button.is-active--warm { background: rgba(255, 177, 89, 0.3); }

.tabs__panel { display: none; padding-top: 30px; }
.tabs__panel.is-active { display: block; }

.expertise-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 25px;
  margin-bottom: 12px;
  align-items: center;
}
.expertise-row h6 { margin: 0; }
.expertise-row p { margin: 0 0 6px; font-size: 15px; }
.expertise-row p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .expertise-row { grid-template-columns: 1fr; }
}

/* ---------- Formulaires ---------- */

.cv-form__row {
  display: grid;
  gap: 20px 50px;
  align-items: center;
  margin-bottom: 35px;
}
.cv-form__row--2 { grid-template-columns: 1fr 1fr; }
.cv-form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.cv-form__q { margin: 0; }

.cv-form input[type="text"],
.cv-form input[type="email"],
.cv-form textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  color: var(--c-text);
  margin: 0;
}
.cv-form input::placeholder,
.cv-form textarea::placeholder { color: #9a9a9a; opacity: 1; }
.cv-form input:focus,
.cv-form textarea:focus { outline: none; border-color: var(--c-primary); }
.cv-form textarea { min-height: 240px; resize: vertical; margin-bottom: 35px; }

.cv-form .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin: 0;
}
.cv-form .check-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  margin: 0;
}

.cv-form__file { margin-bottom: 35px; }

/* Champ anti-spam (honeypot) : invisible pour les humains */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cv-form .gdpr {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}
.cv-form .gdpr input { margin-top: 8px; }

.form-note { font-size: 14px; color: #888; margin-top: 15px; }

@media (max-width: 767px) {
  .cv-form__row--2,
  .cv-form__row--3 { grid-template-columns: 1fr; }
}

/* Bandeau formulaire sur image (Recrutements) */
.cta-form-band {
  position: relative;
  background: var(--band-gray);
  padding: 60px 0;
}
.cta-form-band .section-heading { margin-bottom: 40px; }

/* ---------- Carte ---------- */

.map-block iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ---------- Bloc coordonnées (Contact) ---------- */

.office-card {
  background: var(--c-secondary);
  color: #fff;
  padding: 30px 35px;
}
.office-card ul { list-style: none; margin: 0; padding: 0; }
.office-card li { margin-bottom: 10px; }
.office-card li:last-child { margin-bottom: 0; }
.office-card .icon { margin-right: 10px; }
.office-card a { color: #fff; text-decoration: underline; }

/* ---------- Liens "En savoir plus" centrés ---------- */

.more-link { text-align: center; margin: 40px 0; }
.more-link a { font-weight: 600; }

/* ---------- Pied de page ---------- */

.site-footer { background: var(--c-footer); color: #fff; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--c-secondary); }

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 0 30px;
  font-size: 14px;
  line-height: 1.55em;
}
@media (max-width: 991px) {
  .footer-widgets { grid-template-columns: 1fr; }
}

.site-footer .widget-title { color: #fff; }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { padding: 5px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 14px;
  border: none;
  border-radius: 0;
}
.newsletter-form button {
  padding: 12px 18px;
  border: none;
  background: var(--c-secondary);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease;
}
.newsletter-form button:hover { background: var(--c-orange); }

.footer-bottom { background: var(--c-footer-bottom); font-size: 13px; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ---------- Bandeau cookies ---------- */

.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding: 14px 25px;
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: #444;
}
.cookie-banner a { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity .2s ease;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--refuser {
  background: #fff;
  border: 1px solid #bbb;
  color: #555;
}
.cookie-banner__btn--accepter {
  background: #61a229;
  border: 1px solid #61a229;
  color: #fff;
}

/* ---------- Divers ---------- */

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  .two-cols { grid-template-columns: 1fr; }
}

.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
@media (max-width: 767px) {
  .three-cols { grid-template-columns: 1fr; }
}

.img-portrait {
  float: left;
  width: 200px;
  margin: 0 25px 15px 0;
}
@media (max-width: 640px) {
  .img-portrait { float: none; display: block; margin: 0 auto 20px; }
}

.centered-img { text-align: center; margin: 30px 0; }
