﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #0c1f3f;
      --navy-mid:  #152d56;
      --navy-lt:   #1e3f72;
      --blue:      #1a56a0;
      --blue-lt:   #3a7bd5;
      --gold:      #c9a84c;
      --gold-lt:   #e8c96a;
      --gold-pale: rgba(201,168,76,.12);
      --white:     #ffffff;
      --off-white: #f5f6f8;
      --text:      #1a1e28;
      --muted:     #5c6478;
      --border:    rgba(255,255,255,.12);
      --shadow:    0 8px 32px rgba(12,31,63,.25);
      --rf-blue:   #003189;
      --rf-white:  #ffffff;
      --rf-red:    #e1000f;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', system-ui, sans-serif;
      background: var(--off-white);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

    /* ── TRICOLORE BAND ── */
    .tricolore {
      height: 5px;
      background: linear-gradient(to right,
        var(--rf-blue) 0%, var(--rf-blue) 33.33%,
        var(--rf-white) 33.33%, var(--rf-white) 66.66%,
        var(--rf-red) 66.66%, var(--rf-red) 100%
      );
    }

    /* ── TOP HEADER ── */
    .top-header {
      background: var(--navy);
      padding: .6rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .top-header-logo {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .marianne-svg { flex-shrink: 0; }

    .top-header-text {
      display: flex;
      flex-direction: column;
    }

    .top-header-text .liberte {
      font-size: .6rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    .top-header-text .commune-name {
      font-size: .82rem;
      color: rgba(255,255,255,.85);
      font-weight: 500;
      letter-spacing: .03em;
    }

    .top-header-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .top-header-right a {
      font-size: .72rem;
      color: rgba(255,255,255,.5);
      text-decoration: none;
      letter-spacing: .04em;
      text-transform: uppercase;
      font-weight: 500;
      transition: color .2s;
    }

    .top-header-right a:hover { color: var(--gold); }

    .top-admin-link {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      border-left: 1px solid rgba(255,255,255,.2);
      padding-left: 1.25rem;
      margin-left: .25rem;
      opacity: .6;
      transition: opacity .2s, color .2s;
    }
    .top-admin-link:hover { opacity: 1; color: var(--gold) !important; }

    /* ── BLASON ── */
    .blason-img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      flex-shrink: 0;
    }

    /* ── NAV ── */
    nav {
      background: var(--navy-mid);
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: visible;
    }

    nav > a,
    .nav-dropdown > a {
      display: flex;
      align-items: center;
      gap: .4rem;
      padding: 1rem 1.25rem;
      font-size: .82rem;
      font-weight: 500;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      letter-spacing: .02em;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color .2s, border-color .2s;
      cursor: pointer;
    }

    nav > a:hover,
    .nav-dropdown:hover > a { color: var(--white); border-color: var(--gold); }
    nav > a.active { color: var(--white); border-color: var(--gold-lt); }
    nav > a svg,
    .nav-dropdown > a svg { opacity: .7; }

    /* ── NAV DROPDOWN ── */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown > a::after {
      content: '';
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      opacity: .6;
      margin-left: 4px;
      flex-shrink: 0;
    }

    .nav-submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--navy-mid);
      border: 1px solid rgba(255,255,255,.12);
      border-top: none;
      border-radius: 0 0 8px 8px;
      min-width: 220px;
      z-index: 200;
      box-shadow: 0 8px 24px rgba(12,31,63,.4);
    }

    .nav-submenu a {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .85rem 1.25rem;
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .15s, color .15s;
      white-space: nowrap;
    }

    .nav-submenu a:last-child { border-bottom: none; }

    .nav-submenu a:hover {
      background: rgba(255,255,255,.07);
      color: var(--white);
      border-color: transparent;
    }

    .nav-submenu a svg { opacity: .65; flex-shrink: 0; }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu { display: block; }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 390px;
      overflow: hidden;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      transition: transform 8s ease-out;
    }

    .hero:hover .hero-img { transform: scale(1.03); }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(12,31,63,.82) 0%,
        rgba(12,31,63,.55) 45%,
        rgba(12,31,63,.2) 100%
      );
    }

    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 3rem 3.5rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(201,168,76,.15);
      border: 1px solid rgba(201,168,76,.35);
      border-radius: 999px;
      padding: .3rem .9rem;
      font-size: .68rem;
      font-weight: 600;
      color: var(--gold-lt);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      width: fit-content;
      animation: fadeUp .7s ease both;
    }

    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold-lt);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:.3; transform:scale(.6); }
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -.01em;
      margin-bottom: .75rem;
      animation: fadeUp .7s .1s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,.72);
      font-weight: 300;
      letter-spacing: .04em;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-tags {
      display: flex;
      gap: .6rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    .hero-tag {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 6px;
      padding: .35rem .8rem;
      font-size: .72rem;
      font-weight: 500;
      color: rgba(255,255,255,.85);
      letter-spacing: .04em;
    }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(18px); }
      to { opacity:1; transform:translateY(0); }
    }

    /* ── STATUS BAR ── */
    .status-bar {
      background: var(--navy);
      padding: .85rem 3.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .status-item {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .78rem;
      color: rgba(255,255,255,.6);
      font-weight: 500;
    }

    .status-item strong { color: rgba(255,255,255,.9); }

    .status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 0 2px rgba(74,222,128,.25);
      flex-shrink: 0;
    }

    .status-dot.closed { background: #f87171; box-shadow: 0 0 0 2px rgba(248,113,113,.25); }

    /* ── LAYOUT ── */
    .layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 2rem 4rem;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 2.5rem;
      align-items: start;
    }

    /* ── SECTION TITLE ── */
    .section-title {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.5rem;
    }

    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: -.01em;
    }

    .section-title-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
    }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,.07);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
    }

    .card-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: 1.1rem 1.6rem;
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .card-header h3 {
      font-size: .78rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .card-header svg { color: var(--gold); flex-shrink: 0; }

    .card-body { padding: 1.6rem; }

    /* ── INFOS GRID ── */
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(0,0,0,.06);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
      margin-bottom: 2.5rem;
    }

    .info-cell {
      background: var(--white);
      padding: 1.4rem 1.6rem;
      transition: background .18s;
    }

    .info-cell:hover { background: #f8f9fb; }

    .info-cell.wide {
      grid-column: 1 / -1;
    }

    .info-cell-label {
      font-size: .63rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .5rem;
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .info-cell-label svg { opacity: .7; }

    .info-cell-value {
      font-size: .93rem;
      color: var(--text);
      line-height: 1.65;
      font-weight: 400;
    }

    .info-cell-value a {
      color: var(--blue);
      text-decoration: none;
      font-weight: 500;
      transition: color .2s;
    }

    .info-cell-value a:hover { color: var(--navy); }

    /* ── HORAIRES ── */
    .horaires {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .horaire-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .6rem .75rem;
      border-radius: 6px;
      font-size: .87rem;
      transition: background .15s;
    }

    .horaire-row:hover { background: var(--off-white); }

    .horaire-jour {
      color: var(--muted);
      font-weight: 500;
      font-size: .82rem;
    }

    .horaire-heure {
      color: var(--text);
      font-weight: 500;
      text-align: right;
    }

    .horaire-divider {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .4rem .75rem;
      font-size: .63rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .horaire-divider::before, .horaire-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(0,0,0,.08);
    }

    /* ── SIDEBAR ── */
    .sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

    /* ── CONTACT CARD ── */
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-item:first-child { padding-top: 0; }

    .contact-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }

    .contact-label {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .25rem;
    }

    .contact-value {
      font-size: .9rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5;
    }

    .contact-value a {
      color: var(--blue);
      text-decoration: none;
    }

    /* ── LIENS UTILES ── */
    .link-list { display: flex; flex-direction: column; gap: .4rem; }

    .link-item {
      display: flex;
      align-items: center;
      gap: .7rem;
      padding: .75rem 1rem;
      border-radius: 8px;
      background: var(--off-white);
      text-decoration: none;
      color: var(--text);
      font-size: .87rem;
      font-weight: 500;
      transition: background .18s, transform .18s;
      border: 1px solid transparent;
    }

    .link-item:hover {
      background: var(--white);
      border-color: rgba(0,0,0,.08);
      transform: translateX(3px);
      color: var(--navy);
    }

    .link-item svg { color: var(--blue); flex-shrink: 0; }

    .link-item-arrow {
      margin-left: auto;
      color: var(--muted);
      opacity: .5;
    }

    /* ── TRAVAUX BANNER ── */
    .travaux-banner {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      border-radius: 12px;
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--white);
    }

    .travaux-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(201,168,76,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-lt);
    }

    .travaux-banner h4 {
      font-size: .87rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: .25rem;
    }

    .travaux-banner p {
      font-size: .78rem;
      color: rgba(255,255,255,.6);
      line-height: 1.5;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 2.5rem 3.5rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: start;
    }

    .footer-left h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: .5rem;
    }

    .footer-left p {
      font-size: .8rem;
      color: rgba(255,255,255,.45);
      line-height: 1.65;
      max-width: 36ch;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: .5rem;
      align-items: flex-end;
    }

    .footer-links a {
      font-size: .75rem;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .2s;
      letter-spacing: .03em;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      background: rgba(0,0,0,.2);
      padding: .85rem 3.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
    }

    .footer-bottom p {
      font-size: .72rem;
      color: rgba(255,255,255,.3);
    }

    .footer-bottom a {
      font-size: .72rem;
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-bottom a:hover { color: rgba(255,255,255,.6); }

    /* ── MOT DU MAIRE ── */
    .mot-maire-titre {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .card-body p {
      text-align: justify;
      line-height: 1.9;
      margin-bottom: 1.1rem;
    }

    .mot-maire-signature {
      margin-top: 2.5rem;
      padding-top: 1.25rem;
      border-top: 2px solid var(--gold);
    }

    .mot-maire-signature p {
      font-size: 1rem;
      line-height: 1.7;
      text-align: left;
      margin-bottom: 0;
    }

    /* ── PAGE HEADER (pages secondaires) ── */
    .page-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: 2.5rem 3.5rem;
    }

    .page-header-content { max-width: 1100px; margin: 0 auto; }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      margin-top: .75rem;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .breadcrumb a {
      font-size: .75rem;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      transition: color .2s;
    }

    .breadcrumb a:hover { color: var(--gold-lt); }

    .breadcrumb span:not([aria-hidden]):not([aria-current]) {
      font-size: .75rem;
      color: rgba(255,255,255,.55);
    }

    .breadcrumb span[aria-hidden] {
      color: rgba(255,255,255,.3);
      font-size: .75rem;
    }

    .breadcrumb span[aria-current] {
      font-size: .75rem;
      color: var(--gold-lt);
      font-weight: 500;
    }

    /* ── PAGE CONTENT ── */
    .page-content { min-height: 300px; }

    .content-placeholder {
      padding: 3rem 1.6rem;
      text-align: center;
      color: var(--muted);
      font-size: .95rem;
      font-style: italic;
    }

    /* ── SIDEBAR ACTIVE LINK ── */
    .link-item.active-link {
      background: var(--white);
      border-color: rgba(26,86,160,.2);
      color: var(--navy);
      font-weight: 600;
    }

    .link-item.active-link svg { color: var(--blue); }

    /* ── LAYOUT WIDE (équipe) ── */
    .layout-wide {
      grid-template-columns: 1fr 300px;
    }

    /* ── TEAM INTRO ── */
    .team-intro {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    /* ── TEAM GRID ── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .member-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
      transition: transform .2s, box-shadow .2s;
    }

    .member-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(12,31,63,.13);
    }

    .member-card[data-role="maire"] {
      border-color: rgba(201,168,76,.4);
      box-shadow: 0 2px 16px rgba(201,168,76,.12);
    }

    .member-card[data-role="adjoint"] {
      border-color: rgba(26,86,160,.2);
    }

    .member-photo-wrap {
      position: relative;
      overflow: hidden;
    }

    .member-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform .35s ease;
    }

    .member-card:hover .member-photo { transform: scale(1.04); }

    .member-badge {
      position: absolute;
      bottom: .6rem;
      left: .6rem;
      background: var(--gold);
      color: var(--navy);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem .65rem;
      border-radius: 4px;
    }

    .adjoint-badge {
      background: var(--blue);
      color: var(--white);
    }

    .member-info {
      padding: .9rem 1rem 1rem;
      border-top: 1px solid rgba(0,0,0,.06);
    }

    .member-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: .25rem;
      line-height: 1.25;
    }

    .member-role {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .member-card[data-role="maire"] .member-role { color: var(--gold); }
    .member-card[data-role="adjoint"] .member-role { color: var(--blue); }

    /* ── AGENDA ── */
    .agenda-group {
      margin-bottom: 2.5rem;
    }

    .agenda-group-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: .9rem;
      border-radius: 10px 10px 0 0;
    }

    .agenda-group-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(201,168,76,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-lt);
    }

    .agenda-group-titre {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin: 0;
    }

    .agenda-group-sous-titre {
      font-size: .72rem;
      color: rgba(255,255,255,.5);
      letter-spacing: .04em;
      margin-top: .1rem;
    }

    .agenda-cards {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-top: none;
      border-left: none;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 2px 14px rgba(12,31,63,.07);
      overflow: hidden;
    }

    .agenda-card {
      display: flex;
      box-shadow: inset 3px 0 0 transparent;
      transition: box-shadow .18s, background .18s;
    }

    .agenda-card + .agenda-card {
      border-top: 1px solid rgba(0,0,0,.06);
    }

    .agenda-card:hover {
      box-shadow: inset 3px 0 0 var(--gold);
      background: rgba(201,168,76,.035);
    }

    .agenda-card-date {
      background: linear-gradient(170deg, var(--navy) 0%, var(--navy-lt) 100%);
      min-width: 90px;
      max-width: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem .5rem;
      text-align: center;
      flex-shrink: 0;
    }

    .agenda-card-day {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1;
      color: var(--white);
    }

    .agenda-card-day.compact { font-size: 1.65rem; }

    .agenda-card-month {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: .4rem;
    }

    .agenda-card-tbd .agenda-card-date {
      background: linear-gradient(170deg, #8590a4 0%, #a0abc0 100%);
    }

    .agenda-card-tbd .agenda-card-day {
      font-size: 1.55rem;
      color: rgba(255,255,255,.85);
    }

    .agenda-card-tbd .agenda-card-month {
      color: rgba(255,255,255,.52);
    }

    .agenda-card-body {
      flex: 1;
      min-width: 0;
      padding: 1.1rem 1.4rem;
    }

    .agenda-card-titre {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 .38rem;
    }

    .agenda-card-desc {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.6;
      margin: 0 0 .4rem;
    }

    .agenda-card-detail { margin-top: .6rem; }

    .agenda-detail-row {
      display: flex;
      gap: .55rem;
      font-size: .82rem;
      line-height: 1.5;
      margin-bottom: .4rem;
      align-items: flex-start;
    }

    .agenda-detail-row-label {
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .agenda-detail-row-text { color: var(--muted); }

    .agenda-card-menu {
      display: flex;
      align-items: flex-start;
      gap: .5rem;
      margin-top: .65rem;
      padding: .6rem .85rem;
      background: rgba(201,168,76,.09);
      border-left: 3px solid var(--gold);
      border-radius: 0 6px 6px 0;
      font-size: .83rem;
      color: var(--dark);
      line-height: 1.55;
    }

    .agenda-card-menu svg { flex-shrink: 0; color: var(--gold); margin-top: .1rem; }

    .agenda-tag {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .18rem .6rem;
      border-radius: 20px;
      margin-top: .45rem;
    }

    .agenda-tag-commune  { background: rgba(180,0,0,.1);     color: #960000; }
    .agenda-tag-mx       { background: rgba(26,54,93,.1);    color: var(--navy); }
    .agenda-tag-fetes    { background: rgba(201,168,76,.22); color: #7a5e10; }
    .agenda-tag-amicale  { background: rgba(46,125,50,.1);   color: #2a6e2e; }
    .agenda-tag-copains  { background: rgba(121,85,170,.12); color: #5e3a9e; }
    .agenda-tag-petanque { background: rgba(14,120,60,.1);   color: #0a6b32; }
    .agenda-tag-crampes  { background: rgba(180,80,0,.1);    color: #a04000; }

    .agenda-badge-tbd {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .18rem .6rem;
      border-radius: 20px;
      background: rgba(107,114,128,.1);
      color: var(--muted);
      margin-left: .35rem;
    }

    /* ── ASSOCIATIONS ── */
    .asso-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .asso-card {
      background: var(--white);
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,.07);
      box-shadow: 0 2px 10px rgba(12,31,63,.06);
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }

    .asso-card:hover {
      box-shadow: 0 6px 20px rgba(12,31,63,.13);
      transform: translateY(-2px);
    }

    .asso-card-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: .85rem 1.1rem;
    }

    .asso-card-name {
      font-family: 'Playfair Display', serif;
      font-size: .98rem;
      font-weight: 600;
      color: var(--white);
      margin: 0;
      line-height: 1.3;
    }

    .asso-card-body { padding: .9rem 1.1rem; }

    .asso-info {
      display: flex;
      gap: .55rem;
      align-items: flex-start;
      font-size: .855rem;
      margin-bottom: .55rem;
    }

    .asso-info:last-child { margin-bottom: 0; }

    .asso-info-icon {
      color: var(--gold);
      flex-shrink: 0;
      margin-top: .1rem;
    }

    .asso-info-content { min-width: 0; }

    .asso-info-label {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted);
      margin-bottom: .08rem;
    }

    .asso-info-value {
      color: var(--dark);
      word-break: break-word;
    }

    .asso-info-value a {
      color: var(--navy);
      text-decoration: none;
    }

    .asso-info-value a:hover {
      color: var(--gold);
      text-decoration: underline;
    }

    /* ── RSS ACTUALITÉS ── */
    .rss-encart {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
      margin-bottom: 2.5rem;
    }

    .rss-encart-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: .9rem 1.4rem;
      display: flex;
      align-items: center;
      gap: .6rem;
      color: var(--gold);
    }

    .rss-encart-header span {
      font-size: .78rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      flex: 1;
    }

    .rss-voir-plus {
      font-size: .72rem;
      color: rgba(255,255,255,.6);
      text-decoration: none;
      transition: color .2s;
    }

    .rss-voir-plus:hover { color: var(--gold-lt); }

    .rss-encart-body { padding: 0; }

    .rss-item {
      padding: .95rem 1.4rem;
      border-left: 3px solid transparent;
      transition: border-left-color .2s, background .2s;
    }

    .rss-item + .rss-item {
      border-top: 1px solid rgba(0,0,0,.06);
    }

    .rss-item:hover {
      border-left-color: var(--gold);
      background: rgba(201,168,76,.04);
    }

    .rss-item-date {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .3rem;
    }

    .rss-item-title {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 600;
      line-height: 1.35;
      margin-bottom: .4rem;
    }

    .rss-item-title a {
      color: var(--navy);
      text-decoration: none;
      transition: color .2s;
    }

    .rss-item-title a:hover { color: var(--blue); }

    .rss-item-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ── FACEBOOK ENCART ── */
    .fb-encart {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
      margin-bottom: 2.5rem;
    }

    .fb-encart-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: .9rem 1.4rem;
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    .fb-encart-header span {
      font-size: .78rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      flex: 1;
    }

    .fb-voir-plus {
      font-size: .72rem;
      color: rgba(255,255,255,.6);
      text-decoration: none;
      transition: color .2s;
    }

    .fb-voir-plus:hover { color: var(--gold-lt); }

    .fb-encart-body {
      padding: 1rem;
    }

    .fb-encart-body .fb-page {
      display: block;
      width: 100%;
    }

    /* ── COMITÉ CITOYEN ── */
    .citoyen-objectif {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      border-radius: 12px;
      padding: 1.75rem;
      margin-bottom: 2rem;
    }

    .citoyen-objectif-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background: rgba(201,168,76,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-lt);
    }

    .citoyen-objectif-titre {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: .6rem;
    }

    .citoyen-objectif-texte {
      font-size: .93rem;
      color: rgba(255,255,255,.75);
      line-height: 1.7;
    }

    .citoyen-objectif-texte strong { color: var(--gold-lt); font-weight: 600; }

    /* ── CHANTIERS GRID ── */
    .chantiers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .chantier-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 10px;
      padding: 1rem 1.1rem;
      display: flex;
      align-items: center;
      gap: .85rem;
      box-shadow: 0 2px 8px rgba(12,31,63,.05);
      transition: transform .18s, box-shadow .18s;
    }

    .chantier-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(12,31,63,.1);
    }

    .chantier-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }

    .chantier-card span {
      font-size: .85rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.35;
    }

    /* ── S'IMPLIQUER STEPS ── */
    .impliquer-steps {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .impliquer-step {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 10px rgba(12,31,63,.05);
    }

    .impliquer-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      color: var(--gold-lt);
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .impliquer-step-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: .6rem;
    }

    .impliquer-step-body p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: .5rem;
    }

    .impliquer-step-body p:last-child { margin-bottom: 0; }
    .impliquer-step-body strong { color: var(--text); font-weight: 600; }

    /* ── COMMISSIONS GRID ── */
    .commissions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

    .commission-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.07);
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      box-shadow: 0 2px 12px rgba(12,31,63,.06);
      transition: transform .2s, box-shadow .2s;
    }

    .commission-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(12,31,63,.11);
    }

    .commission-icon {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold-lt);
    }

    .commission-body { flex: 1; }

    .commission-title {
      font-family: 'Playfair Display', serif;
      font-size: .97rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.35;
      margin-bottom: .75rem;
    }

    .commission-members-label {
      font-size: .63rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .3rem;
    }

    .commission-members-placeholder {
      font-size: .82rem;
      color: var(--muted);
      font-style: italic;
    }

    .commission-members-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .3rem;
    }

    .commission-members-list li {
      font-size: .85rem;
      color: var(--text);
      padding-left: .9rem;
      position: relative;
    }

    .commission-members-list li::before {
      content: '–';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 600;
    }

    /* ── SEO NOTE ── */
    .seo-note {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 8px;
      padding: 1rem 1.5rem;
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.7;
      grid-column: 1 / -1;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .contact-bloc {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 10px;
      padding: 1.5rem 1.25rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: .6rem;
      box-shadow: 0 1px 6px rgba(0,0,0,.05);
    }

    .contact-bloc-icon {
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .contact-bloc-label {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted);
    }

    .contact-bloc-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.4;
    }

    .contact-bloc-value a {
      color: var(--navy);
      text-decoration: none;
    }

    .contact-bloc-value a:hover {
      color: var(--gold);
      text-decoration: underline;
    }

    .horaires-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .9rem;
    }

    .horaires-table th {
      text-align: left;
      padding: .5rem .75rem;
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--muted);
      border-bottom: 2px solid var(--border);
    }

    .horaires-table td {
      padding: .55rem .75rem;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }

    .horaires-table tr:last-child td {
      border-bottom: none;
    }

    .horaires-table td:first-child {
      font-weight: 600;
      color: var(--navy);
      width: 40%;
    }

    .horaires-table tr.ferme td {
      color: var(--muted);
      font-style: italic;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .layout { grid-template-columns: 1fr; }
      .hero { height: 285px; }
      .hero-content { padding: 2rem 1.75rem; }
      footer { grid-template-columns: 1fr; padding: 2rem 1.75rem; }
      .footer-bottom { padding: .75rem 1.75rem; }
      .footer-links { align-items: flex-start; }
      .status-bar { padding: .85rem 1.75rem; }
      nav { padding: 0 1rem; }
      .top-header { padding: .6rem 1.25rem; }
    }

    @media (max-width: 520px) {
      .info-grid { grid-template-columns: 1fr; }
      .info-cell.wide { grid-column: 1; }
      .hero { height: 225px; }
      h1 { font-size: 2rem; }
      .contact-grid { grid-template-columns: 1fr; }
    }