
    /* ─── RESET & BASE ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #FFF2EA;
      --surface:   #161616;
      --border:    #2a2a2a;
      --accent:    #000A47;

      --accent2:   #000A47;
      --text:      #000A47;
      --muted:     #000A47;
      --gap:       24px;
      --cols:      12;
      --max:       1280px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }


.bg-section {
  background-image: url('../images/blur.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: var(--bg);
}


    .bg-section h1, .bg-section h2, .bg-section .section-label  {

      
            text-shadow:
    -1px -1px 0 var(--accent),
     1px -1px 0 var(--accent),
    -1px  1px 0 var(--accent),
     1px  1px 0 var(--accent);
    }


        h1 {
      color: var(--bg);
      font-size: clamp(2.2rem, 4vw, 4.5rem);
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: -.01em;}

     
    h1 em {
      font-style: italic;
      color: var(--accent);
    }


 

    /* ─── GRID SYSTEM ────────────────────────────────────────────── */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 40px;
    }

    .row {
      display: grid;
      grid-template-columns: repeat(var(--cols), 1fr);
      gap: var(--gap);
    }

    .col-1  { grid-column: span 1; }
    .col-2  { grid-column: span 2; }
    .col-3  { grid-column: span 3; }
    .col-4  { grid-column: span 4; }
    .col-5  { grid-column: span 5; }
    .col-6  { grid-column: span 6; }
    .col-7  { grid-column: span 7; }
    .col-8  { grid-column: span 8; }
    .col-9  { grid-column: span 9; }
    .col-10 { grid-column: span 10; }
    .col-11 { grid-column: span 11; }
    .col-12 { grid-column: span 12; }

    /* Offset helpers */
    .offset-1  { grid-column-start: 2; }
    .offset-2  { grid-column-start: 3; }
    .offset-3  { grid-column-start: 4; }

    /* ─── RESPONSIVE BREAKPOINTS ─────────────────────────────────── */

    /* Tablette large (≤ 1024px) */
    @media (max-width: 1024px) {
      .container { padding: 0 32px; }
      :root { --gap: 20px; }
    }

    /* Tablette (≤ 900px) */
    @media (max-width: 900px) {
      .col-3, .col-4  { grid-column: span 6; }
      .col-5, .col-6  { grid-column: span 6; }
      .col-7, .col-8  { grid-column: span 12; }
      .col-9          { grid-column: span 12; }
      .col-1, .col-2  { grid-column: span 4; }

      /* Edito aside full width */
      #edito .col-7 { grid-column: span 12; }
      #edito .col-5 { grid-column: span 12; }
      #edito .col-4 { grid-column: span 6; }

      /* Footer */
      footer .col-4 { grid-column: span 12; }
      footer .col-2 { grid-column: span 4; }
    }

    /* Mobile (≤ 600px) */
    @media (max-width: 600px) {
      :root { --gap: 16px; }
      .container { padding: 0 20px; }
      [class^="col-"] { grid-column: span 12 !important; }
      .offset-1, .offset-2, .offset-3 { grid-column-start: auto; }
    }












  /* ─── HEADER ─────────────────────────────────────────────────── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    /*background: rgba(255,242,234,.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);*/
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo img {
  height: 40px;
  width: auto;
  display: block;
}

  /* ─── DESKTOP NAV ────────────────────────────────────────────── */
  nav {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  nav > a {
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
    white-space: nowrap;
  }
  nav > a:hover { color: var(--accent); }

  /* ─── DROPDOWN ───────────────────────────────────────────────── */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: .875rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: inherit;
    padding: 0;
    transition: color .2s;
    white-space: nowrap;
  }
  .dropdown-toggle:hover,
  .dropdown-toggle[aria-expanded="true"] { color: var(--accent); }

  .dropdown-toggle .chevron {
    transition: transform .25s ease;
  }
  .dropdown-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    min-width: 210px;
    background: rgba(255,242,234,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 200;
  }
  .dropdown-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .15s, background .15s;
    white-space: nowrap;
  }
  .dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(0,0,0,.03);
  }

  /* Petite flèche décorative sur le dropdown */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 10px;
    height: 10px;
    background: rgba(255,242,234,.97);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
  }

  /* ─── HAMBURGER BUTTON ───────────────────────────────────────── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ─── MOBILE NAV OVERLAY ─────────────────────────────────────── */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(255,235,216,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
  }
  .mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .mobile-nav > a,
  .mobile-nav .mobile-link:not(.mobile-sub-link) {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity .2s;
  }
  .mobile-nav > a:hover { opacity: .6; }

  /* ─── ACCORDÉON MOBILE ───────────────────────────────────────── */
  .mobile-accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .mobile-accordion-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: inherit;
    padding: 0;
    transition: opacity .2s;
  }
  .mobile-accordion-toggle:hover { opacity: .6; }
  .mobile-accordion-toggle .chevron {
    width: 14px;
    height: 9px;
    transition: transform .25s ease;
  }
  .mobile-accordion-toggle.open .chevron { transform: rotate(180deg); }

  .mobile-accordion-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding-top: 0;
  }
  .mobile-accordion-body.open {
    max-height: 300px;
    padding-top: 18px;
  }

  .mobile-sub-link {
    color: var(--muted) !important;
    font-size: .95rem !important;
    letter-spacing: .1em !important;
    font-weight: 400 !important;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity .2s;
  }
  .mobile-sub-link:hover { opacity: .6; }

  /* Show hamburger on tablet/mobile */
  @media (max-width: 860px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
  }


























    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--bg);
      font-weight: 500;
      font-size: .875rem;
      letter-spacing: .04em;
      padding: 14px 28px;
      border-radius: 6px;
      text-decoration: none;
      transition: opacity .2s, transform .2s;
      border: solid var(--bg) 2px;
    }
    .btn-primary:hover { opacity: .85; transform: translateY(-2px); }

    @media (max-width: 600px) {
      .btn-primary { width: 100%; justify-content: center; }
    }

    /* ─── SECTION LABELS ─────────────────────────────────────────── */
    .section-label {
      font-size: .7rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: inherit;
      margin-bottom: 16px;
      margin-top: 16px;
    }

    h2 {
      font-size: clamp(1.75rem, 3.5vw, 3.2rem);
      line-height: 1.2;
      letter-spacing: -.01em;
    }

    a { color: inherit; }






    /* ─── ARTICLE CARDS ──────────────────────────────────────────── */
    .article-card {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: transform .3s ease, border-color .3s ease;
      text-decoration: none;
      color: inherit;
      height: 100%;
      background: #FFF3E7;
    }
    .article-card:hover { transform: translateY(-3px); }

    .article-thumb {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
      background: var(--surface);
      flex-shrink: 0;
    }
    .article-thumb-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .article-thumb-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .article-card:hover .article-thumb-inner img { transform: scale(1.05); }

    .article-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      font-size: .6rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      background: rgba(255,235,216,.92);
      color: var(--accent);
      padding: 5px 10px;
      border-radius: 100px;
      font-weight: 500;
    }

    .article-body {
      padding: 22px 24px 26px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(0,10,71,.45);
    }
    .article-meta-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: rgba(0,10,71,.25);
    }

    .article-title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--accent);
    }

    .article-desc {
      font-size: .825rem;
      line-height: 1.7;
      color: rgba(0,10,71,.6);
    }

    .article-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-top: auto;
      padding-top: 6px;
      text-decoration: none;
      transition: gap .2s;
    }
    .article-card:hover .article-read-more { gap: 10px; }
    .article-read-more svg {
      width: 12px; height: 12px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }


    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }

    .footer-brand { font-size: 1.1rem; }
    .footer-copy { color: var(--muted); font-size: .8rem; margin-top: 8px; margin-bottom: 8px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      color: var(--muted);
      font-size: .875rem;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--accent); }

    @media (max-width: 600px) {
      footer { padding: 40px 0; }
      /* Stack footer columns */
      footer .col-4 { margin-bottom: 24px; }
      footer .col-2 { margin-bottom: 16px; }
    }

    /* ─── FADE IN ANIMATION ──────────────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── SECTION VERTICAL SPACING ───────────────────────────────── */
    @media (max-width: 600px) {
      h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
      h1 { font-size: clamp(2rem, 9vw, 3rem); }
    }