/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1e3a;
  --navy-light: #132347;
  --red: #b22222;
  --red-dark: #8b1a1a;
  --red-light: #cc2929;
  --blue-accent: #1f7fc0;
  --white: #ffffff;
  --gray-stripe: #9aabb8;
  --stars-color: #dbe3ec;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Arial', 'Helvetica', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: #f4f4f4;
  color: #1a1a2e;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  border-bottom: 2px solid var(--red);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.navbar-brand img {
  width: auto;
  height: 44px;
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav a {
  color: var(--white);
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.navbar-nav a:hover { color: var(--blue-accent); }
.navbar-nav a.active { font-weight: bold; color: var(--white); }

.navbar-nav .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.navbar-nav .search-btn:hover { color: var(--blue-accent); }

.navbar-stars {
  display: flex;
  justify-content: flex-end;
  padding: 5px 40px 8px;
  gap: 8px;
}

.navbar-stars span {
  color: var(--stars-color);
  font-size: 1.1rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 720px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 36px 42px 132px;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 104px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0 42%, rgba(255,255,255,0.96) 42% 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 28px;
  height: 44px;
  background: var(--blue-accent);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-stripes::before {
  content: '';
  position: absolute;
  left: -14%;
  bottom: 50px;
  width: 60%;
  height: 270px;
  background: var(--red-light);
  clip-path: polygon(0 24%, 74% 70%, 100% 100%, 0 100%);
}

.hero-stripes::after {
  content: '';
  position: absolute;
  display: none;
}

.hero-flag {
  position: absolute;
  right: -3%;
  bottom: 70px;
  width: 74%;
  height: 360px;
  background: var(--red-light);
  clip-path: polygon(16% 0, 100% 0, 100% 70%, 61% 100%, 0 100%, 0 24%);
  z-index: 1;
}

.hero-flag::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -19deg,
      transparent 0 68px,
      var(--white) 68px 118px,
      transparent 118px 214px
    );
  clip-path: polygon(16% 0, 100% 0, 100% 70%, 61% 100%, 0 100%, 0 24%);
}

.hero-left-band {
  position: absolute;
  left: 0;
  bottom: 56px;
  width: 40%;
  height: 170px;
  background: linear-gradient(13deg, var(--white) 0 58%, transparent 58% 100%);
  opacity: 1;
}

.hero-right-stars {
  position: absolute;
  top: 20px;
  right: 38px;
  z-index: 2;
  width: 288px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px 10px;
}

.hero-right-stars span {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1180px;
  width: 100%;
  margin-top: 6px;
}

.hero-logo {
  flex-shrink: 0;
  padding: 8px 0 0 6px;
}

.hero-logo img {
  width: 360px;
  max-width: 32vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.14));
}

.hero-text {
  flex: 1;
  padding-top: 0;
  max-width: 470px;
}

.hero-text .rejoignez {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(3.8rem, 7vw, 5.9rem);
  color: var(--red-light);
  letter-spacing: 2px;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.42);
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-text .asap-big {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(5.4rem, 11vw, 8.6rem);
  color: var(--white);
  letter-spacing: 4px;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 3px 3px 10px rgba(0,0,0,0.58);
  margin-top: 10px;
}

.hero-text .envoyez-label {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.2rem;
  color: var(--blue-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 12px;
  max-width: 280px;
}

.hero-text .phone {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.1rem;
  color: var(--blue-accent);
  letter-spacing: 1px;
  line-height: 1.08;
}

.hero-footer-mark {
  position: absolute;
  right: 34px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 10px 22px;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(13, 30, 58, 0.08);
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-footer-title { color: var(--navy); }
.hero-footer-separator { color: #111; }
.hero-footer-site { color: var(--red-light); }

.hero-scroll {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--navy);
  font-size: 1.8rem;
  opacity: 0.45;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--navy);
  padding: 60px 20px 40px;
}

.communiques {
  background: #f0f2f5;
  padding-bottom: 70px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.comm-card {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.comm-card-header {
  position: relative;
  height: 200px;
  background: var(--navy-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comm-card-header .card-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0px,
    var(--red) 30px,
    #7a8a9a 30px,
    #7a8a9a 55px,
    var(--red-dark) 55px,
    var(--red-dark) 65px,
    #7a8a9a 65px,
    #7a8a9a 90px
  );
  opacity: 0.5;
}

.comm-card-header .card-logo {
  position: relative;
  z-index: 2;
}

.comm-card-header .card-logo img {
  width: auto;
  height: 90px;
  display: block;
}

.card-stars {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  font-size: 0.7rem;
  color: #ffffff88;
  letter-spacing: 3px;
}

.comm-card-body {
  padding: 20px 22px 24px;
  background: white;
  flex: 1;
  border-top: 4px solid var(--red);
}

.comm-card-body h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}

.comm-card-date {
  font-size: 0.74rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  text-align: center;
}

.comm-card-body p {
  font-size: 0.82rem;
  color: #333;
  line-height: 1.6;
}

.comm-card-loading .comm-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comm-card-body p strong {
  font-weight: bold;
}

.comm-card-body .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comm-card-body .read-more:hover { text-decoration: underline; }

.read-more-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.communique-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.communique-modal.is-open {
  display: block;
}

.communique-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 26, 0.72);
}

.communique-modal-panel {
  position: relative;
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  background: #ffffff;
  color: #24314c;
  border-top: 8px solid var(--red);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  padding: 34px 34px 28px;
}

.communique-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  background: #eef2f7;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.communique-modal-date {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.communique-modal-panel h3 {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 2rem;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  padding-right: 48px;
}

.communique-modal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #2a3448;
  margin-bottom: 14px;
}

.poll-section {
  background: #e8eaed;
  padding-bottom: 70px;
}

.poll-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.poll-image {
  background: var(--navy);
  border-radius: 6px;
  overflow: hidden;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.poll-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a2e5a 0%, #0a1628 100%);
}

.poll-image-inner {
  position: relative;
  z-index: 2;
}

.poll-reagissez {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.poll-reagissez .star-red {
  color: var(--red-light);
  font-size: 2rem;
}

.poll-subtitle {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.8rem;
  color: #7fa8cc;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.poll-question {
  margin-top: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 24px 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.poll-question p {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--white);
  font-size: 0.95rem;
}

.poll-option:hover { background: rgba(255,255,255,0.15); }
.poll-option input[type="radio"] { accent-color: var(--blue-accent); }

.poll-submit {
  margin-top: 18px;
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}

.poll-submit:hover { background: var(--red-dark); }

.mandats-preview {
  background: var(--navy);
  padding: 60px 40px 70px;
  text-align: center;
}

.mandats-preview .section-title {
  color: var(--white);
  padding-top: 0;
}

.mandats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.mandat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  padding: 20px;
  text-align: left;
  border-radius: 3px;
}

.mandat-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.mandat-item p {
  color: #99aacc;
  font-size: 0.85rem;
  line-height: 1.5;
}

.mandat-item .tag {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--red);
  color: white;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

footer {
  background: #070e1a;
  color: #8899aa;
  padding: 40px 40px 20px;
  border-top: 3px solid var(--red);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  line-height: 2;
  color: #8899aa;
  display: block;
}

.footer-col a:hover { color: var(--blue-accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #1a2a3a;
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #556677;
}

.page-banner {
  background: var(--navy);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  right: -200px;
  bottom: -100px;
  width: 700px;
  height: 700px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0px, var(--red) 40px,
    #7a8a9a 40px, #7a8a9a 70px,
    var(--red-dark) 70px, var(--red-dark) 85px,
    #7a8a9a 85px, #7a8a9a 115px
  );
  opacity: 0.35;
}

.page-banner h1 {
  position: relative;
  z-index: 2;
  font-family: 'Impact', 'Arial Black', sans-serif;
  color: var(--white);
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.page-banner p {
  position: relative;
  z-index: 2;
  color: var(--blue-accent);
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.content-section,
.archives-list {
  max-width: 1080px;
  margin: 60px auto 70px;
  padding: 0 40px;
}

.content-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 30px 0 12px;
  border-left: 5px solid var(--red);
  padding-left: 14px;
}

.content-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}

.content-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.archive-item {
  padding: 28px 0;
  border-top: 1px solid rgba(13, 30, 58, 0.12);
}

.archive-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 2px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.archive-date-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #687891;
}

.archive-date strong {
  display: block;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--red);
}

.archive-content h3 {
  font-family: var(--font-main);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}

.archive-content p {
  font-size: 1rem;
  color: #2e3a4f;
  line-height: 1.85;
  max-width: none;
}

.archive-content a {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: bold;
  margin-top: 6px;
  display: inline-block;
}

.archives-ledger-intro {
  background: #ffffff;
  border-top: 4px solid var(--navy);
  border-left: 6px solid var(--red);
  padding: 24px 28px;
  margin-bottom: 26px;
  box-shadow: 0 12px 28px rgba(13, 30, 58, 0.08);
}

.archives-ledger-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: bold;
  margin-bottom: 10px;
}

.archives-ledger-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #29354a;
}

#archives-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.archives-communiques-page {
  max-width: 1240px;
}

.archives-intro {
  background: #ffffff;
  border-left: 6px solid var(--red);
  box-shadow: 0 12px 28px rgba(13, 30, 58, 0.08);
  padding: 24px 28px;
  margin-bottom: 30px;
}

.archives-intro p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #23324f;
  margin-bottom: 10px;
}

.archives-intro p:last-child {
  margin-bottom: 0;
}

.archives-communiques-grid {
  display: grid;
  gap: 28px;
}

.archive-communique {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 26px;
  background: #ffffff;
  border: 1px solid rgba(13, 30, 58, 0.08);
  box-shadow: 0 18px 40px rgba(13, 30, 58, 0.1);
  padding: 22px;
}

.archive-visual {
  background: linear-gradient(180deg, #15284f 0%, #0d1e3a 100%);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.archive-visual img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.archive-copy {
  min-width: 0;
}

.archive-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.archive-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Arial Black', 'Arial', sans-serif;
  letter-spacing: 1px;
}

.archive-file {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: #eef2f7;
  color: #33415c;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-copy h2 {
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.archive-open-button {
  margin-top: 18px;
  border: 1px solid rgba(13, 30, 58, 0.12);
  border-left: 4px solid var(--red);
  background: #fbfcfe;
  color: var(--red);
  padding: 14px 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.archive-open-button:hover {
  background: #f3f6fa;
}

.rejoindre-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 40px;
}

.rejoindre-section .phones {
  background: var(--navy);
  border-radius: 6px;
  padding: 36px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.rejoindre-section .phones p {
  color: var(--blue-accent);
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  line-height: 2;
}

.rejoindre-section .phones .label {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.form-contact {
  background: white;
  padding: 36px 40px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.form-contact h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: bold;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.93rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--red-dark); }

.mandats-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
}

.mandat-card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
}

.mandat-card-side {
  background: var(--navy);
  width: 8px;
  flex-shrink: 0;
}

.mandat-card-side.red { background: var(--red); }
.mandat-card-side.blue { background: var(--blue-accent); }

.mandat-card-body {
  padding: 22px 28px;
  flex: 1;
}

.mandat-card-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--navy);
  color: white;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mandat-card-body .tag.red { background: var(--red); }
.mandat-card-body .tag.blue { background: var(--blue-accent); }

.mandat-card-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.mandat-card-body p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .mandats-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .archives-list { padding: 0 20px; }
  #archives-items { grid-template-columns: 1fr; gap: 18px; }
  .archive-item { padding: 22px 0; }
  .archive-content h3 { font-size: 1.3rem; }
  .hero { padding: 34px 20px 112px; min-height: 650px; }
  .hero-content { flex-direction: column; gap: 22px; }
  .hero-logo { padding-left: 0; }
  .hero-logo img { width: 260px; max-width: 100%; }
  .hero-text { max-width: 100%; }
  .hero-text .rejoignez { font-size: 3rem; }
  .hero-text .asap-big { font-size: 4.7rem; }
  .hero-left-band { width: 62%; bottom: 54px; }
  .hero-stripes::before { width: 78%; height: 200px; bottom: 54px; }
  .hero-flag { width: 100%; height: 240px; bottom: 78px; right: -18%; }
  .hero-right-stars {
    top: 16px;
    right: 16px;
    width: 170px;
    gap: 8px;
  }
  .hero-right-stars span { font-size: 0.95rem; }
  .hero-footer-mark {
    right: 16px;
    bottom: 12px;
    gap: 10px;
    padding: 10px 14px 8px 14px;
    font-size: 1.6rem;
  }
  .navbar-top { padding: 10px 20px; }
  .navbar-stars { padding: 5px 20px 8px; }
  .navbar-nav a { padding: 4px 8px; font-size: 0.85rem; }
  .poll-reagissez { font-size: 2.5rem; }
  .poll-subtitle { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 590px;
    padding: 28px 16px 94px;
  }

  .hero-content {
    gap: 14px;
    margin-top: 34px;
  }

  .hero-logo img {
    width: 220px;
  }

  .hero-left-band {
    width: 86%;
    height: 122px;
    bottom: 46px;
  }

  .hero-stripes::before {
    width: 92%;
    height: 136px;
    bottom: 44px;
  }

  .hero-flag {
    width: 100%;
    height: 170px;
    right: -26%;
    bottom: 58px;
  }

  .hero-right-stars {
    width: 118px;
    top: 14px;
    right: 12px;
    gap: 5px;
  }

  .hero-text .rejoignez {
    font-size: 2.35rem;
    letter-spacing: 1px;
  }

  .hero-text .asap-big {
    font-size: 4.25rem;
    letter-spacing: 2px;
  }

  .hero-text .envoyez-label {
    font-size: 0.92rem;
  }

  .hero-text .phone {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-footer-mark {
    right: 10px;
    bottom: 8px;
    gap: 7px;
    padding: 8px 10px 7px 10px;
    font-size: 1.05rem;
  }

  .navbar-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .navbar-nav {
    gap: 2px;
    flex-wrap: wrap;
  }

  .navbar-nav a { padding: 4px 6px; font-size: 0.78rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .archive-item { flex-direction: column; gap: 8px; }
  .archive-date strong { font-size: 0.92rem; }
  .archives-ledger-intro {
    padding: 20px 16px;
  }
  .communique-modal-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 28px 18px 20px;
  }

  .communique-modal-panel h3 {
    font-size: 1.4rem;
  }
}
