/* ===== La Minute — style global (charte 2024) ===== */
:root {
  --creme: #F4F1EA;
  --papier: #FFFFFF;
  --noir: #0B0B0B;
  --encre: #3A3A36;
  --gris: #7A7A72;
  --jaune: #F9B200;
  --acide: #C3FA3C;
  --olive: #91A55F;
  --ligne: rgba(145,165,95,.35);
  --display: 'Prompt', sans-serif;
  --hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--creme);
  background-image:
    linear-gradient(var(--ligne) 1px, transparent 1px),
    linear-gradient(90deg, var(--ligne) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--noir);
  font-family: var(--display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
strong { font-weight: 700; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,234,.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--noir);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo {
  font-family: var(--display); font-weight: 700;
  font-size: 1.3rem; letter-spacing: -.01em;
  text-decoration: none; color: var(--noir);
}
nav ul { display: flex; gap: 30px; list-style: none; }
nav a {
  text-decoration: none; font-size: .92rem; font-weight: 400;
  color: var(--encre); transition: color .15s;
}
nav a:hover { color: var(--noir); }
nav a[aria-current="page"] { font-weight: 700; color: var(--noir); border-bottom: 3px solid var(--jaune); padding-bottom: 3px; }
.burger { display: none; background: none; border: 0; cursor: pointer; }
.burger svg { width: 26px; height: 26px; stroke: var(--noir); }

/* ===== Hero ===== */
.hero { padding: 92px 0 64px; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  max-width: 20ch;
}
.hl {
  background: var(--acide);
  padding: 0 .18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero p.lead { margin-top: 26px; max-width: 58ch; color: var(--encre); font-size: 1.1rem; }
.hand-note {
  font-family: var(--hand); font-size: 1.5rem; color: var(--encre);
  margin-top: 30px; transform: rotate(-2deg); display: inline-block;
}
.cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; padding: 13px 24px;
  background: var(--noir); color: var(--creme);
  border-radius: 999px; border: 2px solid var(--noir);
  transition: transform .12s;
}
.btn:hover { transform: translateY(-2px); }
.btn.clair { background: transparent; color: var(--noir); }

.eyebrow {
  display: inline-block;
  font-weight: 400; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--creme);
  background: var(--olive); padding: 6px 14px; border-radius: 999px;
}

/* ===== Sections ===== */
.section { padding: 68px 0; }
.section + .section { border-top: 2px solid var(--noir); }
.section h2 {
  font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -.01em; line-height: 1.15;
  margin: 16px 0 36px;
}

/* ===== Cartes papier ===== */
.paper {
  background: var(--papier);
  border: 1px solid rgba(11,11,11,.12);
  box-shadow: 0 2px 10px rgba(11,11,11,.07);
  border-radius: 6px;
  padding: 28px 26px;
  position: relative;
}
.tape {
  position: absolute; top: -12px; left: 50%;
  width: 92px; height: 24px;
  background: linear-gradient(100deg, rgba(249,178,0,.85), rgba(249,178,0,.95));
  transform: translateX(-50%) rotate(-3deg);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(11,11,11,.15);
}
.paper:nth-child(even) .tape { transform: translateX(-50%) rotate(2.5deg); }

/* ===== Chiffres ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px 18px; }
.stat { text-align: center; padding-top: 16px; }
.stat .n { font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1; }
.stat .l { font-weight: 400; font-size: .88rem; color: var(--encre); margin-top: 8px; }
.stat.big .n { background: var(--acide); padding: 0 .15em; }

/* ===== Formats ===== */
.formats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 34px 22px; margin-top: 10px; }
.format h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.format .plat { font-weight: 400; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 12px; }
.format p { color: var(--encre); font-size: .96rem; }

/* ===== Références ===== */
.refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px 22px; }
.ref h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.ref p { color: var(--encre); font-size: .93rem; }
.marques { margin-top: 36px; color: var(--encre); font-size: .95rem; }
.marques strong { font-weight: 400; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; color: var(--olive); display: block; margin-bottom: 8px; }

/* ===== Équipe ===== */
.equipe { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.membre h3 { font-weight: 700; font-size: 1.15rem; }
.membre .role { font-weight: 400; font-size: .85rem; color: var(--olive); text-transform: uppercase; letter-spacing: .08em; margin: 4px 0 12px; }
.membre p { color: var(--encre); font-size: .96rem; }

/* ===== Mission / vision ===== */
.deux-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pill-titre {
  display: inline-block; background: var(--noir); color: var(--creme);
  font-weight: 700; font-size: .95rem; padding: 8px 18px;
  border-radius: 999px; margin-bottom: 18px;
}
.deux-col .grande { font-weight: 700; font-size: 1.4rem; line-height: 1.3; margin-bottom: 14px; }
.deux-col p { color: var(--encre); font-size: .97rem; }

/* ===== Prose ===== */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 46px; }
.prose p + p { margin-top: 16px; }
.prose a { color: var(--noir); font-weight: 400; text-decoration-color: var(--jaune); text-decoration-thickness: 2px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.contact-grid h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.contact-grid p { color: var(--encre); font-size: .95rem; }
.mail {
  display: inline-block; margin-top: 14px;
  font-weight: 700; font-size: 1.15rem; color: var(--noir);
  text-decoration: none;
  background: var(--acide); padding: 4px 10px;
}
.tel { display: block; margin-top: 10px; font-weight: 400; color: var(--encre); text-decoration: none; }

/* ===== Footer ===== */
footer { border-top: 2px solid var(--noir); padding: 38px 0; margin-top: 60px; background: var(--creme); }
.footer-in { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-in p, .footer-in a { color: var(--encre); font-size: .88rem; }
.footer-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--noir); text-decoration: underline; text-decoration-color: var(--jaune); text-decoration-thickness: 2px; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  nav ul {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--creme);
    border-bottom: 2px solid var(--noir); padding: 12px 24px 20px;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 10px 0; }
  .burger { display: block; }
  .hero { padding: 60px 0 44px; }
  .equipe, .deux-col, .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}

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