/* ======================================
   BRIKAPRO v2 — Refonte éditoriale
   Palette : anthracite / brique / crème
   ====================================== */

:root {
  --ink: #0f2c42;           /* bleu marine profond (rappel logo) */
  --ink-soft: #1c3f58;
  --cream: #f7f0e0;         /* cream chaud */
  --cream-warm: #ecdcc0;
  --accent: #e59530;        /* orange doré logo */
  --accent-hover: #c67a1a;
  --accent-light: #f0bb6b;  /* orange clair pour fonds sombres */
  --accent-blue: #3080c0;   /* bleu logo (rappel ponctuel) */
  --muted: #6b7684;
  --border: #dccebc;
  --white: #ffffff;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 2px;
  --shadow: 0 24px 60px -24px rgba(15, 44, 66, 0.35);
  --shadow-sm: 0 4px 14px rgba(15, 44, 66, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============ TYPOGRAPHIE ============ */
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.h2--light { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--light { color: var(--accent-light); }
.eyebrow--light::after { background: var(--accent-light); }

.lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.lede--light { color: rgba(255,255,255,0.85); }
.muted { color: var(--muted); font-size: 0.95rem; }

p { margin-bottom: 1rem; }

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.nav.is-scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s;
}
.nav__brand:hover { transform: scale(1.03); }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1;
  transition: all 0.3s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.nav.is-scrolled .nav__wordmark {
  color: var(--ink);
  font-size: 1.5rem;
  text-shadow: none;
}
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav__links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
}
.nav__cta:hover { background: var(--accent-hover); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-out forwards;
}
@keyframes slowZoom {
  to { transform: scale(1.15); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,44,66,0.5) 0%, rgba(15,44,66,0.9) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 900px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 400;
}
.hero__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.hero__stats span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 0;
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
}
.section--cream {
  background: var(--cream-warm);
}
.section__head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section__head .eyebrow { margin-left: auto; margin-right: auto; }
.section__head .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section__foot { text-align: center; margin-top: 3rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============ FIGURES ============ */
.figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s ease;
}
.figure:hover img { transform: scale(1.04); }
.figure figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15,44,66,0.88);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
.figure--offset {
  transform: translateY(0);
}
.figure--offset::before {
  content: '';
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 2px solid var(--accent);
  z-index: -1;
  border-radius: var(--radius);
}

/* ============ MINI STATS ============ */
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mini-stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.mini-stats__label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.services-grid > * { grid-column: span 2; }
.services-grid > *:nth-child(4) { grid-column: 2 / span 2; }
.services-grid > *:nth-child(5) { grid-column: span 2; }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img { transform: scale(1.08); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,44,66,0.15) 30%, rgba(15,44,66,0.92) 100%);
  z-index: 1;
}
.service-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.service-card__num {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.service-card__arrow {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
}
.service-card:hover .service-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ============ CHECK LIST ============ */
.check-list {
  list-style: none;
  margin: 1.5rem 0;
}
.check-list li {
  padding: 0.9rem 0 0.9rem 1.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.check-list li strong { font-weight: 600; color: var(--ink); }
.check-list li span { color: var(--muted); font-size: 0.9rem; }
.check-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.steps > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  transition: transform 0.25s;
}
.section--cream .steps > div { background: var(--cream); }
.steps > div:hover { transform: translateX(4px); }
.steps > div span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.steps h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}
.steps p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

/* ============ BADGES (GARANTIES) ============ */
.badges {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.badges li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.badges li svg { color: var(--accent); flex-shrink: 0; }
.badges li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.badges li span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============ BANNER CTA ============ */
.banner {
  position: relative;
  padding: 7rem 0;
  color: var(--white);
  overflow: hidden;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,44,66,0.92) 0%, rgba(28,63,88,0.85) 100%);
}
.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.banner__content .eyebrow { margin-left: auto; margin-right: auto; }
.banner__content .eyebrow::after { left: 50%; transform: translateX(-50%); }
.banner__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
.banner__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.banner__stats span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  margin-bottom: 1.25rem;
}
.footer__logo img {
  height: 90px;
  width: auto;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
}
.footer__brand p { font-size: 0.95rem; max-width: 440px; }
.footer__info h4,
.footer__nav h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.footer__info ul,
.footer__nav ul { list-style: none; }
.footer__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}
.footer__info li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__info a:hover { color: var(--accent); }
.footer__nav li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer__nav a { transition: color 0.2s; }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.footer__legal a:hover { color: var(--accent); }

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 50;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PAGES INTERNES (légales, confidentialité) ============ */
.page-inner { padding-top: 88px; }

/* Forcer la nav en mode "solide" sur les pages internes, quel que soit le scroll */
.page-inner .nav {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}
.page-inner .nav__wordmark {
  color: var(--ink);
  font-size: 1.5rem;
  text-shadow: none;
}
.page-inner .nav__links a { color: var(--ink); }
.page-inner .nav__burger span { background: var(--ink); }
.page-header {
  background: var(--cream-warm);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }
.breadcrumb span:last-child { color: var(--ink); }
.page-header__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.page-header__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.article {
  padding: 4rem 0 6rem;
  background: var(--cream);
}
.article__container { max-width: 780px; }
.article section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.article section:last-child { border-bottom: none; }
.article h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.article h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}
.article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article a:hover { color: var(--accent-hover); }
.article__list {
  list-style: none;
  margin: 0.75rem 0 1rem;
}
.article__list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.article__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.article__list li strong { color: var(--ink); }

/* ============ INSTAGRAM CAROUSEL ============ */
.ig-handle {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}
.ig-handle:hover { color: var(--accent-hover); }

.ig-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.ig-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
  min-width: 0;
}
.ig-carousel__track::-webkit-scrollbar { display: none; }

.ig-post {
  flex: 0 0 calc((100% - 3rem) / 4);
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-sm);
  background: var(--ink);
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ig-post:hover img { transform: scale(1.05); }
.ig-post__overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(15,44,66,0) 45%, rgba(15,44,66,0.92) 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-post:hover .ig-post__overlay { opacity: 1; }
.ig-post__overlay p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-post__icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s;
}
.ig-post:hover .ig-post__icon { opacity: 1; transform: translateY(0); }

.ig-carousel__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  flex-shrink: 0;
}
.ig-carousel__btn:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.ig-carousel__btn[disabled] { opacity: 0.35; pointer-events: none; }

.ig-carousel__state {
  flex: 1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-2 > *:first-child { order: 1; }
  .grid-2 > *:last-child { order: 0; }
  .grid-2--reverse > *:first-child { order: 0; }
  .grid-2--reverse > *:last-child { order: 1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid > *,
  .services-grid > *:nth-child(4),
  .services-grid > *:nth-child(5) { grid-column: auto; }
  .ig-post { flex-basis: calc((100% - 2rem) / 3); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .section { padding: 4.5rem 0; }
  .banner__bg { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .hero { align-items: flex-start; }
  .hero__content { padding-top: 5rem; padding-bottom: 6rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero__stats > * { align-items: center; text-align: center; }
  .hero__stats > *:nth-child(3) { grid-column: 1 / -1; }
  .hero__stats strong { font-size: 1.75rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .check-list--grid { grid-template-columns: 1fr; }
  .banner__stats { grid-template-columns: 1fr; }
  .ig-post { flex-basis: calc(100% - 3rem); }
  .ig-carousel { grid-template-columns: 1fr; }
  .ig-carousel__btn { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .mini-stats { align-items: start; }
  .mini-stats > div { text-align: center; }
  .mini-stats__label { font-size: 0.72rem; letter-spacing: 0.08em; white-space: nowrap; }
  #entreprise .btn--primary { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
}

/* mobile nav overlay */
.nav__links.is-open {
  display: flex;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  background: var(--cream);
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 99;
}
.nav__links.is-open a { color: var(--ink); font-size: 1.1rem; }
