  :root{
    --ink:#1B1533;
    --paper:#FBF7EF;
    --coral:#FF4D6D;
    --amber:#FFC93C;
    --teal:#00B4A6;
    --violet:#6C4EF2;
    --line: rgba(27,21,51,0.14);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Space Grotesk', sans-serif;
    line-height:1.5;
    overflow-x:hidden;
  }
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }
  h1,h2,h3{
    font-family:'Fraunces', serif;
    font-weight:900;
    line-height:1.02;
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  :focus-visible{outline:3px solid var(--violet); outline-offset:3px;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 28px;}

  /* ---------- NAV ---------- */
  .nav{
    position:sticky; top:0; z-index:50;
    background:var(--paper);
    border-bottom:2px solid var(--ink);
  }
  .nav .wrap{display:flex; align-items:center; justify-content:space-between; height:74px;}
  .brand{
    display:flex; align-items:center; gap:10px;
    font-family:'Fraunces', serif; font-weight:900; font-size:1.4rem;
  }
  .brand .dot{
    width:14px; height:14px; border-radius:50%;
    background:var(--coral);
    box-shadow: 18px 0 0 var(--amber), 36px 0 0 var(--teal);
    margin-right:34px;
  }
  .navlinks{display:flex; gap:8px; list-style:none;}
  .navlinks a{
    font-size:0.92rem; font-weight:600; padding:9px 16px; border-radius:999px;
    transition: background .18s ease, color .18s ease;
  }
  .navlinks a:hover{ background:var(--ink); color:var(--paper); }
  .nav-cta{
    background:var(--violet); color:var(--paper); font-weight:700; font-size:0.9rem;
    padding:11px 20px; border-radius:999px; border:2px solid var(--ink);
    box-shadow:3px 3px 0 var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .nav-cta:hover{ transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--ink); }
  .burger{display:none;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:90px 0 120px;
    overflow:hidden;
    background:var(--ink);
    color:var(--paper);
  }
  .hero::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(circle at 85% 12%, rgba(255,201,60,0.35), transparent 45%),
      radial-gradient(circle at 8% 85%, rgba(0,180,166,0.35), transparent 45%);
    pointer-events:none;
  }
  .hero-grid{
    position:relative; z-index:1;
    display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--coral); color:var(--ink);
    font-weight:700; font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase;
    padding:8px 16px; border-radius:999px; margin-bottom:26px;
    transform:rotate(-2deg);
  }
  .hero h1{
    font-size:clamp(2.6rem, 5.4vw, 4.6rem);
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:italic; color:var(--amber);
  }
  .hero p.lead{
    font-size:1.15rem; max-width:46ch; color:rgba(251,247,239,0.82); margin-bottom:34px;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-weight:700; font-size:0.98rem; padding:15px 26px; border-radius:999px;
    border:2px solid transparent; cursor:pointer;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary{ background:var(--amber); color:var(--ink); box-shadow:4px 4px 0 var(--coral); }
  .btn-primary:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--coral); }
  .btn-ghost{ background:transparent; color:var(--paper); border-color:rgba(251,247,239,0.5); }
  .btn-ghost:hover{ border-color:var(--paper); }

  .hero-collage{ position:relative; height:420px; }
  .card-float{
    position:absolute; border-radius:18px; overflow:hidden;
    border:3px solid var(--ink); box-shadow:8px 8px 0 rgba(0,0,0,0.35);
  }
  .card-float.c1{ width:64%; top:0; left:8%; transform:rotate(-6deg); z-index:2;}
  .card-float.c2{ width:52%; bottom:0; right:0; transform:rotate(5deg); z-index:1;}
  .card-float img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
  .card-float.c2 img{ aspect-ratio:5/4; }

  /* ---------- SECTION LABELS ---------- */
  .section{ padding:96px 0; border-bottom:2px solid var(--ink); }
  .section:last-of-type{ border-bottom:none; }
  .kicker{
    display:flex; align-items:center; gap:14px; margin-bottom:16px;
  }
  .kicker span{
    font-weight:700; font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase;
    background:var(--ink); color:var(--paper); padding:6px 14px; border-radius:999px;
  }
  .kicker .rule{ flex:1; height:2px; background:var(--line); }
  .section h2{ font-size:clamp(1.9rem, 3.4vw, 2.7rem); max-width:18ch; margin-bottom:18px; }
  .section .intro{ max-width:60ch; color:rgba(27,21,51,0.72); font-size:1.05rem; margin-bottom:48px; }

  /* ---------- ABOUT ---------- */
  .about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
  .stat-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:38px; }
  .stat{
    border:2px solid var(--ink); border-radius:16px; padding:20px 16px;
    background:var(--paper);
  }
  .stat b{ display:block; font-family:'Fraunces',serif; font-size:2rem; font-weight:900; color:var(--violet); }
  .stat span{ font-size:0.85rem; color:rgba(27,21,51,0.65); }
  .pillar-list{ display:flex; flex-direction:column; gap:22px; }
  .pillar{ display:flex; gap:16px; align-items:flex-start; }
  .pillar .num{
    flex:none; width:42px; height:42px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; border:2px solid var(--ink);
  }
  .pillar:nth-child(1) .num{ background:var(--coral); }
  .pillar:nth-child(2) .num{ background:var(--amber); }
  .pillar:nth-child(3) .num{ background:var(--teal); }
  .pillar h3{ font-size:1.1rem; font-weight:700; font-family:'Space Grotesk',sans-serif; margin-bottom:4px; }
  .pillar p{ color:rgba(27,21,51,0.68); font-size:0.96rem; }

  /* ---------- EVENTS ---------- */
  .events-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .event-card{
    border:2px solid var(--ink); border-radius:18px; overflow:hidden;
    background:var(--paper); display:flex; flex-direction:column;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .event-card:hover{ transform:translateY(-5px); box-shadow:6px 6px 0 var(--ink); }
  .event-date{
    padding:14px 18px; font-weight:700; font-size:0.85rem; letter-spacing:0.04em;
    text-transform:uppercase; color:var(--ink); background:var(--amber);
    border-bottom:2px solid var(--ink);
  }
  .event-card:nth-child(2) .event-date{ background:var(--teal); }
  .event-card:nth-child(3) .event-date{ background:var(--coral); }
  .event-body{ padding:22px; flex:1; display:flex; flex-direction:column; gap:10px; }
  .event-body h3{ font-family:'Fraunces',serif; font-weight:700; font-size:1.25rem; }
  .event-body p{ color:rgba(27,21,51,0.68); font-size:0.94rem; flex:1; }
  .event-tag{ font-size:0.78rem; font-weight:700; color:var(--violet); text-transform:uppercase; letter-spacing:0.05em; }

  /* ---------- MEMBERSHIP / DON ---------- */
  .membership{ background:var(--ink); color:var(--paper); }
  .membership .kicker span{ background:var(--amber); color:var(--ink); }
  .membership .section .intro{ color:rgba(251,247,239,0.72); }
  .membership h2{ color:var(--paper); }
  .tier-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
  .tier{
    border:2px solid rgba(251,247,239,0.25); border-radius:18px; padding:30px 26px;
    display:flex; flex-direction:column; gap:16px;
    transition: border-color .18s ease, transform .18s ease;
  }
  .tier:hover{ border-color:var(--amber); transform:translateY(-4px); }
  .tier.featured{ border-color:var(--amber); background:rgba(255,201,60,0.08); position:relative; }
  .tier.featured::after{
    content:"Le plus choisi"; position:absolute; top:-14px; right:24px;
    background:var(--amber); color:var(--ink); font-size:0.72rem; font-weight:700;
    padding:5px 12px; border-radius:999px;
  }
  .tier .price{ font-family:'Fraunces',serif; font-size:2.4rem; font-weight:900; }
  .tier .price small{ font-size:0.95rem; font-weight:500; color:rgba(251,247,239,0.6); }
  .tier ul{ list-style:none; display:flex; flex-direction:column; gap:8px; font-size:0.92rem; color:rgba(251,247,239,0.82); }
  .tier ul li::before{ content:"✦ "; color:var(--amber); }
  .tier .btn{ margin-top:auto; justify-content:center; }
  .tier .btn-primary{ box-shadow:4px 4px 0 var(--violet); }
  .tier .btn-primary:hover{ box-shadow:6px 6px 0 var(--violet); }

  .donate-strip{
    margin-top:52px; border:2px dashed rgba(251,247,239,0.35); border-radius:20px;
    padding:34px 38px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  }
  .donate-strip h3{ font-family:'Fraunces',serif; font-size:1.5rem; font-weight:700; max-width:32ch; }
  .donate-strip p{ color:rgba(251,247,239,0.7); font-size:0.94rem; margin-top:6px; max-width:40ch; }

  /* ---------- GALLERY ---------- */
  .gallery-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); grid-auto-rows:150px; gap:14px;
  }
  .gallery-grid a{ border-radius:14px; overflow:hidden; border:2px solid var(--ink); position:relative; display:block; }
  .gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
  .gallery-grid a:hover img{ transform:scale(1.07); }
  .g1{ grid-column:span 2; grid-row:span 2; }
  .g4{ grid-column:span 2; }
  .g6{ grid-row:span 2; }

  /* ---------- CONTACT ---------- */
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
  .field{ display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
  .field label{ font-size:0.85rem; font-weight:700; }
  .field input, .field textarea{
    font-family:inherit; font-size:0.98rem; padding:13px 16px;
    border:2px solid var(--ink); border-radius:12px; background:var(--paper); color:var(--ink);
    resize:vertical;
  }
  .field input:focus, .field textarea:focus{ border-color:var(--violet); }
  .info-card{
    border:2px solid var(--ink); border-radius:18px; padding:30px; background:#fff;
    display:flex; flex-direction:column; gap:22px; height:fit-content;
  }
  .info-row{ display:flex; gap:14px; align-items:flex-start; }
  .info-row .ic{
    flex:none; width:38px; height:38px; border-radius:10px; border:2px solid var(--ink);
    display:flex; align-items:center; justify-content:center; font-size:1.1rem;
  }
  .info-row:nth-child(1) .ic{ background:var(--coral); }
  .info-row:nth-child(2) .ic{ background:var(--amber); }
  .info-row:nth-child(3) .ic{ background:var(--teal); }
  .info-row b{ display:block; font-size:0.95rem; }
  .info-row span{ color:rgba(27,21,51,0.68); font-size:0.92rem; }
  .social-row{ display:flex; gap:10px; margin-top:6px; }
  .social-row a{
    width:38px; height:38px; border:2px solid var(--ink); border-radius:10px;
    display:flex; align-items:center; justify-content:center; font-weight:700;
    transition: background .15s ease, color .15s ease;
  }
  .social-row a:hover{ background:var(--ink); color:var(--paper); }

  /* ---------- FOOTER ---------- */
  footer{ background:var(--ink); color:rgba(251,247,239,0.7); padding:40px 0; }
  footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:0.86rem; }
  footer .brand{ color:var(--paper); font-size:1.1rem; }

  @media (max-width:860px){
    .navlinks{ display:none; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero-collage{ height:320px; margin-top:20px;}
    .about-grid, .contact-grid{ grid-template-columns:1fr; }
    .stat-row{ grid-template-columns:1fr 1fr; }
    .events-grid, .tier-grid{ grid-template-columns:1fr; }
    .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:130px; }
    .g1{ grid-column:span 2; grid-row:span 1; }
  }

/* ---------- CANDIDATE PROFILES PAGE ---------- */
.page-header{ padding:56px 0 20px; }
.page-header h1{ font-size:clamp(2rem, 4vw, 3rem); max-width:20ch; }
.page-header p{ color:rgba(27,21,51,0.7); max-width:60ch; font-size:1.05rem; margin-top:14px; }
.back-link{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:0.9rem; margin-bottom:22px; }
.back-link:hover{ text-decoration:underline; }

.candidate-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; padding:40px 0 90px; }
.candidate-card{
  border:2px solid var(--ink); border-radius:20px; overflow:hidden; background:#fff;
  display:flex; flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.candidate-card:hover{ transform:translateY(-5px); box-shadow:6px 6px 0 var(--ink); }
.candidate-photo{ width:100%; aspect-ratio:4/3; object-fit:cover; border-bottom:2px solid var(--ink); }
.candidate-body{ padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.candidate-body h3{ font-family:'Fraunces',serif; font-weight:700; font-size:1.25rem; }
.candidate-meta{ font-size:0.85rem; font-weight:700; color:var(--violet); text-transform:uppercase; letter-spacing:0.04em; }
.candidate-body p{ color:rgba(27,21,51,0.68); font-size:0.92rem; flex:1; }
.candidate-actions{ display:flex; gap:10px; margin-top:6px; flex-wrap:wrap; }
.candidate-actions a{
  font-size:0.85rem; font-weight:700; padding:9px 16px; border-radius:999px;
  border:2px solid var(--ink); transition: background .15s ease, color .15s ease;
}
.candidate-actions a:hover{ background:var(--ink); color:var(--paper); }
.candidate-actions a.primary{ background:var(--amber); }
.candidate-actions a.primary:hover{ background:var(--ink); color:var(--paper); }
.status-chip{
  align-self:flex-start; font-size:0.72rem; font-weight:700; text-transform:uppercase;
  padding:5px 12px; border-radius:999px; border:2px solid var(--ink);
}
.status-chip.open{ background:var(--teal); }
.status-chip.sponsored{ background:var(--coral); color:var(--paper); }

@media (max-width:860px){
  .candidate-grid{ grid-template-columns:1fr; }
}
