/* =========================================================
   S.I.C.T — Société Internationale de Commerce et de Trading
   Feuille de styles unique — CSS pur, mobile first
   ========================================================= */

/* ---------- 1. Jetons de design ---------- */
:root {
  /* Palette dérivée du logo */
  --gold:        #b8863b;
  --gold-light:  #d4a855;
  --gold-dark:   #8f6529;
  --gold-wash:   #fbf6ec;

  --ink:         #12161c;
  --ink-soft:    #2a3038;
  --muted:       #5a6472;
  --muted-light: #8b94a1;

  --bg:          #ffffff;
  --bg-alt:      #faf7f1;
  --bg-dark:     #12161c;
  --line:        #e9e4da;
  --line-strong: #d8d1c3;

  /* Typographie */
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Échelle typographique */
  --fs-hero:  clamp(2.3rem, 1.35rem + 3.4vw, 4rem);
  --fs-h1:    clamp(2rem, 1.4rem + 2.2vw, 3.1rem);
  --fs-h2:    clamp(1.65rem, 1.25rem + 1.5vw, 2.4rem);
  --fs-h3:    clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  --fs-lead:  clamp(1.03rem, 0.98rem + 0.3vw, 1.19rem);
  --fs-body:  1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* Rythme */
  --sp-section: clamp(4rem, 2rem + 7vw, 7.5rem);
  --radius:     16px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18, 22, 28, .05), 0 2px 8px rgba(18, 22, 28, .04);
  --shadow-md: 0 4px 12px rgba(18, 22, 28, .06), 0 12px 32px rgba(18, 22, 28, .07);
  --shadow-lg: 0 8px 24px rgba(18, 22, 28, .08), 0 24px 60px rgba(18, 22, 28, .1);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Réinitialisation ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Utilitaires de mise en page ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding-block: var(--sp-section); }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: rgba(255, 255, 255, .72); }
.section--dark h2, .section--dark h3 { color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* En-tête de section */
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 1rem + 3vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.section--dark .eyebrow { color: var(--gold-light); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.72;
  color: var(--muted);
}
.section--dark .lead { color: rgba(255, 255, 255, .74); }

/* ---------- 4. Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184, 134, 59, .28);
}
.btn--primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 22px rgba(184, 134, 59, .34);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

.section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .28); }
.section--dark .btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--sm { padding: 10px 20px; font-size: .86rem; }

/* Lien fléché */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.arrow-link svg { transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- 5. Barre de navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(18, 22, 28, .05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.nav__logo { flex: none; margin-right: auto; display: block; }
.nav__logo img { height: 42px; width: auto; }

.nav__menu {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--gold-dark); background: var(--gold-wash); }
.nav__link.is-active { color: var(--gold-dark); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

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

/* Sélecteur de langue */
.lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.lang a {
  padding: 7px 13px;
  color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang a:hover { background: var(--gold-wash); color: var(--gold-dark); }
.lang a.is-active { background: var(--gold); color: #fff; }

.nav__cta { display: none; }

/* Bouton hamburger */
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panneau mobile */
.nav__drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
  border-top: 1px solid transparent;
}
.nav__drawer.is-open {
  grid-template-rows: 1fr;
  border-top-color: var(--line);
}
.nav__drawer > div { overflow: hidden; }
.nav__drawer ul { padding: 10px 0 20px; }
.nav__drawer a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-soft);
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}
.nav__drawer a.is-active { color: var(--gold-dark); font-weight: 600; }
.nav__drawer .btn { width: 100%; margin-top: 18px; }

@media (min-width: 1000px) {
  .nav__menu   { display: flex; }
  .nav__cta    { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__drawer { display: none; }
}

/* ---------- 6. Section héros ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 1.5rem + 5vw, 6rem) clamp(3.5rem, 2rem + 5vw, 6.5rem);
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(184, 134, 59, .12), transparent 62%),
    radial-gradient(680px 400px at -6% 105%, rgba(184, 134, 59, .07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { font-size: var(--fs-hero); font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__lead { max-width: 54ch; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media { position: relative; isolation: isolate; }
.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .45;
  z-index: 0;
}

/* Badge flottant sur la photo */
.hero__badge {
  position: absolute;
  z-index: 2;
  left: -14px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.hero__badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero__badge span {
  font-size: var(--fs-small);
  line-height: 1.35;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}
@media (max-width: 560px) {
  .hero__badge { left: 0; bottom: -18px; padding: 13px 18px; }
  .hero__media::before { display: none; }
}

/* Bandeau de confiance sous le héros */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding-block: 26px;
}
.trustbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.trustbar svg { color: var(--gold); flex: none; }

/* ---------- 7. Grilles génériques ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ---------- 8. Cartes métiers ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card__media { position: relative; overflow: hidden; background: var(--bg-alt); }
.card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .55em; }
.card__body p { font-size: .955rem; margin-bottom: 1.35em; }
.card__body .arrow-link { margin-top: auto; align-self: flex-start; }

.card__num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  display: block;
  margin-bottom: .7rem;
}

/* Carte icône (valeurs, engagements) */
.icard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icard__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-wash);
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.icard h3 { margin-bottom: .5em; }
.icard p { font-size: .955rem; }
.icard ul { margin-top: 1rem; }
.icard li {
  position: relative;
  padding-left: 24px;
  font-size: .93rem;
  margin-bottom: .55rem;
}
.icard li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.icard li:last-child { margin-bottom: 0; }

/* ---------- 9. Compteurs / chiffres clés ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg-dark);
  padding: 34px 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat span {
  font-size: var(--fs-small);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

/* Variante claire */
.stats--light { background: var(--line); border-color: var(--line); }
.stats--light .stat { background: #fff; }
.stats--light .stat strong { color: var(--gold-dark); }
.stats--light .stat span { color: var(--muted); }

/* ---------- 10. Sections texte + image alternées ---------- */
.split {
  display: grid;
  gap: clamp(2.2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split + .split { margin-top: clamp(3.5rem, 2rem + 5vw, 6.5rem); }

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.split__body h2 { font-size: var(--fs-h2); }
.split__body ul { margin-top: 1.6rem; display: grid; gap: .8rem; }
.split__body li {
  position: relative;
  padding-left: 32px;
  font-size: .96rem;
  color: var(--ink-soft);
}
.split__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-wash);
  border: 1.5px solid var(--gold);
}
.split__body li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: .62em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

/* Ancre décalée sous l'en-tête collant */
.anchor { scroll-margin-top: 100px; }

/* ---------- 11. Produits ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.8rem;
}
.filters button {
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  cursor: pointer;
  transition: all .22s var(--ease);
}
.filters button:hover { border-color: var(--gold); color: var(--gold-dark); }
.filters button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.product__media { background: var(--bg-alt); overflow: hidden; }
.product__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__body { padding: 18px 16px 22px; }
.product__body h3 { font-size: 1.02rem; margin-bottom: .25em; }
.product__body span {
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.product.is-hidden { display: none; }

/* ---------- 12. Mot du directeur ---------- */
.quote { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
@media (min-width: 900px) { .quote { grid-template-columns: .82fr 1.18fr; } }

.quote__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quote__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 32%;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: .7;
  color: var(--gold);
  opacity: .3;
  margin-bottom: .2rem;
  display: block;
}
.quote__body p {
  font-size: clamp(1.02rem, .97rem + .3vw, 1.14rem);
  line-height: 1.75;
}
.quote__sign {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.section--dark .quote__sign { border-top-color: rgba(255, 255, 255, .15); }
.quote__sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.section--dark .quote__sign strong { color: #fff; }
.quote__sign span {
  font-size: var(--fs-small);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section--dark .quote__sign span { color: var(--gold-light); }

/* ---------- 13. Frise chronologique ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--line));
}
.timeline li { position: relative; padding-bottom: 2.2rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
}
.timeline b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
  margin-bottom: .3rem;
}
.timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: var(--ink);
  margin-bottom: .35rem;
}
.timeline p { font-size: .95rem; }

/* Neutralise les puces « check » héritées quand la frise vit dans un .split__body */
.split__body .timeline { display: block; margin-top: 2.4rem; }
.split__body .timeline li { padding-left: 0; font-size: inherit; color: inherit; }
.split__body .timeline li::after { content: none; }

/* ---------- 14. Appel à l'action ---------- */
.cta {
  position: relative;
  background:
    linear-gradient(140deg, rgba(184, 134, 59, .96), rgba(143, 101, 41, .96)),
    var(--gold);
  border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 1.5rem + 4vw, 4.5rem);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 300px at 82% 6%, rgba(255, 255, 255, .18), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta p { color: rgba(255, 255, 255, .88); max-width: 56ch; margin-inline: auto; }
.cta .btn--primary { background: #fff; color: var(--gold-dark); box-shadow: 0 6px 20px rgba(0, 0, 0, .16); }
.cta .btn--primary:hover { background: var(--ink); color: #fff; }
.cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- 15. Bannière de page intérieure ---------- */
.pagehead {
  position: relative;
  padding-block: clamp(3rem, 1.6rem + 5vw, 5.5rem) clamp(2.6rem, 1.4rem + 4vw, 4.5rem);
  background:
    radial-gradient(760px 420px at 84% -18%, rgba(184, 134, 59, .13), transparent 62%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.pagehead h1 { max-width: 20ch; }
.pagehead .lead { max-width: 62ch; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--muted-light);
  margin-bottom: 1.2rem;
}
.crumbs a:hover { color: var(--gold-dark); }
.crumbs span[aria-current] { color: var(--ink-soft); }

/* ---------- 16. Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.2rem, 1rem + 4vw, 3.5rem); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; } }

.infolist { display: grid; gap: 18px; }
.infolist li {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.infolist .icard__icon { width: 44px; height: 44px; margin: 0; flex: none; border-radius: 12px; }
.infolist strong {
  display: block;
  font-family: var(--font-display);
  font-size: .93rem;
  color: var(--ink);
  margin-bottom: .15rem;
}
.infolist a, .infolist p { font-size: .95rem; color: var(--muted); word-break: break-word; }
.infolist a:hover { color: var(--gold-dark); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 1rem + 2vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field label .req { color: var(--gold-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.65; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 59, .13);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-light); }

.form .btn { width: 100%; margin-top: 6px; }
.form__note {
  font-size: .82rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
}

.map {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map iframe { width: 100%; height: 320px; border: 0; }

/* ---------- 17. Pied de page ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .62);
  padding-top: clamp(3.2rem, 2rem + 4vw, 5rem);
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 3rem;
}
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.9fr 1fr 1fr 1.15fr; } }

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer__about { max-width: 40ch; line-height: 1.7; }

.site-footer h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer__links li { margin-bottom: .68rem; }
.footer__links a { transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer__links a:hover { color: var(--gold-light); padding-left: 5px; }

.footer__contact li { display: flex; gap: 11px; margin-bottom: .9rem; line-height: 1.55; }
.footer__contact svg { color: var(--gold-light); flex: none; margin-top: 4px; }
.footer__contact a:hover { color: var(--gold-light); }

.socials { display: flex; gap: 10px; margin-top: 1.4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .78);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
}
.footer__bottom a:hover { color: var(--gold-light); }

/* Bloc de droite : langue + crédit agence */
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
}
.footer__credit { color: rgba(255, 255, 255, .4); }
.footer__credit a {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, .68);
  transition: color .2s var(--ease);
}
.footer__credit a:hover { color: var(--gold-light); }

/* ---------- 18. Bouton retour en haut ---------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: var(--shadow-md);
  transition: all .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }

/* ---------- 19. Révélation au défilement ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 20. Impression ---------- */
@media print {
  .site-header, .site-footer, .to-top, .cta, .filters { display: none !important; }
  body { color: #000; }
  .reveal { opacity: 1; transform: none; }
}
