  :root {
    --green: #467b43;
    --green-dark: #2c4f2a;
    --brown: #af6a32;
    --beige: #f3deb4;
    --beige-2: #e8c98a;
    --beige-light: #fdf5e6;
    --white: #fff;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body { font-family: 'Lora', serif; background: var(--beige-light); color: #2c2c2c; overflow-x: hidden; font-size: 18px; width: 100%; -webkit-tap-highlight-color: transparent; hyphens: none; -webkit-hyphens: none; }
  body.menu-open { overflow: hidden; position: fixed; width: 100%; }
  img { max-width: 100%; height: auto; transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
  
  /* Typographie globale */
  h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4, h5, h6 { font-size: 20px; }
  p { font-family: 'Lora', serif; font-size: 18px; line-height: 1.7; }

  /* ========== NAV ========== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(44,79,42,0.98);
    backdrop-filter: blur(12px);
    padding: 0 2rem;
    padding-top: env(safe-area-inset-top, 0px);
    display: flex; align-items: center; justify-content: space-between;
    height: 78px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo-img {
    height: 62px; width: 120px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--beige);
    box-shadow: 0 0 0 2px var(--beige-2), 0 3px 12px rgba(0,0,0,0.3);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-img img {
    height: 120%; width: auto; object-fit: contain;
    object-position: center center;
  }
  .nav-logo-name {
    font-family: 'Nunito', sans-serif; font-weight: 900;
    font-size: 1.25rem; color: var(--beige); letter-spacing: 0.01em;
    line-height: 1;
  }
  .nav-logo-sub {
    font-family: 'Lora', serif; font-style: italic;
    font-size: 0.72rem; color: rgba(243,222,180,0.65);
    margin-top: 2px;
  }

  /* Nav links */
  .nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: flex; align-items: center; gap: 5px;
    color: rgba(243,222,180,0.88); text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 7px 12px; border-radius: 8px;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
  }
  .nav-links > li > a:hover,
  .nav-links > li:hover > a { background: rgba(243,222,180,0.12); color: var(--beige); }
  .nav-links > li > a .arrow { font-size: 0.5rem; opacity: 0.55; transition: transform 0.2s; }
  .nav-links > li:hover > a .arrow, .nav-links > li:focus-within > a .arrow { transform: rotate(180deg); }

  /* Dropdown */
  .dropdown {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--green-dark); border: 1px solid rgba(243,222,180,0.15);
    border-radius: 12px; min-width: 230px; padding: 0.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 100;
  }
  /* Assurer que le dropdown actif soit toujours au-dessus */
  .nav-links > li:hover .dropdown {
    z-index: 200;
  }
  .dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: rgba(243,222,180,0.85); text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown a:hover { background: rgba(243,222,180,0.12); color: var(--beige); }
  .dropdown a .dd-icon { font-size: 1rem; flex-shrink: 0; }

  .nav-cta {
    background: var(--brown); color: var(--white);
    padding: 9px 18px; border-radius: 30px;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap; flex-shrink: 0;
  }
  .nav-cta:hover { background: var(--brown); transform: scale(1.04); }

  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .hamburger span { width: 26px; height: 2px; background: var(--beige); border-radius: 2px; display: block; transition: all 0.3s; }
  .mobile-menu {
    display: none; position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--green-dark); z-index: 99;
    flex-direction: column; padding: 2rem; padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .mobile-menu.open { display: flex; }
  .mm-head { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(243,222,180,0.38); padding: 1.5rem 0 0.5rem; }
  .mobile-menu a {
    color: var(--beige); text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 12px 0; border-bottom: 1px solid rgba(243,222,180,0.1);
    display: flex; align-items: center; gap: 10px; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--brown); }
  .mm-cta { background: var(--brown); border-radius: 10px; justify-content: center; margin-top: 1.5rem; padding: 14px !important; border-bottom: none !important; }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(160deg, rgba(44,79,42,0.90) 0%, rgba(70,123,67,0.60) 50%, rgba(44,79,42,0.88) 100%),
      radial-gradient(ellipse at 30% 60%, rgba(175,106,50,0.3) 0%, transparent 60%);
    background-color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    padding: 100px 2rem 8rem;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 80%, rgba(243,222,180,0.06) 0%, transparent 40%),
      radial-gradient(circle at 80% 20%, rgba(175,106,50,0.08) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-content { text-align: center; max-width: 820px; position: relative; z-index: 2; }
  .hero-badge {
    display: inline-block; background: rgba(243,222,180,0.13); border: 1px solid rgba(243,222,180,0.28);
    color: var(--beige); padding: 6px 18px; border-radius: 30px;
    font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Nunito', sans-serif; font-weight: 900;
    font-size: clamp(3rem, 8vw, 5.8rem);
    color: var(--beige); line-height: 1.0;
    margin-bottom: 0.4rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  .hero h1 .accent { color: var(--brown); }
  .hero h2 {
    font-family: 'Montserrat', sans-serif; font-size: clamp(0.95rem, 2.2vw, 1.35rem);
    font-weight: 400; color: rgba(243,222,180,0.80); margin-bottom: 2rem;
    letter-spacing: 0.06em;
  }
  .hero p { font-size: 1rem; color: rgba(243,222,180,0.70); line-height: 1.78; max-width: 560px; margin: 0 auto 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--brown); color: var(--white);
    padding: 14px 32px; border-radius: 40px; text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem;
    text-transform: uppercase; letter-spacing: 0.07em;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(175,106,50,0.45);
  }
  .btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(175,106,50,0.55); }
  .btn-outline {
    border: 2px solid rgba(243,222,180,0.45); color: var(--beige);
    padding: 12px 26px; border-radius: 40px; text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.92rem;
    text-transform: uppercase; letter-spacing: 0.06em; transition: all 0.3s;
  }
  .btn-outline:hover { background: rgba(243,222,180,0.1); border-color: var(--beige); }
  .hero-scroll {
    position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    animation: bounce 2.2s ease-in-out infinite; text-decoration: none;
  }
  .hero-scroll .scroll-label {
    font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.24em;
    color: rgba(243,222,180,0.60);
  }
  .hero-scroll .scroll-arrow { font-size: 2rem; line-height: 1; color: rgba(243,222,180,0.45); }
  @keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ========== TICKER ========== */
  .ticker {
    background: var(--brown); color: var(--white);
    padding: 13px 0; overflow: hidden; white-space: nowrap;
  }
  .ticker-inner {
    display: inline-flex; gap: 4rem;
    animation: ticker 22s linear infinite;
  }
  .ticker-inner span { font-family: 'Montserrat', sans-serif; font-size: 0.83rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
  @keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

  /* ========== SECTIONS COMMUNES ========== */
  section.padded { padding: 80px 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--brown); margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Montserrat', sans-serif; font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 900; color: var(--green-dark); margin-bottom: 1.5rem; line-height: 1.08;
  }
  .section-title span { color: var(--brown); }

  /* ========== SERVICES BENTO GRID ========== */
  .services { background: var(--beige-light); }
  .bento-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .bento-item {
    background-color: #fdf8f1;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 5px 5px 0 var(--beige-2);
  }
  .stages { grid-column: span 2; }
  .kits, .stages {
    background-color: var(--green);
    color: #ffffff;
    box-shadow: 5px 5px 0 var(--green-dark);
  }
  .kits:hover, .stages:hover { box-shadow: 8px 8px 0 var(--green-dark); }
  .interventions {
    background-color: var(--brown);
    color: #ffffff;
    box-shadow: 5px 5px 0 #8f5228;
  }
  .interventions:hover { box-shadow: 8px 8px 0 #8f5228; }
  .icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 24px; margin-bottom: 20px;
  }
  .animation .icon-box, .projets .icon-box { background: rgba(0, 0, 0, 0.05); }
  .bento-item h3 {
    font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 0; color: inherit;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 10px; margin-bottom: 12px; font-weight: 700; line-height: 1.2;
  }
  .kits h3, .interventions h3, .stages h3 { border-bottom: 2px solid rgba(255,255,255,0.2); }
  .bento-item p { margin: 0; line-height: 1.6; font-size: 0.95rem; opacity: 0.9; }
  .bento-item:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--beige-2); }
  .kits:hover, .stages:hover { box-shadow: 8px 8px 0 var(--green-dark); }
  .interventions:hover { box-shadow: 8px 8px 0 #8f5228; }
  @media (max-width: 768px) {
    .bento-services { grid-template-columns: 1fr; padding: 20px; }
    .stages { grid-column: span 1; }
  }

  /* ========== QUI SUIS-JE ========== */
  .qui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
  }
  .qui-photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 8px 8px 0 var(--green);
    border: 3px solid var(--beige-2);
  }
  .qui-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--green-dark);
    margin-bottom: 1.1rem;
  }
  .qui-text p:not(:first-child) {
    font-size: 0.95rem;
    color: #5a5040;
  }
  .qui-text p:last-child {
    font-size: 0.9rem;
    color: #7a6a50;
    font-style: italic;
    margin-bottom: 0;
  }
  .qui-text strong {
    color: var(--green);
  }

  /* ========== ÉVÉNEMENTS PREVIEW ========== */
  .events-preview-section {
    padding: 5rem 2rem;
    background-color: var(--beige-light);
    position: relative;
    border-top: 2px solid var(--beige-2);
  }
  .events-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .events-preview-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .events-badge {
    display: inline-block;
    background: var(--beige);
    color: var(--green-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .events-preview-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brown);
    margin: 0;
  }
  .events-preview-header p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #6b5a40;
    max-width: 600px;
    margin: 1rem auto 0;
  }
  .events-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--green);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(70, 123, 67, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .events-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(70, 123, 67, 0.4);
  }

  /* ========== DEMARCHE ========== */
  .demarche { background: var(--green-dark); }
  .demarche .section-title { color: var(--beige); }
  .demarche .section-label { color: rgba(243,222,180,0.52); }
  .demarche > .section-inner > .demarche-grid > div:first-child > p {
    color: rgba(243,222,180,0.78); line-height: 1.82; font-size: 0.97rem; margin-bottom: 2rem;
  }
  .pilliers { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
  .pillier {
    background: rgba(243,222,180,0.08); border: 1px solid rgba(243,222,180,0.14);
    border-radius: 14px; padding: 1.3rem 1.5rem;
    border-left: 4px solid var(--brown);
  }
  .pillier h4 { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 800; color: var(--beige); margin-bottom: 0.4rem; }
  .pillier p { font-size: 0.82rem; color: rgba(243,222,180,0.65); line-height: 1.6; }
  .demarche-visual {
    background: rgba(243,222,180,0.06); border-radius: 24px;
    padding: 1.6rem; border: 1px solid rgba(243,222,180,0.12);
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .demarche-visual .big-emoji { font-size: 4rem; display: block; margin-bottom: 1.2rem; text-align: center; }
  .demarche-quote { border-left: 3px solid var(--brown); padding-left: 1.2rem; margin-bottom: 1.5rem; }
  .demarche-quote p { color: rgba(243,222,180,0.75); font-style: italic; font-size: 1rem; line-height: 1.75; }
  .demarche-quote cite { display: block; margin-top: 0.7rem; font-style: normal; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(243,222,180,0.38); }
  .valeurs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.8rem; }
  .valeur { background: rgba(243,222,180,0.07); border-radius: 10px; padding: 0.7rem 1rem; }
  .valeur .vi { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .valeur span { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; color: rgba(243,222,180,0.85); }

  /* ========== BOITE A IDEES ========== */
  .boite { background: var(--beige-light); }
  .boite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .univers-card {
    border-radius: 20px; overflow: hidden;
    border: 2px solid var(--beige-2);
    box-shadow: 5px 5px 0 var(--beige-2);
    transition: all 0.25s; background: var(--white);
  }
  .univers-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--beige-2); }
  .univers-card.u-green { background: var(--green); border-color: var(--green-dark); box-shadow: 5px 5px 0 var(--green-dark); }
  .univers-card.u-green:hover { box-shadow: 8px 8px 0 var(--green-dark); }
  .univers-card.u-brown { background: var(--brown); border-color: var(--brown); box-shadow: 5px 5px 0 #8f5228; }
  .univers-card.u-brown:hover { box-shadow: 8px 8px 0 #8f5228; }
  .univers-head { padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .u-green .univers-head, .u-brown .univers-head { border-bottom-color: rgba(255,255,255,0.12); }
  .univers-head .u-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .univers-head h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; color: var(--green-dark); }
  .u-green .univers-head h3, .u-brown .univers-head h3 { color: var(--white); }
  .univers-list { padding: 1rem 1.5rem 1.5rem; list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .univers-list li { font-size: 0.83rem; line-height: 1.6; color: #5a5040; display: block; }
  .u-green .univers-list li, .u-brown .univers-list li { color: rgba(255,255,255,0.82); }
  .univers-list li::before { content: "◆ "; font-size: 0.45rem; color: var(--brown); vertical-align: middle; margin-right: 2px; }
  .u-green .univers-list li::before, .u-brown .univers-list li::before { color: rgba(243,222,180,0.5); }
  .univers-list li strong { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--green-dark); display: inline; }
  .u-green .univers-list li strong, .u-brown .univers-list li strong { color: var(--beige); display: inline; }
  .boite-note { text-align: center; margin-top: 1.5rem; font-style: italic; font-size: 0.85rem; color: #8a7a60; }

  /* ========== ATELIERS POUR TOUS ========== */
  .ateliers { background: var(--beige); }
  .ateliers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .atelier-card {
    background: var(--white); border-radius: 20px;
    border: 2px solid var(--beige-2);
    box-shadow: 5px 5px 0 var(--beige-2);
    padding: 2rem; overflow: hidden; position: relative;
    transition: all 0.25s;
  }
  .atelier-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--beige-2); }
  .atelier-card.ac-green { background: var(--green); border-color: var(--green-dark); box-shadow: 5px 5px 0 var(--green-dark); }
  .atelier-card.ac-green:hover { box-shadow: 8px 8px 0 var(--green-dark); }
  .atelier-card.ac-brown { background: var(--brown); border-color: var(--brown); box-shadow: 5px 5px 0 #8f5228; }
  .atelier-card.ac-brown:hover { box-shadow: 8px 8px 0 #8f5228; }
  .ac-brown .ac-icon-wrap { background: rgba(255,255,255,0.18); box-shadow: none; }
  .ac-brown h3 { color: var(--white); }
  .ac-brown p { color: rgba(255,255,255,0.82); }
  .ac-brown .atelier-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: var(--white); }
  .atelier-card .ac-top { display: flex; align-items: center; gap: 14px; margin-bottom: 1rem; }
  .atelier-card .ac-icon-wrap {
    width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
    background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    box-shadow: 2px 2px 0 var(--beige-2);
  }
  .ac-green .ac-icon-wrap { background: rgba(255,255,255,0.18); box-shadow: none; }
  .atelier-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--green-dark); }
  .ac-green h3 { color: var(--white); }
  .atelier-card p { font-size: 0.87rem; line-height: 1.7; color: #5a5040; margin-bottom: 1rem; }
  .ac-green p { color: rgba(255,255,255,0.82); }
  .atelier-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .atelier-tag {
    background: var(--beige); border: 1px solid var(--beige-2);
    color: var(--green-dark); padding: 4px 12px; border-radius: 30px;
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  }
  .ac-green .atelier-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: var(--white); }
  .zone-info { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .zone-pill {
    display: flex; align-items: center; gap: 8px;
    background: var(--white); border: 2px solid var(--beige-2);
    border-radius: 30px; padding: 10px 20px;
    box-shadow: 3px 3px 0 var(--beige-2);
    font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--green-dark);
  }

  /* ========== GARANTIES ========== */
  .garanties { background: var(--beige-light); padding: 3rem 2rem 3.5rem; }
  .garanties-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  }
  .garantie-box {
    background: var(--white); border: 2px solid var(--beige-2); border-radius: 20px;
    box-shadow: 5px 5px 0 var(--beige-2); padding: 1.8rem 2rem;
    display: flex; align-items: center; gap: 1.2rem;
    flex: 1; min-width: 200px; max-width: 320px; transition: all 0.25s;
  }
  .garantie-box:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--beige-2); }
  .garantie-box.gb-green { background: var(--green); border-color: var(--green-dark); box-shadow: 5px 5px 0 var(--green-dark); }
  .garantie-box.gb-green:hover { box-shadow: 8px 8px 0 var(--green-dark); }
  .garantie-box.gb-brown { background: var(--brown); border-color: var(--brown); box-shadow: 5px 5px 0 #8f5228; }
  .garantie-box.gb-brown:hover { box-shadow: 8px 8px 0 #8f5228; }
  .garantie-box .gb-icon { font-size: 1.8rem; flex-shrink: 0; }
  .gb-title { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--green-dark); margin-bottom: 3px; }
  .gb-green .gb-title, .gb-brown .gb-title { color: var(--white); }
  .gb-sub { font-family: 'Montserrat', sans-serif; font-size: 0.73rem; color: #7a6a50; }
  .gb-green .gb-sub, .gb-brown .gb-sub { color: rgba(255,255,255,0.72); }

  #evenements { min-height: auto; }

  /* ========== CONTACT ========== */
  .contact { background-color: var(--green); padding: 8px 0 72px !important; margin-top: 0 !important; position: relative; z-index: 1; scroll-margin-top: 78px; }
  .contact.padded { padding-top: 60px !important; padding-bottom: 120px !important; }
  .contact .section-title { color: var(--white); margin-bottom: 0.5rem; }
  .contact .section-label { color: rgba(255,255,255,0.52); margin-bottom: 1rem; }
  .contact-grid { display: flex !important; flex-direction: row; justify-content: space-between; align-items: flex-start !important; gap: 36px; max-width: 1040px; margin: 0 auto; padding: 0 20px; }
  .contact-info, .contact-form { flex: 1; min-width: 300px; }
  .contact-info { margin-top: -8px; }
  .contact-info h2 { margin-top: 0 !important; padding-top: 0 !important; color: white !important; font-size: 32px; }
  .contact-info p { margin-bottom: 24px !important; color: white !important; }
  .contact-info, .contact-info ul, .contact-info li, .contact-info a { color: white !important; font-size: 18px !important; }
  .contact-info li { margin-bottom: 18px !important; font-size: 18px !important; color: white !important; }
  .contact-detail { margin-bottom: 12px; font-family: 'Montserrat', sans-serif; font-weight: 700; display: flex; align-items: center; gap: 10px; }
  .contact-detail .icon { font-size: 1.2rem; }
  .rc-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px; padding: 10px 16px; margin-top: 0.8rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700;
    color: rgba(255,255,255,0.9);
  }
  .qr-codes-container {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    margin-bottom: 30px;
    justify-content: flex-start;
  }
  .qr-code-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .qr-code-item p {
    margin: 0;
    line-height: 1;
    font-weight: 800;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
  }
  .qr-code-item.facebook p {
    background: linear-gradient(45deg, #0866FF 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .qr-code-item.instagram p {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-top: -2px;
  }
  .contact-intro {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: white !important;
  }
  .contact-form { background: rgba(255,255,255,0.1); border-radius: 18px; padding: 1.1rem 1.5rem 1.4rem 1.5rem; border: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 15px; margin-top: -85px; }

  /* Audience selector */
  .form-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); margin-bottom: 0.4rem; display: block; }
  .audience-selector { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
  .aud-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: transparent; color: rgba(255,255,255,0.75);
    font-family: 'Montserrat', sans-serif; font-size: 0.76rem; font-weight: 700;
    cursor: pointer !important; pointer-events: all !important;
    transition: all 0.2s; user-select: none;
    -webkit-appearance: none; appearance: none;
  }
  .aud-btn::before {
    content: ''; width: 14px; height: 14px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35); background: transparent;
    flex-shrink: 0; transition: all 0.2s;
  }
  .aud-btn.active { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.65); color: var(--white); }
  .aud-btn.active::before { border-color: var(--beige); background: var(--beige); box-shadow: inset 0 0 0 3px rgba(70,123,67,0.8); }
  .aud-btn:hover:not(.active) { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.9); }

  .form-group { margin-bottom: 0.5rem; }
  .form-group:last-of-type { margin-bottom: 0.8rem; }
  .form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); margin-bottom: 6px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.12);
    border-radius: 10px; padding: 14px 14px; color: var(--white);
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
    outline: none;
  }
  .form-group textarea { min-height: 110px; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--beige); }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-group select option { color: #333; background: #fff; }
  .btn-submit {
    width: 100%; background: var(--brown); color: var(--white);
    padding: 12px; border-radius: 12px; border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.93rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0;
    transition: background 0.2s;
  }
  .btn-submit:hover { background: var(--brown); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--green-dark); color: rgba(243,222,180,0.55);
    text-align: center; padding: 2rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.77rem;
  }
  footer strong { color: var(--beige); }
  footer a { color: rgba(243,222,180,0.55); text-decoration: none; }
  footer a:hover { color: var(--beige); }

  /* ========== ÉVÉNEMENTS PASSÉS (HORIZONTAL) ========== */
  .past-card {
    background: var(--white);
    border-left: 6px solid var(--brown);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(175,106,50,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: visible;
    margin-bottom: 2.5rem;
  }
  .past-card:hover { box-shadow: 0 12px 35px rgba(175,106,50,0.15); }
  .past-leaf-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2.2rem; opacity: 0.15; }
  .past-main { display: flex; gap: 2.5rem; align-items: stretch; }
  .past-img-wrapper {
    flex: 0 0 40%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: var(--beige-light);
  }
  .past-img-ratio { padding-top: 65%; display: block; }
  .past-img-wrapper img {
    width: 100%; height: 100%; object-fit: contain;
    position: absolute; top: 0; left: 0;
    transition: transform 0.5s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  .past-img-wrapper:hover img { transform: scale(1.05) translateZ(0); }
  .past-img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(175, 106, 50, 0.85); color: white;
    padding: 0.8rem; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
    text-align: center; transform: translateY(100%); transition: transform 0.3s ease;
  }
  .past-img-wrapper:hover .past-img-caption { transform: translateY(0); }
  
  .past-info { flex: 1; display: flex; flex-direction: column; }
  .past-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1rem; }
  .past-date { text-align: center; min-width: 60px; border-right: 3px solid var(--brown); padding-right: 1.5rem; }
  .pd-day { font-size: 2.5rem; font-weight: 900; line-height: 1; color: var(--brown); font-family: 'Montserrat', sans-serif; }
  .pd-month { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-top: 5px; color: var(--brown); font-family: 'Montserrat', sans-serif; }
  .pd-year { font-size: 1.1rem; font-weight: 800; color: var(--beige-2); margin-top: 2px; font-family: 'Montserrat', sans-serif; }
  .past-title-box { flex: 1; }
  .past-title-box h3 { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--green-dark); margin: 0 0 0.5rem; line-height: 1.3; }
  .past-location { font-size: 0.95rem; color: #8a7a60; margin: 0; display: flex; align-items: center; gap: 0.4rem; font-weight: 600; }
  .past-desc { font-family: 'Lora', serif; font-size: 1.1rem; line-height: 1.7; color: #5a5040; margin: 0 0 1.5rem; flex: 1; }
  
  .past-toggle-btn {
    margin-top: auto; width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: var(--beige-light); color: var(--brown); padding: 1rem;
    border: 2px solid var(--beige-2); border-radius: 12px;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
  }
  .past-toggle-btn:hover { background: var(--beige-2); border-color: var(--brown); }
  
  /* Details Expandables */
  .past-details-inner { padding-top: 2rem; display: flex; flex-direction: column; gap: 2.5rem; }
  .past-recap {
    font-family: 'Lora', serif; font-size: 1.1rem; line-height: 1.7; color: #4a4030; font-style: italic;
    background: linear-gradient(135deg, var(--beige-light) 0%, #fef9f0 100%);
    padding: 1.5rem; border-radius: 12px; border-left: 4px solid var(--beige-2);
  }
  .past-subtitle { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--green-dark); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
  
  /* Horizontal Gallery */
  .past-gallery-container { width: 100%; overflow: hidden; }
  .past-gallery {
    display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--beige-2) transparent;
  }
  .past-gallery::-webkit-scrollbar { height: 8px; }
  .past-gallery::-webkit-scrollbar-thumb { background: var(--beige-2); border-radius: 4px; }
  .past-gallery-item {
    flex: 0 0 280px; height: 200px; border-radius: 12px; overflow: hidden; position: relative;
    scroll-snap-align: start; box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: var(--beige-light);
  }
  .past-gallery-item img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; will-change: transform; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: translateZ(0); }
  .past-gallery-item:hover img { transform: scale(1.1) translateZ(0); }
  .past-gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0; background: rgba(70,123,67,0.85); color: white;
    padding: 0.8rem; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
    text-align: center; transform: translateY(100%); transition: transform 0.3s ease;
  }
  .past-gallery-item:hover .past-gallery-caption { transform: translateY(0); }
  
  /* Horizontal Program Grid */
  .past-program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
  .past-program-item {
    background: var(--white); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--beige-2);
    border-top: 4px solid var(--green); display: flex; align-items: flex-start; gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .past-program-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(70,123,67,0.1); }
  .ppi-icon { font-size: 2rem; flex-shrink: 0; }
  .ppi-content h5 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--green-dark); margin: 0 0 0.5rem; }
  .ppi-content p { font-family: 'Lora', serif; font-size: 0.95rem; line-height: 1.6; color: #6b5a40; margin: 0; }

  /* ========== MOBILE UPCOMING EVENTS BASE (hidden on desktop) ========== */
  .timeline-dot { display: none; }
  .upcoming-toggle-btn { display: none; }
  .past-date-badge { display: none; }

  /* ========== CARROUSEL ÉVÉNEMENTS PASSÉS ========== */
  .carousel-container {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 80px;
  }
  .carousel-wrapper {
    position: relative;
  }
  .carousel-item {
    display: none;
  }
  .carousel-item.active {
    display: block;
    animation: fadeInEvent 0.4s ease;
  }
  @keyframes fadeInEvent {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(175, 106, 50, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .carousel-arrow:hover {
    background: var(--brown);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  .carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }
  .carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(175, 106, 50, 0.5);
  }
  .carousel-arrow:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
  }
  .carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--beige-2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  .carousel-indicator:hover {
    background: var(--beige);
    transform: scale(1.2);
  }
  .carousel-indicator.active {
    background: var(--brown);
    width: 32px;
    border-radius: 6px;
  }

  /* ========== RESPONSIVE ========== */
  
  /* Tablettes et petits écrans */
  @media (max-width: 900px) {
    /* Navigation */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; min-width: 44px; min-height: 44px; }
    nav { padding: 0 1.2rem; height: 70px; }
    .nav-logo-img { height: 52px; width: 100px; }
    .nav-logo-name { font-size: 1.1rem; }
    .nav-logo-sub { font-size: 0.65rem; }
    .mobile-menu { top: 70px; padding: 1.5rem 1.2rem; }
    .mobile-menu a { padding: 14px 0; min-height: 44px; }
    
    /* Sections */
    section.padded { padding: 60px 1.5rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .section-label { font-size: 0.68rem; }
    
    /* Grilles */
    .boite-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .ateliers-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .valeurs-grid { grid-template-columns: 1fr; }
    .demarche-grid-v2 { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Contact */
    .contact-grid { flex-direction: column !important; gap: 2rem !important; padding: 0 1.2rem !important; }
    .contact-form { margin-top: 0 !important; min-width: unset !important; padding: 1.2rem 1.3rem; }
    .contact-info { min-width: unset !important; }
    .contact-info > div[style*="gap: 140px"] { gap: 1.5rem !important; }
    .contact-info h2 { font-size: 1.6rem !important; }
    .form-group input, .form-group textarea, .form-group select { padding: 16px; font-size: 16px; }
    .aud-btn { padding: 12px 18px; font-size: 0.8rem; }
    
    /* Bento services */
    .bento-services { padding: 1.2rem; gap: 1.2rem; }
    .bento-item { padding: 1.8rem; }
    .bento-item h3 { font-size: 1.2rem; }
    .icon-box { width: 44px; height: 44px; font-size: 20px; }
    
    /* Cards */
    .atelier-card { padding: 1.5rem; }
    .univers-card { margin-bottom: 0.8rem; }
    .univers-head { padding: 1.2rem 1.2rem 0.8rem; }
    .univers-list { padding: 0.8rem 1.2rem 1.2rem; }
    
    /* Garanties */
    .garantie-box { padding: 1.5rem; max-width: 100%; }
    
    /* Hero */
    .hero { padding: 90px 1.5rem 6rem; min-height: 90vh; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 4rem); }
    .hero-btns { gap: 0.8rem; }
    .btn-primary, .btn-outline { padding: 12px 24px; font-size: 0.85rem; }
    .hero-scroll { bottom: 1.5rem; }
    .hero-scroll .scroll-label { font-size: 0.7rem; letter-spacing: 0.15em; }
    /* Past Events */
    .past-main { flex-direction: column; gap: 1.5rem; }
    .past-img-wrapper { flex: auto; max-width: 100%; }
    .past-img-ratio { padding-top: 55%; }
    .past-header { flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; margin-bottom: 1.5rem; }
    .past-date { border-right: none; border-bottom: 2px solid var(--brown); padding-right: 0; padding-bottom: 0.8rem; display: flex; align-items: baseline; gap: 0.5rem; justify-content: center; }
    .pd-day { font-size: 1.8rem; }
    .pd-month { font-size: 0.85rem; }
    .pd-year { font-size: 0.85rem; }
    .past-title-box h3 { font-size: 1.4rem; text-align: center; }
    .past-location { justify-content: center; }
    .past-desc { font-size: 1.05rem; text-align: center; }
    .past-gallery-item { flex: 0 0 240px; height: 180px; }
    .past-program-grid { grid-template-columns: 1fr; }
    
    /* Carrousel */
    .carousel-container { padding: 0 60px; }
    .carousel-arrow { width: 45px; height: 45px; }
    .carousel-prev { left: 5px; }
    .carousel-next { right: 5px; }
    
    /* Contact */
    .contact.padded { padding: 50px 1.2rem 80px !important; }
    .contact-form { padding: 1rem 1.2rem; }
    .contact-intro { font-size: 15px; margin-bottom: 20px; }
    .qr-codes-container { gap: 2rem; margin-bottom: 20px; }
    .qr-code-item img { width: 100px; height: 100px; }
    .qr-code-item p { font-size: 13px; }
    .contact-detail { font-size: 0.9rem; }
    .rc-badge { font-size: 0.72rem; padding: 8px 12px; }
    .form-label { font-size: 0.68rem; }
    .audience-selector { gap: 0.4rem; }
    .aud-btn { padding: 10px 14px; font-size: 0.74rem; }
    .btn-submit { font-size: 0.85rem; padding: 14px; }
    
    /* Footer */
    footer { padding: 1.5rem 1.2rem; font-size: 0.72rem; }
  }
  
  /* Smartphones */
  @media (max-width: 768px) {
    /* Typographie globale */
    body { font-size: 16px; }
    p { font-size: 16px; line-height: 1.75; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    
    /* Navigation */
    nav { height: 65px; padding: 0 1rem; }
    .nav-logo-img { height: 48px; width: 90px; }
    .nav-logo-name { font-size: 1rem; }
    .mobile-menu { top: 65px; }
    
    /* Désactiver les dropdowns sur mobile (tout passe par le menu hamburger) */
    .dropdown { display: none !important; }
    
    /* Sections */
    section.padded { padding: 50px 1.2rem; }
    .section-title { margin-bottom: 1.2rem; }
    .section-inner { padding: 0; }
    
    /* Hero */
    .hero { padding: 80px 1.2rem 5rem; min-height: 85vh; }
    .hero-badge { font-size: 0.68rem; padding: 5px 14px; margin-bottom: 1.2rem; }
    .hero h1 { font-size: clamp(2rem, 12vw, 3.5rem); margin-bottom: 0.6rem; }
    .hero h2 { font-size: clamp(0.9rem, 3vw, 1.2rem); margin-bottom: 1.5rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
    
    /* Ticker */
    .ticker { padding: 11px 0; }
    .ticker-inner span { font-size: 0.75rem; }
    
    /* Bento Services */
    .bento-services { padding: 1rem; gap: 1rem; }
    .bento-item { padding: 1.5rem; border-radius: 18px; }
    .bento-item h3 { font-size: 1.1rem; padding-bottom: 8px; margin-bottom: 10px; }
    .bento-item p { font-size: 0.9rem; }
    .stages-card .stages-row { flex-direction: column; gap: 1.5rem; }
    .stages-card .stages-badge { min-width: 100px; padding: 1.2rem; }
    
    /* Démarche */
    .pillier { padding: 1.1rem 1.2rem; }
    .pillier h4 { font-size: 0.85rem; }
    .pillier p { font-size: 0.78rem; }
    .demarche-visual { padding: 1.3rem; }
    .demarche-visual .big-emoji { font-size: 3rem; margin-bottom: 1rem; }
    .valeur { padding: 0.6rem 0.9rem; }
    .valeur .vi { font-size: 1.1rem; }
    .valeur span { font-size: 0.75rem; }
    
    /* Boîte à idées */
    .boite-grid { gap: 1rem; margin-top: 2rem; }
    .univers-head { padding: 1.2rem; }
    .univers-head .u-icon { font-size: 1.7rem; }
    .univers-head h3 { font-size: 0.95rem; }
    .univers-list { padding: 0.8rem 1.2rem 1.2rem; gap: 0.6rem; }
    .univers-list li { font-size: 0.8rem; }
    .univers-list li strong { font-size: 0.75rem; }
    
    /* Ateliers */
    .ateliers-grid { gap: 1rem; margin-top: 2rem; }
    .atelier-card { padding: 1.3rem; border-radius: 16px; }
    .atelier-card .ac-icon-wrap { width: 48px; height: 48px; font-size: 1.4rem; }
    .atelier-card h3 { font-size: 1rem; }
    .atelier-card p { font-size: 0.85rem; }
    .atelier-tag { font-size: 0.68rem; padding: 4px 10px; }
    .zone-info { margin-top: 2rem; gap: 0.8rem; }
    .zone-pill { padding: 8px 16px; font-size: 0.75rem; }
    
    /* Qui suis-je */
    .qui-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .qui-photo img { max-height: 350px; box-shadow: 6px 6px 0 var(--green); }
    .qui-text p { font-size: 0.95rem !important; }
    .qui-text p:not(:first-child) { font-size: 0.9rem !important; }
    .qui-text p:last-child { font-size: 0.85rem !important; }
    
    /* Événements */
    .events-preview-section { padding: 3.5rem 1.2rem; }
    .events-preview-header { margin-bottom: 2rem; }
    .events-preview-header h2 { font-size: 1.8rem; }
    .events-preview-header p { font-size: 0.95rem; }
    .events-badge { font-size: 0.8rem; padding: 0.4rem 1.2rem; }
    .events-cta-btn { padding: 0.9rem 1.8rem; font-size: 0.9rem; }
    
    /* Garanties */
    .garanties { padding: 2.5rem 1.2rem; }
    .garantie-box { padding: 1.3rem 1.5rem; min-width: auto; }
    .garantie-box .gb-icon { font-size: 1.5rem; }
    .gb-title { font-size: 0.85rem; }
    .gb-sub { font-size: 0.7rem; }
    
    /* ========== ÉVÉNEMENTS À VENIR — TIMELINE MOBILE ========== */
    #upcoming-events-container {
      padding-left: 30px !important;
      gap: 0 !important;
      position: relative;
    }
    #upcoming-events-container::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--green), var(--beige-2));
      border-radius: 2px;
    }
    #upcoming-events-container .timeline-dot {
      display: block !important;
      position: absolute;
      left: -30px;
      top: 1.2rem;
      width: 16px;
      height: 16px;
      background: var(--green);
      border: 3px solid var(--white);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--green);
      z-index: 1;
    }
    .upcoming-card {
      border-left: 3px solid var(--green) !important;
      padding: 1.2rem !important;
      margin-bottom: 1rem !important;
      flex-direction: column !important;
      gap: 0.8rem !important;
      border-radius: 14px !important;
      box-shadow: 0 3px 12px rgba(70,123,67,0.08) !important;
    }
    .upcoming-card:hover {
      transform: none !important;
    }
    .upcoming-date {
      border-right: none !important;
      padding-right: 0 !important;
      flex-direction: row !important;
      align-items: baseline !important;
      gap: 0.5rem !important;
      min-width: unset !important;
    }
    .upcoming-day { font-size: 1.6rem !important; }
    .upcoming-month { font-size: 0.78rem !important; margin-top: 0 !important; }
    .upcoming-year { font-size: 0.78rem !important; margin-top: 0 !important; }
    .upcoming-content {
      min-width: unset !important;
    }
    .upcoming-content h3 { font-size: 1.15rem !important; margin-bottom: 0.3rem !important; }
    .upcoming-location { font-size: 0.82rem !important; margin-bottom: 0.6rem !important; }
    .upcoming-toggle-btn {
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      width: 100%;
      padding: 0.65rem;
      background: var(--beige-light);
      border: 2px solid var(--beige-2);
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .upcoming-card.expanded .upcoming-toggle-btn {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
    }
    .upcoming-details-wrap {
      max-height: 0 !important;
      overflow: hidden !important;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding-top: 0;
    }
    .upcoming-card.expanded .upcoming-details-wrap {
      max-height: 2000px !important;
      overflow: visible !important;
      padding-top: 0.8rem;
    }
    .upcoming-badges {
      display: none !important;
    }
    .upcoming-card.expanded .upcoming-badges {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      gap: 0.5rem !important;
      min-width: unset !important;
    }
    .upcoming-card.expanded .upcoming-badge {
      padding: 7px 11px !important;
      font-size: 0.72rem !important;
    }

    /* ========== ÉVÉNEMENTS PASSÉS — REFONTE MOBILE ========== */
    .past-card {
      padding: 0 !important;
      border-left: none !important;
      border-radius: 16px !important;
      overflow: hidden !important;
      margin-bottom: 0.5rem;
    }
    .past-leaf-icon { display: none !important; }
    .past-img-wrapper {
      border-radius: 0 !important;
      max-width: 100% !important;
      flex: auto !important;
    }
    .past-img-ratio { padding-top: 50% !important; }
    .past-img-wrapper img { object-fit: cover !important; }
    .past-date-badge {
      display: block !important;
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(175, 106, 50, 0.92);
      color: white;
      padding: 6px 14px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      z-index: 2;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      letter-spacing: 0.5px;
    }
    .past-date { display: none !important; }
    .past-header {
      flex-direction: column !important;
      align-items: flex-start !important;
      text-align: left !important;
      gap: 0.3rem !important;
      margin-bottom: 0.6rem !important;
    }
    .past-info { padding: 1.2rem !important; }
    .past-title-box h3 {
      font-size: 1.15rem !important;
      text-align: left !important;
    }
    .past-location {
      justify-content: flex-start !important;
      font-size: 0.82rem !important;
    }
    .past-desc {
      font-size: 0.9rem !important;
      line-height: 1.6 !important;
      text-align: left !important;
      margin-bottom: 1rem !important;
    }
    .past-toggle-btn {
      font-size: 0.82rem !important;
      padding: 0.75rem !important;
      border-radius: 10px !important;
    }
    .past-details-inner {
      padding: 0 1.2rem 1.2rem !important;
      gap: 1.5rem !important;
    }
    .past-recap {
      font-size: 0.88rem !important;
      line-height: 1.6 !important;
      padding: 1rem !important;
    }
    .past-subtitle {
      font-size: 1.05rem !important;
      margin-bottom: 0.8rem !important;
    }
    /* Programme → empilé verticalement sur mobile */
    .past-program-grid {
      display: flex !important;
      flex-direction: column !important;
      overflow-x: visible !important;
      gap: 0.8rem !important;
      padding-bottom: 0.8rem;
    }
    .past-program-item {
      flex: none !important;
      width: 100% !important;
      border-top-width: 3px !important;
      padding: 1.1rem !important;
    }
    .past-program-item:hover { transform: none !important; }
    .ppi-icon { font-size: 1.5rem !important; }
    .ppi-content h5 { font-size: 0.92rem !important; }
    .ppi-content p { font-size: 0.8rem !important; line-height: 1.5 !important; }
    /* Galerie mobile — pleine largeur */
    .past-gallery {
      flex-direction: column !important;
      overflow-x: visible !important;
      gap: 1rem !important;
      padding-bottom: 0.5rem !important;
    }
    .past-gallery-item {
      flex: none !important;
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 16 / 10;
      border-radius: 10px !important;
      cursor: pointer;
    }
    .past-gallery-item img { object-fit: cover !important; }
    .past-gallery-caption {
      transform: translateY(0) !important;
      font-size: 0.75rem !important;
      padding: 0.5rem !important;
    }
    /* CTA mobile */
    .past-cta-container { padding: 0; margin-top: 0.8rem; margin-bottom: 0.5rem; }
    .past-cta-container .btn-primary {
      display: block !important;
      box-sizing: border-box !important;
      max-width: 100% !important;
      width: 100% !important;
      font-size: 0.75rem !important;
      padding: 0.8rem 1rem !important;
      white-space: normal !important;
      text-align: center;
      line-height: 1.4;
      word-break: break-word;
      overflow: hidden;
    }

    /* Carrousel mobile — swipe, pas de flèches */
    .carousel-container { padding: 0; }
    .carousel-arrow { display: none !important; }
    .carousel-indicators { margin-top: 1.2rem; }
    
    /* Contact */
    .contact.padded { padding: 50px 1.2rem 80px !important; }
    .contact-form { padding: 1rem 1.2rem; }
    .contact-intro { font-size: 15px; margin-bottom: 20px; }
    .qr-codes-container { gap: 2rem; margin-bottom: 20px; }
    .qr-code-item img { width: 100px; height: 100px; }
    .qr-code-item p { font-size: 13px; }
    .contact-detail { font-size: 0.9rem; }
    .rc-badge { font-size: 0.72rem; padding: 8px 12px; }
    .form-label { font-size: 0.68rem; }
    .audience-selector { gap: 0.4rem; }
    .aud-btn { padding: 10px 14px; font-size: 0.74rem; }
    .btn-submit { font-size: 0.85rem; padding: 14px; }
    
    /* Footer */
    footer { padding: 1.5rem 1.2rem; font-size: 0.72rem; }
  }
  
  /* Petits smartphones */
  @media (max-width: 480px) {
    /* Hero */
    .hero { padding: 75px 1rem 4rem; }
    .hero h1 { font-size: clamp(1.8rem, 14vw, 3rem); }
    .hero h2 { font-size: clamp(0.85rem, 4vw, 1.1rem); }
    .hero p { font-size: 0.9rem; line-height: 1.65; }
    .hero-scroll .scroll-label { font-size: 0.6rem; }
    .hero-scroll .scroll-arrow { font-size: 1.5rem; }
    
    /* Sections */
    section.padded { padding: 40px 1rem; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .section-label { font-size: 0.65rem; }
    
    /* Navigation */
    nav { padding: 0 0.8rem; height: 60px; }
    .nav-logo-img { height: 44px; width: 80px; }
    .nav-logo-name { font-size: 0.95rem; }
    .nav-logo-sub { font-size: 0.6rem; }
    .mobile-menu { top: 60px; padding: 1.2rem 1rem; }
    .hamburger { min-width: 40px; min-height: 40px; }
    
    /* Bento */
    .bento-services { padding: 0.8rem; gap: 0.8rem; }
    .bento-item { padding: 1.2rem; }
    .bento-item h3 { font-size: 1rem; }
    .icon-box { width: 40px; height: 40px; font-size: 18px; margin-bottom: 14px; }
    
    /* Cards */
    .atelier-card, .univers-card { border-radius: 14px; }
    .atelier-card { padding: 1.2rem; }
    .univers-head { padding: 1rem; }
    .univers-list { padding: 0.7rem 1rem 1rem; }
    
    /* Qui suis-je */
    .qui-photo img { max-height: 300px; box-shadow: 5px 5px 0 var(--green); border-radius: 16px; }
    .qui-text p { font-size: 0.9rem !important; }
    .qui-text p:not(:first-child) { font-size: 0.85rem !important; }
    .qui-text p:last-child { font-size: 0.8rem !important; }
    
    /* Événements */
    .events-preview-section { padding: 3rem 1rem; }
    .events-preview-header h2 { font-size: 1.6rem; }
    .events-preview-header p { font-size: 0.9rem; }
    .events-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
    .events-cta-btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; }
    
    /* Garanties */
    .garanties { padding: 2rem 1rem; }
    .garanties-inner { flex-direction: column; align-items: stretch; }
    .garantie-box { flex-direction: row; text-align: left; padding: 1.2rem; max-width: 100%; width: 100%; }
    .garantie-box .gb-icon { margin-bottom: 0; }
    
    /* Contact */
    .contact-form { padding: 0.9rem 1rem; }
    .contact-intro { font-size: 14px; line-height: 1.4; }
    .qr-codes-container { gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
    .qr-code-item img { width: 85px; height: 85px; }
    .qr-code-item p { font-size: 12px; }
    .contact-detail { font-size: 0.85rem; margin-bottom: 6px; }
    .rc-badge { font-size: 0.68rem; padding: 7px 10px; }
    .form-group input, .form-group textarea { padding: 14px; }
    .aud-btn { padding: 9px 12px; font-size: 0.7rem; }
    
    /* Boutons */
    .btn-primary { padding: 11px 20px; font-size: 0.8rem; }
    .btn-outline { padding: 10px 18px; font-size: 0.8rem; }
    
    /* Événements petits écrans */
    #upcoming-events-container {
      padding-left: 24px !important;
    }
    #upcoming-events-container::before {
      left: 7px;
    }
    #upcoming-events-container .timeline-dot {
      left: -24px !important;
      width: 14px !important;
      height: 14px !important;
    }
    .upcoming-card {
      padding: 1rem !important;
    }
    .upcoming-day { font-size: 1.4rem !important; }
    .upcoming-content h3 { font-size: 1.05rem !important; }
    .upcoming-location { font-size: 0.78rem !important; }
    .upcoming-toggle-btn { font-size: 0.75rem !important; padding: 0.55rem !important; }
    .past-program-item {
      flex: none !important;
      width: 100% !important;
      padding: 1rem !important;
    }
    .ppi-content h5 { font-size: 0.85rem !important; }
    .ppi-content p { font-size: 0.75rem !important; }
    .past-gallery-item {
      flex: none !important;
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 16 / 10;
    }
    .past-img-ratio { padding-top: 55% !important; }
    .past-title-box h3 { font-size: 1.05rem !important; }
    .past-desc { font-size: 0.85rem !important; }
    .past-recap { font-size: 0.82rem !important; }

    /* Carrousel petits écrans */
    .carousel-container { padding: 0; }
    .carousel-arrow { display: none !important; }
    .carousel-indicators { gap: 7px; }
    .carousel-indicator { width: 10px; height: 10px; }
    .carousel-indicator.active { width: 26px; }
  }

  /* Overlay zoom galerie (mobile) */
  .gallery-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
    animation: fadeInOverlay 0.25s ease;
  }
  .gallery-overlay img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  .gallery-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  @keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hbb {
    position: absolute;
    border-radius: 50%; overflow: hidden;
    border: 4px solid rgba(243,222,180,0.30);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    opacity: 0.35;
    animation: hbbFloat 10s ease-in-out infinite;
    transition: all 0.4s ease;
    pointer-events: auto; cursor: pointer;
  }
  .hbb img { width: 100%; height: 100%; object-fit: cover; transition: all 0.4s ease; }
  .hbb .bubble-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.52rem; color: white; text-align: center;
    padding: 3px 5px; opacity: 0; transition: all 0.3s ease;
    font-weight: 700; line-height: 1.15;
    -webkit-text-stroke: 0.3px black;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.8);
    z-index: 5; background: transparent; max-width: 95%;
  }
  .hbb:hover { opacity: 1 !important; transform: scale(2.5) !important; z-index: 1000 !important; box-shadow: 0 25px 50px rgba(0,0,0,0.9) !important; animation-play-state: paused; }
  .hbb:hover img { filter: brightness(1.15); transform: scale(1) translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
  .hbb:hover .bubble-text { opacity: 1; }
  .hbb:nth-child(1) { width:140px; height:140px; top:16%;   left:8%;   animation-delay:0s; }
  .hbb:nth-child(2) { width:120px; height:120px; top:55%;  left:4%;   animation-delay:2s;  opacity:0.30; }
  .hbb:nth-child(3) { width:125px; height:125px; top:33%;  left:23%; animation-delay:5s;  opacity:0.27; }
  .hbb:nth-child(4) { width:110px; height:110px; top:70%; left:14%;  animation-delay:7s;  opacity:0.24; }
  .hbb:nth-child(5) { width:150px; height:150px; top:20%;   right:10%;  animation-delay:1s; }
  .hbb:nth-child(6) { width:125px; height:125px; top:48%;  right:6%;animation-delay:3.5s;opacity:0.30; }
  .hbb:nth-child(7) { width:130px; height:130px; top:65%;  right:20%;animation-delay:6s;  opacity:0.27; }
  .hbb:nth-child(8) { width:115px; height:115px; top:50%; left:66%; animation-delay:8.5s;opacity:0.24; }
  @keyframes hbbFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    40%     { transform: translateY(-16px) rotate(2deg); }
    70%     { transform: translateY(-6px) rotate(-1deg); }
  }
  /* Optimisation bulles hero sur mobile */
  @media (max-width: 900px) {
    .hbb { border-width: 3px; }
    .hbb:nth-child(1) { width: 110px; height: 110px; }
    .hbb:nth-child(2) { width: 95px; height: 95px; }
    .hbb:nth-child(3) { width: 100px; height: 100px; }
    .hbb:nth-child(4) { width: 85px; height: 85px; }
    .hbb:nth-child(5) { width: 115px; height: 115px; }
    .hbb:nth-child(6) { width: 100px; height: 100px; }
    .hbb:nth-child(7) { width: 105px; height: 105px; }
    .hbb:nth-child(8) { width: 90px; height: 90px; }
    .hbb:hover { transform: scale(2.2) !important; }
  }
  @media (max-width: 768px) {
    .hbb:nth-child(3), .hbb:nth-child(4), .hbb:nth-child(7), .hbb:nth-child(8) { display: none; }
    .hbb:nth-child(1) { width: 85px; height: 85px; top: 15%; left: 6%; }
    .hbb:nth-child(2) { width: 75px; height: 75px; top: 60%; left: 4%; }
    .hbb:nth-child(5) { width: 90px; height: 90px; top: 18%; right: 6%; }
    .hbb:nth-child(6) { width: 80px; height: 80px; top: 55%; right: 4%; }
    .hbb:hover { transform: scale(2) !important; }
    .hbb .bubble-text { font-size: 0.48rem; }
  }
  @media (max-width: 480px) {
    .hbb:nth-child(2), .hbb:nth-child(6) { display: none; }
    .hbb:nth-child(1) { width: 70px; height: 70px; }
    .hbb:nth-child(5) { width: 75px; height: 75px; }
  }
  .stages-card { grid-column: 1 / -1 !important; }
  .stages-card .stages-row { display:flex; align-items:center; gap:2.5rem; }
  .stages-card .stages-text { flex:1; }
  .stages-card .stages-badge {
    flex-shrink:0; display:flex; flex-direction:column; align-items:center;
    gap:0.5rem; padding:1.5rem; background:rgba(255,255,255,0.1);
    border-radius:16px; border:1px solid rgba(255,255,255,0.15); min-width:120px;
  }
  .stages-card .stages-badge .sb-icon { font-size:3rem; }
  .stages-card .stages-badge span { font-family:'Montserrat',sans-serif; font-size:0.72rem; font-weight:700; color:rgba(255,255,255,0.75); text-align:center; text-transform:uppercase; letter-spacing:0.08em; }
  @media(max-width:700px){ .stages-card .stages-row { flex-direction:column; } }

  /* ========== DEMARCHE V2 ========== */
  .demarche-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
  .demarche-intro {
    color: rgba(243,222,180,0.65); font-size: 0.85rem; font-style: italic;
    margin-top: 0.5rem; margin-bottom: 1.2rem;
  }
  @media (max-width: 900px) { .demarche-grid-v2 { grid-template-columns: 1fr; gap: 2rem; } }

  /* ========== KIT PAGES ========== */
  .kit-page-hero {
    background:
      radial-gradient(ellipse at 25% 85%, rgba(70,123,67,0.25) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(175,106,50,0.12) 0%, transparent 45%),
      radial-gradient(ellipse at 50% 50%, rgba(60,100,58,0.18) 0%, transparent 60%),
      linear-gradient(160deg, rgba(28,55,27,0.99) 0%, rgba(40,72,38,0.96) 60%, rgba(28,55,27,0.99) 100%);
    background-color: #1a361a;
    padding: 85px 2rem 40px; text-align: center;
    position: relative; overflow: hidden;
  }
  .kit-page-hero.has-bg-image {
    background-color: var(--green-dark);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .kit-page-hero.has-bg-rotated {
    background-image: none !important;
  }
  .kit-page-hero.has-bg-rotated::before {
    content: '';
    position: absolute; top: -20%; left: -10%; width: 120%; height: 140%;
    background-image: var(--bg-img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
    transform: rotate(-5deg);
    z-index: 0;
  }
  .kit-page-hero .hero-bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .kit-page-hero .hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(44,79,42,0.88) 0%, rgba(44,79,42,0.65) 50%, rgba(44,79,42,0.85) 100%);
    z-index: 1;
  }
  .kit-page-hero.has-bg-image > *:not(.hero-bg-img):not(.hero-overlay) {
    position: relative; z-index: 2;
  }
  .kit-page-hero .breadcrumb {
    font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: rgba(243,222,180,0.52); margin-bottom: 0.6rem;
  }
  .kit-page-hero .breadcrumb a { color: rgba(243,222,180,0.55); text-decoration: none; transition: color 0.2s; }
  .kit-page-hero .breadcrumb a:hover { color: var(--beige); }
  .kit-page-hero .breadcrumb span,
  .kit-page-hero .breadcrumb > *:last-child:not(a) { color: var(--beige); font-weight: 800; }
  .kit-page-hero .kit-icon { font-size: 4.5rem; display: block; margin: 0 auto 0.4rem; width: 60px; height: 60px; }
  .kit-page-hero h1 {
    font-family: 'Nunito', sans-serif; font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--beige); line-height: 1.08; margin-bottom: 0.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .kit-page-hero h1 .accent { color: var(--brown); }
  .kit-page-hero .hero-sub {
    font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 600;
    color: rgba(243,222,180,0.68); letter-spacing: 0.06em; margin-bottom: 0.8rem;
  }
  .kit-page-hero .hero-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hero-tag {
    background: rgba(243,222,180,0.12); border: 1px solid rgba(243,222,180,0.25);
    color: rgba(243,222,180,0.82); padding: 6px 16px; border-radius: 30px;
    font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .kit-content { max-width: 900px; margin: 0 auto; padding: 72px 2rem 80px; }
  .kit-desc {
    background: var(--white); border-radius: 22px;
    border: 2px solid var(--beige-2); box-shadow: 6px 6px 0 var(--beige-2);
    padding: 2.5rem 3rem; margin-bottom: 2rem;
  }
  .kit-desc h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 1.3rem; color: var(--green-dark);
    margin-bottom: 1rem; padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--beige-2);
  }
  .kit-desc p { font-size: 0.96rem; line-height: 1.82; color: #5a5040; margin-bottom: 1rem; }
  .kit-desc p:last-child { margin-bottom: 0; }
  .kit-included { background: var(--green); border-radius: 22px; padding: 2.5rem 3rem; margin-bottom: 2rem; }
  .kit-included h2 {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: 1.3rem; color: var(--beige);
    margin-bottom: 1.2rem; padding-bottom: 0.7rem;
    border-bottom: 2px solid rgba(243,222,180,0.2);
  }
  .kit-included ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
  .kit-included ul li { font-size: 0.92rem; color: rgba(243,222,180,0.88); line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
  .kit-included ul li::before { content: "✅"; flex-shrink: 0; margin-top: 1px; }
  .kit-infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 2rem; }
  .kit-info-box { background: var(--beige-light); border: 2px solid var(--beige-2); border-radius: 16px; padding: 1.4rem 1.8rem; box-shadow: 4px 4px 0 var(--beige-2); }
  .kit-info-box .info-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brown); margin-bottom: 0.4rem; }
  .kit-info-box .info-val { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--green-dark); }
  .kit-cta { background: var(--brown); border-radius: 22px; padding: 2.5rem 3rem; text-align: center; }
  .kit-cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--white); margin-bottom: 0.8rem; }
  .kit-cta p { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .kit-back { display: inline-flex; align-items: center; gap: 7px; color: rgba(243,222,180,0.62); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2rem; transition: color 0.2s; }
  .kit-back:hover { color: var(--beige); }

  /* Kit photos placeholders */
  .kit-photos { margin-bottom: 2rem; }
  .kit-photos h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 2px solid var(--beige-2); }
  .kit-photos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .kit-photo-placeholder {
    background: var(--beige); border-radius: 14px; aspect-ratio: 4/3;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
    border: 2px dashed var(--beige-2); color: #8a7050;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  }
  .kit-photo-placeholder .ph-icon { font-size: 2rem; }

  /* Kit avis clients */
  .kit-avis { margin-bottom: 2rem; }
  .kit-avis-header { margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 2px solid var(--beige-2); }
  .kit-avis-header h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.3rem; }
  .kit-avis-header p { font-size: 0.85rem; color: #8a7050; font-style: italic; font-family: 'Lora', serif; }
  .kit-avis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }
  .kit-avis-card { background: var(--white); border-radius: 16px; border: 2px solid var(--beige-2); padding: 1.5rem; box-shadow: 4px 4px 0 var(--beige-2); }
  .kit-avis-stars { color: var(--brown); font-size: 1.1rem; margin-bottom: 0.6rem; letter-spacing: 2px; }
  .kit-avis-text { font-family: 'Lora', serif; font-style: italic; font-size: 0.88rem; color: #7a6a50; line-height: 1.7; margin-bottom: 0.8rem; }
  .kit-avis-author { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.08em; }
  .kit-avis-cta { text-align: center; padding: 1.2rem; background: var(--beige-light); border-radius: 12px; border: 2px dashed var(--beige-2); }
  .kit-avis-cta p { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; color: #7a6a50; margin-bottom: 0.6rem; }

  /* Kits responsive */
  @media (max-width: 768px) {
    .kit-page-hero { padding: 90px 1.2rem 30px; }
    .kit-page-hero.has-bg-image { padding-top: 85px !important; padding-bottom: 25px !important; }
    .kit-page-hero .kit-icon { width: 60px; height: 60px; }
    .kit-page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.4rem); }
    .kit-page-hero .hero-sub { font-size: 0.78rem; margin-bottom: 1.2rem; }
    .kit-page-hero .hero-tags { gap: 6px; }
    .hero-tag { font-size: 0.68rem; padding: 5px 12px; }
    .kit-content { padding: 40px 1.2rem 60px; }
    .kit-desc, .kit-included { padding: 1.8rem 1.5rem; border-radius: 18px; }
    .kit-desc h2, .kit-included h2 { font-size: 1.1rem; }
    .kit-desc p { font-size: 0.9rem; }
    .kit-included ul li { font-size: 0.87rem; }
    .kit-infos-grid, .kit-photos-grid, .kit-avis-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .kit-info-box { padding: 1.2rem 1.5rem; }
    .kit-cta { padding: 2rem 1.5rem; }
    .kit-cta h2 { font-size: 1.1rem; }
  }
  @media (max-width: 480px) {
    .kit-page-hero { padding: 80px 1rem 25px; }
    .kit-page-hero.has-bg-image { padding-top: 75px !important; padding-bottom: 18px !important; }
    .kit-page-hero .kit-icon { width: 50px; height: 50px; }
    .kit-page-hero h1 { font-size: clamp(1.3rem, 5.5vw, 2rem); margin-bottom: 0.6rem; }
    .kit-page-hero .hero-sub { font-size: 0.74rem; margin-bottom: 1rem; }
    .kit-content { padding: 30px 1rem 50px; }
    .kit-desc, .kit-included { padding: 1.5rem 1.2rem; }
    .kit-cta { padding: 1.5rem 1.2rem; }
  }

  /* ========== EVENTS HERO RESPONSIVE ========== */
  .events-hero { scroll-margin-top: 78px; }
  @media (max-width: 768px) {
    .events-hero {
      margin-top: 65px !important;
      height: 200px !important;
      background-size: 110% auto !important;
      background-position: center -20px !important;
    }
    .events-hero h1 {
      font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    .events-hero > div:last-child {
      gap: 0.8rem !important;
    }
    .btn-event {
      padding: 0.5rem 1rem !important;
      font-size: 0.72rem !important;
      gap: 0.4rem !important;
    }
    .btn-event span {
      font-size: 1rem;
    }
  }
  @media (max-width: 480px) {
    .events-hero {
      margin-top: 60px !important;
      height: 180px !important;
      background-size: 130% auto !important;
      background-position: center -10px !important;
    }
    .events-hero h1 {
      font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
      margin-bottom: 10px !important;
    }
    .events-hero > div:last-child {
      gap: 0.5rem !important;
    }
    .btn-event {
      padding: 0.45rem 0.8rem !important;
      font-size: 0.65rem !important;
      gap: 0.3rem !important;
      border-radius: 6px !important;
    }
    .btn-event span {
      font-size: 0.9rem;
    }
  }

  /* ========== FOOTER SAFE AREA ========== */
  footer {
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* ========== MOBILE UX (smartphone — le desktop reste inchangé) ========== */
  @media (max-width: 768px) {
    input, select, textarea { font-size: 16px !important; }
    [id] { scroll-margin-top: 72px; }
    .nav-logo { min-width: 0; max-width: calc(100% - 52px); }
    .nav-logo > div:last-child { min-width: 0; overflow: hidden; }
    .nav-logo-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 11rem; }
    .btn-primary, .btn-outline { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .hero-bg-bubbles { pointer-events: none; }
    .hbb { pointer-events: none; opacity: 0.22 !important; animation: none; }
    .garanties-inner { flex-direction: column; align-items: stretch; gap: 0.8rem; }
    .garantie-box { width: 100%; max-width: 100%; }
  }

  @media (max-width: 480px) {
    [id] { scroll-margin-top: 68px; }
    .nav-logo-sub { display: none; }
    .nav-logo-name { max-width: 9.5rem; font-size: 0.95rem; }
    .ticker-inner { gap: 2.5rem; }
  }

  @media (hover: none) and (pointer: coarse) {
    .hbb:hover { transform: none !important; opacity: 0.22 !important; }
    .bento-item:hover { transform: none; box-shadow: 5px 5px 0 var(--beige-2); }
    .kits:hover, .stages:hover { box-shadow: 5px 5px 0 var(--green-dark); }
    .interventions:hover { box-shadow: 5px 5px 0 #8f5228; }
    .atelier-card:hover { transform: none; }
  }
