:root {
    --navy: #0d2137;
    --teal: #1a7a80;
    --teal-light: #2aa8af;
    --sand: #e8dcc8;
    --sand-light: #f5f0e8;
    --gold: #c9a84c;
    --white: #fafaf8;
    --text: #1a2332;
    --text-muted: #5a6a7a;
    --wave: #d4eef0;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(13, 33, 55, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
  }

  .nav-brand {
    display: flex; flex-direction: column;
    text-decoration: none;
  }
  .nav-brand .brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.02em;
    line-height: 1.1;
  }
  .nav-brand .brand-sub {
    font-size: 0.65rem; font-weight: 300;
    color: var(--teal-light); letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 0.3rem; list-style: none;
  }
  .nav-links a {
    display: block; padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.05em;
    border-radius: 6px; transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--white); background: rgba(42,168,175,0.2);
  }

  .nav-cta {
    background: var(--teal) !important; color: var(--white) !important;
    border-radius: 20px !important; padding: 0.45rem 1.2rem !important;
    font-weight: 500 !important;
  }
  .nav-cta:hover { background: var(--teal-light) !important; }

  /* ── HERO ── */
  #accueil {
    min-height: 100vh;
    background: var(--navy);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 30%, rgba(26,122,128,0.25) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 60%);
  }

  .wave-svg {
    position: absolute; bottom: 0; left: 0; right: 0;
    opacity: 0.12;
  }

  .hero-content {
    position: relative; z-index: 2;
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 4rem 2rem 2rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--teal-light);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title em { font-style: italic; color: var(--teal-light); }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300; font-style: italic;
    color: var(--sand); margin-bottom: 2rem;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-desc {
    max-width: 540px; font-size: 0.95rem; line-height: 1.7;
    color: rgba(255,255,255,0.6); margin-bottom: 3rem;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .btn-primary {
    display: inline-block; padding: 0.9rem 2.2rem;
    background: var(--teal); color: var(--white);
    text-decoration: none; font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.06em; border-radius: 40px;
    transition: all 0.25s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,128,0.4); }

  .btn-outline {
    display: inline-block; padding: 0.9rem 2.2rem;
    background: transparent; color: var(--white);
    text-decoration: none; font-size: 0.88rem; font-weight: 400;
    letter-spacing: 0.06em; border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s; cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

  .hero-stats {
    position: relative; z-index: 2;
    display: flex; justify-content: center; gap: 0;
    padding: 2rem 3rem 3rem;
    animation: fadeUp 0.8s 0.5s ease both;
  }

  .stat {
    text-align: center; padding: 1rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat:last-child { border-right: none; }
  .stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; color: var(--gold);
    display: block; line-height: 1;
  }
  .stat .label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); display: block; margin-top: 0.4rem;
  }

  /* ── SECTIONS COMMUNES ── */
  .section { padding: 6rem 3rem; }
  .section-alt { background: var(--sand-light); }

  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-eyebrow {
    font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--teal);
    display: block; margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
    color: var(--navy); line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-sep {
    width: 50px; height: 2px; background: var(--gold);
    margin: 1.5rem auto 0;
  }

  .container { max-width: 1100px; margin: 0 auto; }

  /* ── PLANNING ── */
  .planning-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .session-card {
    background: var(--white);
    border: 1px solid rgba(26,122,128,0.15);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s; position: relative;
  }
  .session-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,33,55,0.1); }

  .session-card .card-top {
    background: var(--navy); padding: 1.4rem 1.5rem 1.2rem;
    position: relative;
  }
  .session-card .card-top::after {
    content: ''; position: absolute; bottom: -10px; left: 0; right: 0;
    height: 20px; background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }
  .session-card.hors-saison .card-top { background: var(--navy); }
  .session-card.decouverte .card-top { background: linear-gradient(135deg, #1a4a5a, var(--teal)); }
  .session-card.atelier .card-top { background: linear-gradient(135deg, #2a3a1a, #3a7a2a); }

  .session-type {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal-light); font-weight: 400; margin-bottom: 0.5rem;
  }
  .session-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; color: var(--white); line-height: 1.1;
  }
  .session-day {
    font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem;
  }

  .card-body { padding: 1.8rem 1.5rem 1.5rem; }
  .session-time {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--teal); font-weight: 500; margin-bottom: 0.8rem;
  }
  .session-time::before { content: '⏱'; }
  .session-level {
    display: inline-block;
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.25rem 0.8rem; border-radius: 20px;
    background: var(--wave); color: var(--teal);
    font-weight: 500; margin-bottom: 0.8rem;
  }
  .session-desc {
    font-size: 0.83rem; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .session-spots {
    font-size: 0.75rem; color: var(--text-muted);
    padding-top: 0.8rem; border-top: 1px solid var(--sand);
  }
  .spots-count { color: var(--gold); font-weight: 500; }

  .btn-reserve {
    display: inline-block; padding: 0.65rem 1.4rem;
    background: var(--navy); color: var(--white);
    text-decoration: none; font-size: 0.8rem; font-weight: 400;
    border-radius: 20px; transition: all 0.2s; cursor: pointer; border: none;
    width: 100%; text-align: center;
  }
  .btn-reserve:hover { background: var(--teal); }

  /* ── LONGE-CÔTE INFO ── */
  .longe-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center;
  }

  .longe-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--navy);
    margin-bottom: 1.2rem; line-height: 1.25;
  }
  .longe-text p {
    font-size: 0.92rem; line-height: 1.75; color: var(--text-muted);
    margin-bottom: 1.2rem;
  }

  .longe-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
  }
  .feature-item {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 1rem; background: var(--white); border-radius: 10px;
    border: 1px solid var(--sand);
  }
  .feature-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--wave); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .feature-text .ft { font-size: 0.8rem; font-weight: 500; color: var(--navy); margin-bottom: 0.2rem; }
  .feature-text .fd { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

  .longe-visual {
    position: relative;
  }
  .longe-card-big {
    background: var(--navy);
    border-radius: 20px; padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
  }
  .longe-card-big::before {
    content: '';
    position: absolute; top: -30%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,122,128,0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  .longe-card-big .lc-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-style: italic; font-weight: 300;
    color: var(--white); line-height: 1.4; position: relative;
    margin-bottom: 2rem;
  }
  .longe-card-big .lc-quote::before {
    content: '«'; font-size: 4rem; color: var(--teal); opacity: 0.4;
    position: absolute; top: -1rem; left: -0.5rem;
    font-family: 'Cormorant Garamond', serif;
  }
  .lc-stats-mini {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  }
  .lc-stat { text-align: center; }
  .lc-stat .n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--gold); }
  .lc-stat .l { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

  /* ── ÉQUIPE ── */
  .team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    margin-bottom: 4rem;
  }

  .team-card {
    text-align: center;
    background: var(--white); border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--sand);
    transition: all 0.3s;
  }
  .team-card:hover { box-shadow: 0 12px 32px rgba(13,33,55,0.08); transform: translateY(-3px); }

  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600; color: var(--white);
  }
  .team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600; color: var(--navy);
    margin-bottom: 0.3rem;
  }
  .team-role {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal); font-weight: 500; margin-bottom: 1rem;
  }
  .team-bio {
    font-size: 0.83rem; line-height: 1.65; color: var(--text-muted);
  }
  .team-badges {
    display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-top: 1.2rem;
  }
  .badge {
    font-size: 0.65rem; padding: 0.25rem 0.7rem; border-radius: 20px;
    background: var(--wave); color: var(--teal); font-weight: 500;
    letter-spacing: 0.05em;
  }

  .histoire {
    background: var(--navy); border-radius: 20px; padding: 3rem 4rem;
    position: relative; overflow: hidden;
  }
  .histoire::before {
    content: '2026';
    position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; font-weight: 600; color: rgba(255,255,255,0.04);
    line-height: 1;
  }
  .histoire h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400; color: var(--white); margin-bottom: 1.2rem;
  }
  .histoire p {
    font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 600px;
  }
  .histoire .timeline {
    display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
  }
  .tl-item { display: flex; gap: 0.8rem; align-items: flex-start; }
  .tl-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); margin-top: 5px; flex-shrink: 0;
  }
  .tl-text .tl-d { font-size: 0.72rem; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; }
  .tl-text .tl-l { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.1rem; }

  /* ── PRATIQUE ── */
  .pratique-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  }

  .pratique-block {
    background: var(--white); border-radius: 16px;
    padding: 2.5rem; border: 1px solid var(--sand);
  }
  .pratique-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--navy);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.7rem;
  }
  .pratique-block h3 .icon { font-size: 1.2rem; }

  .info-list { list-style: none; }
  .info-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.7rem 0; border-bottom: 1px solid var(--sand);
    font-size: 0.88rem; line-height: 1.5;
  }
  .info-list li:last-child { border-bottom: none; }
  .info-list .il { color: var(--teal-light); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
  .info-list strong { color: var(--navy); }

  .tarif-grid {
    display: grid; gap: 0.8rem;
  }
  .tarif-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 1rem; border-radius: 8px;
    background: var(--sand-light);
  }
  .tarif-row .tr { font-size: 0.85rem; color: var(--text); }
  .tarif-row .tp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--teal);
  }
  .tarif-row.featured {
    background: var(--navy); 
  }
  .tarif-row.featured .tr { color: rgba(255,255,255,0.8); }
  .tarif-row.featured .tp { color: var(--gold); }

  .certif-block {
    margin-top: 1.2rem; padding: 1rem 1.2rem;
    background: #fff8e8; border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px; border-left: 3px solid var(--gold);
  }
  .certif-block p { font-size: 0.8rem; line-height: 1.6; color: var(--text-muted); }
  .certif-block strong { color: var(--navy); }

  .map-placeholder {
    background: var(--navy); border-radius: 12px;
    padding: 2rem; height: 200px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; margin-top: 1.5rem;
    position: relative; overflow: hidden;
  }
  .map-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,122,128,0.2), transparent);
  }
  .map-placeholder p {
    position: relative; font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  }
  .map-placeholder a { color: var(--teal-light); text-decoration: none; }
  .map-placeholder .gps {
    position: relative; font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem;
  }

  /* ── INSCRIPTION ── */
  .inscription-wrapper {
    max-width: 680px; margin: 0 auto;
    background: var(--white); border-radius: 20px;
    padding: 3rem; box-shadow: 0 20px 60px rgba(13,33,55,0.08);
    border: 1px solid var(--sand);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .field-group { margin-bottom: 1.3rem; }
  .field-group label {
    display: block; font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 0.5rem;
  }
  .field-group input,
  .field-group select,
  .field-group textarea {
    width: 100%; padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--sand); border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--text); background: var(--white);
    transition: all 0.2s; outline: none;
    appearance: none;
  }
  .field-group input:focus,
  .field-group select:focus,
  .field-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,128,0.1);
  }
  .field-group textarea { resize: vertical; min-height: 90px; }

  .checkbox-group {
    display: flex; gap: 0.8rem; align-items: flex-start;
    padding: 1rem 1.2rem; border-radius: 10px;
    background: var(--sand-light); border: 1.5px solid var(--sand);
    margin-bottom: 1rem; transition: all 0.2s;
  }
  .checkbox-group:has(input:checked) {
    border-color: var(--teal); background: var(--wave);
  }
  .checkbox-group input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 1px;
    accent-color: var(--teal); cursor: pointer; flex-shrink: 0;
  }
  .checkbox-group label {
    font-size: 0.82rem; line-height: 1.55; color: var(--text-muted); cursor: pointer;
  }
  .checkbox-group label strong { color: var(--navy); }

  .certif-notice {
    background: linear-gradient(135deg, #fff8e8, #fdf4dc);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 12px; padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .certif-notice h4 {
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .certif-notice p { font-size: 0.8rem; line-height: 1.6; color: var(--text-muted); }

  .form-submit { text-align: center; margin-top: 2rem; }
  .form-submit .btn-primary { font-size: 0.9rem; padding: 1rem 3rem; }
  .form-submit .helloasso-note {
    display: block; margin-top: 0.8rem;
    font-size: 0.75rem; color: var(--text-muted);
  }
  .form-submit .helloasso-note a { color: var(--teal); }

  .success-message {
    display: none; text-align: center; padding: 2rem;
  }
  .success-message .check {
    font-size: 3rem; margin-bottom: 1rem;
  }
  .success-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--navy); margin-bottom: 0.8rem;
  }
  .success-message p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); padding: 3rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-brand .fb-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--white); font-weight: 600;
  }
  .footer-brand .fb-sub {
    font-size: 0.7rem; color: var(--teal-light); letter-spacing: 0.15em;
    text-transform: uppercase; display: block; margin-top: 0.2rem;
  }
  .footer-info { text-align: center; }
  .footer-info p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
  .footer-info a { color: var(--teal-light); text-decoration: none; }
  .footer-badges {
    display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end;
  }
  .fbadge {
    font-size: 0.65rem; padding: 0.3rem 0.8rem; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
  }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── BURGER MENU ── */
  .nav-burger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 6px;
    background: none; border: none; cursor: pointer;
    border-radius: 8px; transition: background 0.2s;
  }
  .nav-burger:hover { background: rgba(255,255,255,0.1); }
  .nav-burger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; flex-wrap: wrap; }
    .nav-burger { display: flex; }
    .nav-links {
      display: none;
      flex-direction: column; gap: 0;
      width: 100%; order: 3;
      background: rgba(13,33,55,0.98);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 0.5rem 0 1rem;
      margin: 0 -1.5rem; padding: 0.5rem 1.5rem 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { padding: 0.75rem 0.5rem; font-size: 0.95rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-cta { margin-top: 0.5rem; text-align: center; border-radius: 20px !important; border-bottom: none !important; }
    .section { padding: 4rem 1.5rem; }
    .longe-grid, .pratique-layout { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 4rem; }
    .hero-stats { flex-wrap: wrap; }
    .stat { border-right: none; padding: 0.6rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .inscription-wrapper { padding: 2rem 1.5rem; }
    .histoire { padding: 2rem; }
    footer { flex-direction: column; text-align: center; }
    .footer-badges { justify-content: center; }
    .longe-features { grid-template-columns: 1fr; }
    .adherer-layout { grid-template-columns: 1fr !important; }
    #haWidgetVignette { width: 100% !important; }
  }