@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@700;800&display=swap');

:root {
  --bg: #f5f2eb;
  --surface: #ffffff;
  --surface-2: #ece7dc;
  --text: #15221d;
  --muted: #59655f;
  --accent: #b63d2f;
  --accent-dark: #8d2d23;
  --green: #163d31;
  --green-2: #0f2d24;
  --line: #d8d1c3;
  --shadow: 0 20px 60px rgba(21, 34, 29, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: white;
  padding: .75rem 1rem;
  border-radius: 8px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { max-width: 900px; }

.notice {
  padding: .7rem 1rem;
  background: var(--accent);
  color: white;
  text-align: center;
  font-size: .92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 235, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 209, 195, .7);
}

.nav-wrap {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  line-height: 1.1;
}

.brand strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.brand small {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .75rem;
}

.site-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 14px;
  background: white;
  padding: 2px;
  box-shadow: 0 6px 18px rgba(21,34,29,.12);
}

.site-logo-footer {
  background: white;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
}

.main-nav a:hover { color: var(--accent); }

.nav-cta {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: white !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: white;
  padding: .7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}

.hero {
  padding: 92px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(182,61,47,.14), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(22,61,49,.12), transparent 32%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 64px;
  align-items: center;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1, h2 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
}

.hero-long-statement {
  max-width: 900px;
  font-size: clamp(1.3rem, 2.35vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -.018em;
}

h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.18rem; }

.lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--muted);
}

.eyebrow {
  margin-bottom: .75rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(21,34,29,.15);
}

.button-primary {
  background: var(--accent);
  color: white;
}
.button-primary:hover { background: var(--accent-dark); }

.button-secondary {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}

.button-full { width: 100%; }

.microcopy {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .85rem;
}

.hero-card {
  padding: 2rem;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-card h2 {
  margin-top: 1rem;
  font-size: 2rem;
}

.status-pill {
  display: inline-block;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.check-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: .8rem 0 .8rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0c9a9;
  font-weight: 800;
}

.section { padding: 90px 0; }
.section-alt { background: var(--surface-2); }
.section-dark {
  background: var(--green-2);
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading p { color: var(--muted); }
.section-dark .section-heading p { color: rgba(255,255,255,.7); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.principles article {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principles span,
.card-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent);
  font-weight: 800;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 230px;
  padding: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feature-card p { color: var(--muted); }

.timeline {
  position: relative;
  margin-top: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 128px;
  top: .5rem;
  bottom: .5rem;
  width: 2px;
  background: var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 42px;
  padding: 0 0 2rem;
}

.timeline time {
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
}

.timeline article > div {
  position: relative;
  padding: 0 0 0 1rem;
}

.timeline article > div::before {
  content: "";
  position: absolute;
  left: -27px;
  top: .25rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 4px solid var(--bg);
  border-radius: 999px;
}

.note {
  padding: 1rem 1.2rem;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.document-card {
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}

.document-card > span:first-child {
  display: inline-block;
  margin-bottom: 2rem;
  padding: .35rem .5rem;
  border-radius: 6px;
  background: var(--accent);
  font-size: .72rem;
  font-weight: 800;
}

.document-card p { color: rgba(255,255,255,.7); }

.document-status {
  display: inline-block;
  margin-top: 1rem;
  color: #f0c9a9;
  font-weight: 700;
  font-size: .9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.privacy-box {
  margin-top: 2rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.privacy-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-form {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: .92rem;
}

.support-form label span {
  color: var(--muted);
  font-weight: 500;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, textarea {
  width: 100%;
  margin-top: .45rem;
  padding: .85rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

input:focus, textarea:focus {
  outline: 3px solid rgba(182,61,47,.15);
  border-color: var(--accent);
}

.checkbox {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: .65rem;
  align-items: start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: .15rem 0 0;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.hidden { display: none; }

.statement {
  padding: 2rem;
  border-left: 6px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.site-footer {
  padding: 56px 0;
  background: #0b2019;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 4rem;
}

.site-footer p {
  max-width: 760px;
  color: rgba(255,255,255,.7);
}

.site-footer a { color: white; }
.brand-footer small { color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }

  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: .8rem;
    border-radius: 8px;
  }

  .hero-grid,
  .section-heading,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 36px; }
  .principles,
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .document-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding: 64px 0; }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .notice { font-size: .8rem; }
  .principles,
  .card-grid,
  .document-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .timeline::before { left: 7px; }
  .timeline article {
    grid-template-columns: 1fr;
    gap: .4rem;
    padding-left: 28px;
  }
  .timeline article > div { padding-left: 0; }
  .timeline article > div::before {
    left: -27px;
    top: -1.55rem;
  }

  .support-form { padding: 1.25rem; }
}


/* Logo principal, message aux membres et documents */
.hero-logo { display:block; width:clamp(190px,24vw,310px); height:auto; margin:0 0 1.6rem; object-fit:contain; filter:drop-shadow(0 14px 25px rgba(21,34,29,.14)); }
.button-text { min-height:50px; padding-inline:.5rem; color:var(--green); background:transparent; }
.button-text:hover { box-shadow:none; color:var(--accent); }
.nav-current { color:var(--accent); }
.message-teaser { background:#fff; }
.teaser-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:center; }
.teaser-quote { padding:2rem; border-radius:var(--radius); background:var(--green); color:white; box-shadow:var(--shadow); }
.teaser-quote p { margin:0 0 1rem; font-family:Manrope,Inter,sans-serif; font-size:clamp(1.8rem,4vw,3rem); font-weight:800; line-height:1.15; }
.teaser-quote span { color:rgba(255,255,255,.7); }
.document-grid-two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.document-card-live { display:flex; flex-direction:column; min-height:320px; }
.document-card-live p { flex:1; }
.document-link { display:inline-flex; margin-top:1rem; color:#f0c9a9; font-weight:800; text-decoration:none; }
.document-link:hover { color:white; }
.article-hero { padding:72px 0 64px; background:radial-gradient(circle at 15% 20%,rgba(182,61,47,.13),transparent 28%),radial-gradient(circle at 85% 75%,rgba(22,61,49,.13),transparent 32%); }
.article-hero-inner { text-align:center; }
.article-logo { display:block; width:clamp(230px,34vw,420px); height:auto; margin:0 auto 2rem; filter:drop-shadow(0 18px 30px rgba(21,34,29,.15)); }
.article-hero .lead { margin-inline:auto; }
.article-hero .button-row { justify-content:center; }
.article-section { background:#fff; }
.article-content { max-width:850px; font-size:1.04rem; }
.article-content > p { margin:0 0 1.35rem; }
.article-content h2 { margin-top:4rem; margin-bottom:1.25rem; padding-top:1rem; border-top:1px solid var(--line); font-size:clamp(1.9rem,4vw,2.8rem); }
.article-content h3 { margin-top:2.5rem; margin-bottom:1rem; color:var(--green); font-size:1.45rem; }
.article-list { margin:0 0 1.8rem; padding-left:1.4rem; }
.article-list li { margin-bottom:.65rem; }
.numbered-item { margin:.4rem 0 1rem; padding:1rem 1.1rem; background:var(--surface-2); border-radius:12px; font-weight:600; }
.article-intro-box,.article-download-box { margin-bottom:3rem; padding:1.5rem; border-radius:var(--radius); background:var(--surface-2); border-left:5px solid var(--accent); }
.article-intro-box p { margin-bottom:0; }
.article-download-box { margin-top:4rem; margin-bottom:0; background:var(--green); color:white; border-left:0; }
.article-download-box h2 { margin-top:0; padding-top:0; border-top:0; }
.article-download-box .button-secondary { border-color:white; color:white; }
@media (max-width:900px) { .teaser-grid{grid-template-columns:1fr;} .site-logo{width:74px;height:74px;} .nav-wrap{min-height:96px;} }
@media (max-width:620px) { .hero-logo{width:210px;margin-inline:auto;} .site-logo{width:64px;height:64px;} .brand strong{font-size:.92rem;} .brand small{font-size:.68rem;} .document-grid-two{grid-template-columns:1fr;} .article-logo{width:250px;} .article-content{font-size:1rem;} }


.article-hashtag {
  margin-top: 2rem !important;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.article-signoff {
  margin-top: 2.2rem !important;
  margin-bottom: .3rem !important;
}

.article-signature {
  margin-bottom: .3rem !important;
  font-size: 1.15rem;
}

.article-emoji {
  font-size: 1.45rem;
  letter-spacing: .12em;
}


.admin-signatures-box {
  border-left-color: var(--green);
}

.admin-signatures-box strong {
  color: var(--green);
}

/* Bannière principale du site */
.site-banner-shell {
  background: #fff;
  border-bottom: 1px solid rgba(216, 209, 195, .7);
}

.site-banner-link {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
  text-decoration: none;
}

.site-banner {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.nav-wrap-centered {
  min-height: 72px;
  justify-content: center;
  position: relative;
}

.nav-wrap-centered .main-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.hero-statement {
  margin: 1.6rem 0 1.8rem;
  padding: 1.45rem 1.55rem;
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 36px rgba(21, 34, 29, .08);
}

.hero-statement p {
  margin: 0 0 1rem;
}

.hero-statement p:last-child {
  margin-bottom: 0;
}

.hero-statement a {
  color: var(--accent-dark);
  text-underline-offset: .16em;
}

.hero-signoff {
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 800;
}

.view-counter {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 1rem 0 0;
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--muted);
  font-size: .9rem;
}

.view-counter strong {
  color: var(--green);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .nav-wrap-centered {
    min-height: 70px;
    justify-content: flex-end;
  }

  .site-banner {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .site-banner-shell {
    padding: 0;
  }

  .hero-statement {
    padding: 1.15rem;
  }
}


/* Section explicative AGE et compteur de signatures */
.age-explainer {
  background: #fff;
  padding-top: 76px;
}

.section-heading-wide {
  grid-template-columns: 1fr .95fr;
}

.age-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 2rem;
  align-items: start;
}

.age-main-card h3,
.targeted-admins h3 {
  color: var(--green);
}

.compact-buttons {
  margin-top: 1.4rem;
}

.targeted-admins {
  padding: 2rem;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.targeted-admins p {
  color: rgba(255,255,255,.78);
}

.targeted-admins .status-pill {
  background: rgba(255,255,255,.12);
  color: #f0c9a9;
}

.admin-list {
  display: grid;
  gap: .55rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.admin-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  align-items: baseline;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.admin-list span {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  text-align: right;
}

.small-note {
  margin-bottom: 0;
  font-size: .86rem;
}

.signature-counter-card {
  display: grid;
  gap: .2rem;
  margin: 1.4rem 0 1.2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.signature-counter-label {
  color: #f0c9a9;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signature-counter-card strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1;
}

.signature-counter-card small {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.secondary-document-link {
  margin-top: .35rem;
}

@media (max-width: 900px) {
  .age-layout,
  .section-heading-wide {
    grid-template-columns: 1fr;
  }

  .admin-list li {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .admin-list span {
    text-align: left;
  }
}


.legal-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.legal-explainer-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21,34,29,.06);
}

.legal-explainer-grid span {
  display: inline-flex;
  margin-bottom: .7rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(182,61,47,.09);
  color: var(--accent-dark);
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.legal-explainer-grid h3 {
  color: var(--green);
}

.legal-explainer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.simon-separate {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}

.simon-separate strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
}

.simon-separate p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
  .legal-explainer-grid {
    grid-template-columns: 1fr;
  }
}

/* Version simplifiée — page d'accueil */
.simple-site .simple-banner-shell {
  background: #fff;
  border-bottom: 0;
}

.simple-site .simple-banner-link {
  width: 100%;
  max-width: none;
}

.simple-site .simple-banner {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.simple-notice {
  background: #0f2d24;
}

.simple-header {
  position: sticky;
  top: 0;
}

.simple-nav-wrap {
  min-height: 64px;
}

.simple-intro {
  padding: 56px 0 34px;
  background: #fff;
}

.simple-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 2rem;
  align-items: stretch;
}

.simple-intro h1 {
  max-width: 920px;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
}

.simple-lead {
  max-width: 980px;
  color: #33413b;
}

.simple-actions {
  margin-top: 1.5rem;
}

.simple-status-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.simple-status-card .status-pill {
  align-self: flex-start;
  background: rgba(255,255,255,.12);
  color: #f0c9a9;
}

.simple-status-card strong {
  display: block;
  margin: 1rem 0 .4rem;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: .9;
}

.simple-status-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.simple-summary-section {
  padding-top: 52px;
  background: var(--bg);
}

.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.simple-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(21,34,29,.07);
}

.simple-card h2 {
  margin-bottom: .85rem;
  color: var(--green);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.simple-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: .8rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(182,61,47,.09);
  color: var(--accent-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.simple-note-box {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-left: 5px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: #fff;
  color: var(--muted);
}

.simple-note-box strong {
  color: var(--text);
}

.simple-documents {
  padding-top: 68px;
}

.simple-section-heading {
  align-items: end;
}

.simple-signature-section {
  background: #fff;
}

.simple-signature-counter {
  max-width: 360px;
}

.simple-footer .site-logo-footer {
  width: 72px;
  height: 72px;
}

@media (max-width: 900px) {
  .simple-intro-grid,
  .simple-card-grid,
  .simple-document-grid,
  .simple-section-heading {
    grid-template-columns: 1fr;
  }

  .simple-intro {
    padding-top: 42px;
  }

  .simple-status-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .simple-intro h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }

  .simple-card {
    padding: 1.25rem;
  }

  .simple-nav-wrap {
    justify-content: flex-end;
  }
}

/* Page refaite pour imiter le style public actuel de macqunoff.com */
.live-style-site {
  --live-bg: #f7f4ee;
  --live-text: #15221d;
  --live-muted: #58645e;
  --live-blue: #1f526f;
  --live-blue-dark: #153d55;
  --live-accent: #b63d2f;
  --live-line: #d9d1c3;
  background: var(--live-bg);
  color: var(--live-text);
}

.live-style-site .skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.live-banner {
  background: #fff;
}

.live-banner a,
.live-banner img {
  display: block;
}

.live-banner img {
  width: 100%;
  height: auto;
}

.live-container {
  width: min(calc(100% - 36px), 980px);
  margin-inline: auto;
}

.live-narrow {
  max-width: 900px;
}

.live-hero,
.live-section {
  padding: 58px 0;
}

.live-hero {
  padding-top: 42px;
  background: #fff;
  text-align: left;
}

.live-pill {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: rgba(31, 82, 111, .1);
  color: var(--live-blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-style-site h1,
.live-style-site h2,
.live-style-site h3 {
  color: var(--live-blue-dark);
}

.live-style-site h1 {
  max-width: 980px;
  margin: 0 0 .6rem;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(2.55rem, 8vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.live-style-site h2 {
  margin: 0 0 1rem;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.07;
  letter-spacing: -.035em;
}

.live-style-site h3 {
  margin: 0 0 .45rem;
  font-size: 1.15rem;
}

.live-date {
  margin: 0 0 1.35rem;
  color: var(--live-muted);
  font-weight: 700;
}

.live-alert,
.live-note {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 5px solid var(--live-blue);
  border-radius: 0 14px 14px 0;
  background: #f2f6f8;
  color: #32443c;
}

.live-lead,
.live-section-intro,
.live-summary-block p,
.live-document-card p,
.live-footer p,
.live-form-note {
  color: var(--live-muted);
}

.live-lead {
  margin: 1.5rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.7rem;
}

.live-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.05rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.live-button-primary {
  background: var(--live-blue);
  color: #fff;
}

.live-button-primary:hover {
  background: var(--live-blue-dark);
}

.live-button-secondary {
  background: #fff;
  border-color: var(--live-blue);
  color: var(--live-blue-dark);
}

.live-button-secondary:hover {
  background: #edf4f7;
}

.live-button-full {
  width: 100%;
}

.live-counter {
  margin-top: 1.45rem;
  color: var(--live-muted);
  font-size: .95rem;
}

.live-counter strong {
  color: var(--live-blue-dark);
}

.live-section:nth-of-type(even) {
  background: var(--live-bg);
}

.live-summary-block,
.live-document-card,
.live-form,
.live-signature-count {
  border: 1px solid var(--live-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(21, 34, 29, .06);
}

.live-summary-block {
  margin: 1rem 0;
  padding: 1.25rem 1.35rem;
}

.live-summary-block p {
  margin: 0;
}

.live-note {
  border-left-color: var(--live-accent);
  background: #fff;
}

.live-doc-section {
  background: #eef3f5;
}

.live-document-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1.35rem;
}

.live-doc-label {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(182, 61, 47, .1);
  color: var(--live-accent);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.live-signature-count {
  display: grid;
  gap: .2rem;
  margin: 1.2rem 0;
  padding: 1.15rem 1.25rem;
  max-width: 320px;
  border-left: 5px solid var(--live-blue);
}

.live-signature-count span {
  color: var(--live-blue-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

.live-signature-count strong {
  font-family: Manrope, Inter, system-ui, sans-serif;
  color: var(--live-blue-dark);
  font-size: 3rem;
  line-height: .95;
}

.live-signature-count small {
  color: var(--live-muted);
}

.live-form {
  padding: 1.35rem;
}

.live-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 800;
}

.live-form label span {
  color: var(--live-muted);
  font-weight: 500;
}

.live-form input[type="text"],
.live-form input[type="email"],
.live-form input[type="tel"] {
  width: 100%;
  margin-top: .45rem;
  padding: .9rem .95rem;
  border: 1px solid var(--live-line);
  border-radius: 10px;
  font: inherit;
}

.live-form input:focus {
  outline: 3px solid rgba(31, 82, 111, .16);
  border-color: var(--live-blue);
}

.live-checkbox {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: .7rem;
  align-items: start;
  font-weight: 700 !important;
}

.live-checkbox input {
  width: 18px;
  height: 18px;
  margin: .2rem 0 0;
}

.live-form-note {
  margin-bottom: 0;
  text-align: center;
  font-size: .86rem;
}

.live-newsletter {
  background: #fff;
}

.live-newsletter-form {
  margin-top: 1.2rem;
}

.live-footer {
  padding: 36px 0;
  background: #0b202c;
  color: #fff;
  text-align: left;
}

.live-footer p {
  margin: .25rem 0;
  color: rgba(255,255,255,.74);
}

.live-footer a {
  color: #fff;
}

@media (max-width: 760px) {
  .live-hero,
  .live-section {
    padding: 42px 0;
  }

  .live-document-card {
    grid-template-columns: 1fr;
  }

  .live-actions,
  .live-button {
    width: 100%;
  }
}
