
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black:   #0d0d0d;
      --dark:    #111111;
      --dark2:   #1a1a1a;
      --accent:  #FF5F00;
      --accent-h:#ff7a26;
      --accent-d:#cc4c00;
      --white:   #ffffff;
      --gray:    #cccccc;
      --font-display: 'Oswald', sans-serif;
      --font-body:    'Raleway', sans-serif;
    }
    
    /* === SAFETY : aucune image ne dépasse jamais === */
    img { max-width: 100%; height: auto; display: block; }

    /* === SAFETY : iframes ne débordent jamais === */
    iframe { max-width: 100%; }
html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }

    
    /* === SAFETY universelle === */
    section, .page-hero, .contact-section, .resa-section, .blog-section { overflow-x: hidden; max-width: 100%; }
.skip-link { position: absolute; top: -48px; left: 0; background: var(--accent); color: var(--white); padding: 10px 20px; z-index: 10000; font-family: var(--font-display); font-weight: 600; font-size: 13px; transition: top .2s; }
    .skip-link:focus { top: 0; }
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    /* ══ HEADER ══════════════════════════════════════ */
    header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,95,0,.2); transition: box-shadow .3s; }
    header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.6); }
    nav { display: flex; align-items: center; justify-content: space-between; padding: 0 60px; height: 68px; }
    /* (déplacée dans le bloc NAV-LOGO ci-dessous) */
    .nav-logo .nav-logo-accent { color: var(--accent); }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { font-family: var(--font-display); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); text-decoration: none; position: relative; padding-bottom: 4px; transition: color .25s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s; }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent); }

    /* ══ HAMBURGER — barres asymétriques animées ════ */
    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; background: none; border: none; padding: 8px; width: 42px; height: 42px; position: relative; z-index: 1001; }
    .hamburger span { display: block; height: 2px; background: var(--accent); transform-origin: center; transition: transform .4s cubic-bezier(.23,1,.32,1), opacity .3s ease, width .35s ease, margin-left .35s ease; }
    .hamburger span:nth-child(1) { width: 28px; }
    .hamburger span:nth-child(2) { width: 18px; margin-left: 5px; }
    .hamburger span:nth-child(3) { width: 28px; }
    .hamburger.active span { background: var(--accent-h); }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(135deg); width: 28px; margin-left: 0; }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); width: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-135deg); width: 28px; margin-left: 0; }

    /* ══ MENU MOBILE PREMIUM ══════════════════════════ */
    .mobile-menu {
      position: fixed; top: 68px; left: 0; right: 0;
      z-index: 998;
      display: flex; flex-direction: column;
      background: linear-gradient(160deg, #0a0a0a 0%, #130800 100%);
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(160deg, #0a0a0a 0%, #130800 100%);
      box-shadow: 0 20px 40px rgba(0,0,0,.5);
      max-height: calc(100vh - 68px);
      transform: translateY(-100%);
      visibility: hidden;
      transition: transform .55s cubic-bezier(.4,0,.2,1), visibility .55s;
      padding: 32px 28px 32px;
      justify-content: flex-start;
      overflow-y: auto;
      overflow-x: hidden;
    }
    .mobile-menu-overlay {
      position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,.6);
      backdrop-filter: blur(4px);
      z-index: 997;
      opacity: 0;
      visibility: hidden;
      transition: opacity .45s, visibility .45s;
    }
    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu::before { content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
    .mobile-menu::after { content: ''; position: absolute; bottom: -120px; right: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,95,0,.13) 0%, transparent 70%); pointer-events: none; z-index: 0; }
    .mobile-menu.open { transform: translateY(0); visibility: visible; }

    .menu-items { list-style: none; display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
    .menu-item { border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
    .menu-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
    .menu-item a { display: flex; align-items: center; gap: 16px; padding: 18px 4px; text-decoration: none; transform: translateY(-12px); opacity: 0; transition: transform .5s cubic-bezier(.23,1,.32,1), opacity .5s ease, color .2s; }
    .menu-item:nth-child(1) a { transition-delay: .06s; }
    .menu-item:nth-child(2) a { transition-delay: .13s; }
    .menu-item:nth-child(3) a { transition-delay: .20s; }
    .menu-item:nth-child(4) a { transition-delay: .27s; }
    .menu-item:nth-child(5) a { transition-delay: .34s; }
    .mobile-menu.open .menu-item a { transform: translateY(0); opacity: 1; }
    .menu-num { font-family: var(--font-display); font-size: 11px; font-weight: 300; letter-spacing: 1px; color: var(--accent); width: 22px; flex-shrink: 0; }
    .menu-label { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); transition: color .2s, letter-spacing .3s; }
    .menu-arrow { margin-left: auto; width: 18px; height: 18px; color: rgba(255,255,255,.18); transition: transform .3s, color .2s; flex-shrink: 0; }
    .menu-item a:hover .menu-label { color: var(--accent); letter-spacing: 3px; }
    .menu-item a:hover .menu-arrow { transform: translateX(6px); color: var(--accent); }

    .menu-footer { margin-top: 40px; position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(16px); transition: opacity .5s .42s ease, transform .5s .42s ease; }
    .mobile-menu.open .menu-footer { opacity: 1; transform: translateY(0); }
    .menu-footer a { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: rgba(255,255,255,.45); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color .2s; }
    .menu-footer a:hover { color: var(--accent); }
    .menu-footer svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

    /* ══ HERO ════════════════════════════════════════ */
    .hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
    .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.40); transform: scale(1.04); transition: transform 8s ease; }
    .hero:hover .hero-img { transform: scale(1); }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.18) 65%, transparent 100%); }
    .hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 760px; }
    .hero-tag { display: inline-block; font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); padding: 5px 14px; margin-bottom: 24px; animation: fadeUp .6s ease both; }
    .hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 82px); font-weight: 700; line-height: 1.02; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; animation: fadeUp .7s .1s ease both; }
    .hero h1 em { color: var(--accent); font-style: normal; }
    .hero-sub { font-size: 16px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,.9); max-width: 520px; margin-bottom: 40px; animation: fadeUp .7s .2s ease both; text-shadow: 0 1px 6px rgba(0,0,0,.7); }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }

    /* ══ BOUTONS ══════════════════════════════════════ */
    .btn-primary, .btn-secondary { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 15px 32px; transition: all .25s; }
    .btn-primary { color: var(--white); background: var(--accent); border: 2px solid var(--accent); }
    .btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,95,0,.35); }
    .btn-secondary { color: var(--white); background: transparent; border: 2px solid rgba(255,255,255,.45); }
    .btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); background: rgba(255,255,255,.05); }
    .btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

    /* ══ STATS ═══════════════════════════════════════ */
    .stats-bar { background: var(--dark2); border-top: 1px solid rgba(255,95,0,.22); border-bottom: 1px solid rgba(255,95,0,.22); padding: 28px 80px; display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
    .stat-item { text-align: center; }
    .stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--accent); line-height: 1; display: block; letter-spacing: 1px; }
    .stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 5px; display: block; }
    .stars { color: var(--accent); font-size: 15px; margin-top: 3px; letter-spacing: 2px; }
    .stat-highlight { border-left: 1px solid var(--accent); border-right: 1px solid var(--accent); padding-left: 28px; padding-right: 28px; }
    .stat-highlight .stat-label { font-size: 13px; font-weight: 700; }
    .stat-highlight .stars { font-size: 18px; letter-spacing: 3px; margin-bottom: 3px; }
    .stat-icon { display: block; margin: 0 auto 5px; }
    .stat-icon svg { width: 22px; height: 22px; color: var(--accent); }

    /* ══ SECTIONS ════════════════════════════════════ */
    section { padding: 90px 80px; }
    .section-tag { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
    .section-title { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; margin-bottom: 14px; }
    .section-desc { font-size: 14px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,.78); max-width: 560px; }

    /* ══ ABOUT ═══════════════════════════════════════ */
    .about { background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-img-wrap { position: relative; height: 500px; overflow: hidden; }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-img-wrap::after { content: ''; position: absolute; bottom: -14px; right: -14px; width: 50%; height: 50%; border: 2px solid var(--accent); pointer-events: none; }
    .about-list { list-style: none; margin-bottom: 32px; }
    .about-list li { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.88); padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 12px; }
    .about-list li::before { content: '→'; color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 16px; flex-shrink: 0; }

    /* ══ SERVICES ════════════════════════════════════ */
    .services { background: var(--black); }
    .services-header, .testimonials-header { text-align: center; margin-bottom: 60px; }
    .services-header .section-desc, .testimonials-header .section-desc { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .service-card { background: var(--dark2); padding: 44px 36px; position: relative; overflow: hidden; transition: background .3s, transform .2s; }
    .service-card:hover { background: #212121; transform: translateY(-4px); }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--accent); transition: height .4s; }
    .service-card:hover::before { height: 100%; }
    .service-icon { margin-bottom: 20px; display: block; }
    .service-icon svg { width: 32px; height: 32px; color: var(--accent); }
    .service-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; color: var(--white); }
    .service-desc { font-size: 13px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,.78); }

    /* ══ DESTINATIONS ════════════════════════════════ */
    .destinations { background: var(--dark); }
    .dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
    .dest-col h3 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .dest-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .dest-list li { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.80); padding: 9px 12px; background: rgba(255,255,255,.04); border-left: 2px solid var(--accent); }

    /* ══ CTA ═════════════════════════════════════════ */
    .cta-phone { background: var(--accent); padding: 72px 80px; text-align: center; }
    .cta-phone h2 { font-family: var(--font-display); font-size: clamp(20px, 3vw, 36px); font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
    .cta-phone p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.82); margin-bottom: 30px; }
    .btn-dark { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--white); background: var(--black); padding: 17px 44px; text-decoration: none; transition: background .25s, transform .2s; border: 2px solid var(--black); }
    .btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }

    /* ══ PHOTO BANNER ════════════════════════════════ */
    .photo-banner { height: 360px; position: relative; overflow: hidden; }
    .photo-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.42); }
    .photo-banner-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
    .photo-banner-text h2 { font-family: var(--font-display); font-size: clamp(20px, 3.5vw, 46px); font-weight: 700; text-transform: uppercase; letter-spacing: 3px; line-height: 1.2; }
    .photo-banner-text span { color: var(--accent); }

    /* ══ TESTIMONIALS ════════════════════════════════ */
    .testimonials { background: var(--black); }
    .testimonials-header { text-align: center; margin-bottom: 52px; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card { background: var(--dark2); padding: 34px; position: relative; border-bottom: 3px solid var(--accent); }
    .testimonial-card::before { content: '"'; position: absolute; top: 14px; left: 26px; font-family: Georgia, serif; font-size: 68px; color: rgba(255,95,0,.1); line-height: 1; }
    .testimonial-stars { color: var(--accent); font-size: 13px; margin-bottom: 12px; }
    .testimonial-text { font-size: 13px; font-weight: 400; line-height: 1.7; color: rgba(255,255,255,.80); font-style: italic; margin-bottom: 18px; }
    .testimonial-author { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--accent); }
    .testimonial-meta { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }
    .testimonial-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 1px; color: rgba(255,255,255,.38); text-transform: uppercase; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.07); width: 100%; }
    .testimonial-badge svg { width: 12px; height: 12px; }

    /* ══ FAQ ══════════════════════════════════════════ */
    .faq { background: var(--dark); }
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
    .faq-question { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--accent-h); margin-bottom: 10px; }
    .faq-answer { font-size: 13px; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,.84); }

    /* ══ FOOTER ══════════════════════════════════════ */
    footer { background: var(--dark2); border-top: 1px solid rgba(255,95,0,.18); }
    .footer-main { padding: 70px 80px 42px; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 52px; }
    .footer-brand .nav-logo { font-size: 18px; display: block; margin-bottom: 16px; }
    .footer-brand p { font-size: 13px; font-weight: 400; line-height: 1.7; color: var(--gray); margin-bottom: 20px; }
    .footer-col h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 13px; font-weight: 400; color: var(--gray); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-info { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-contact-info li { font-size: 13px; font-weight: 400; color: var(--gray); display: flex; align-items: center; gap: 10px; }
    .footer-icon { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
    .footer-form h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .footer-form .form-row { position: relative; margin-bottom: 9px; }
    .footer-form input[type="email"], .footer-form input[type="text"], .footer-form input[type="tel"] { width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--white); font-family: var(--font-body); font-size: 13px; padding: 12px 16px; transition: border-color .2s; outline: none; }
    .footer-form input:focus { border-color: var(--accent); }
    .footer-form input::placeholder { color: rgba(255,255,255,.28); }
    .footer-form input:invalid:not(:placeholder-shown) { border-color: #c0392b; }
    .field-error { display: none; color: #e57373; font-size: 11px; padding: 3px 0; font-weight: 500; }
    .footer-form input:invalid:not(:placeholder-shown) + .field-error { display: block; }
    #mainForm input.invalid { border-color: #e57373 !important; box-shadow: 0 0 0 2px rgba(229,115,115,.2); }
    #mainForm .field-error { display: none; color: #e57373; font-size: 12px; margin-top: 4px; font-weight: 500; }
    .footer-form button { width: 100%; background: var(--dark2); border: 2px solid var(--accent); color: var(--white); font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 12px 20px; cursor: pointer; transition: background .25s, color .25s; }
    .footer-form button:hover { background: var(--accent); color: var(--white); }
    .form-success { display: none; background: rgba(46,125,50,.15); border: 1px solid rgba(46,125,50,.4); color: #a5d6a7; padding: 10px 14px; font-size: 12px; font-weight: 600; margin-top: 10px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 18px 80px; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 11px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
    .footer-legal a:hover { color: var(--accent); }

    /* ══ WHATSAPP ════════════════════════════════════ */
    .whatsapp-bubble { position: fixed; bottom: 24px; right: 22px; z-index: 9999; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,.35); transition: transform .2s, box-shadow .2s; }
    .whatsapp-bubble:hover { transform: scale(1.1); box-shadow: 0 8px 26px rgba(37,211,102,.4); }
    .whatsapp-bubble svg { width: 30px; height: 30px; }

    .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 0 80px; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

    /* ══ RESPONSIVE ══════════════════════════════════ */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 56px 20px; }
      .hero-content { padding: 0 20px; }
      .hero h1 { font-size: 32px; }
      .hero-sub { font-size: 14px; }
      .stats-bar { padding: 22px 20px; gap: 26px; }
      .stat-highlight { border-left: none; border-right: none; border-top: 1px solid rgba(255,95,0,.3); border-bottom: 1px solid rgba(255,95,0,.3); padding: 16px 0; width: 100%; }
      .about { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
      .about-img-wrap { height: 260px; }
      .about-img-wrap::after { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .dest-grid { grid-template-columns: 1fr; }
      .dest-list { grid-template-columns: 1fr; }
      .cta-phone { padding: 48px 20px; }
      .btn-dark { font-size: 14px; padding: 13px 26px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 32px; }
      .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
      .footer-legal { flex-wrap: wrap; justify-content: center; }
      .divider { margin: 0 20px; }
      .mobile-menu { padding: 44px 28px 32px; }
      .menu-label { font-size: 20px; letter-spacing: 1.5px; }
    }
    @media (min-width: 901px) { .mobile-menu, .hamburger { display: none !important; } }


    /* PAGE HERO */
    .page-hero { padding: 140px 80px 70px; background: var(--dark); border-bottom: 1px solid rgba(255,95,0,.15); position: relative; overflow: hidden; }
    .page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,95,0,.07) 0%, transparent 70%); pointer-events: none; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; line-height: 1.05; margin-bottom: 14px; }
    .page-hero h1 em { color: var(--accent); font-style: normal; }
    .page-hero p { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.75); max-width: 600px; line-height: 1.7; }
    .cta-band { background: var(--accent); padding: 60px 80px; text-align: center; }
    .cta-band h2 { font-family: var(--font-display); font-size: clamp(20px, 3vw, 34px); font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
    .cta-band p { font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 28px; }
    .engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
    .engage-card { background: var(--dark2); padding: 36px 28px; border-bottom: 2px solid transparent; transition: border-color .3s, background .3s; }
    .engage-card:hover { border-bottom-color: var(--accent); background: #1e1e1e; }
    .engage-card svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 16px; display: block; }
    .engage-card h3 { font-family: var(--font-display); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
    .engage-card p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; }
    .tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
    .tarif-card { background: var(--dark2); padding: 40px 32px; text-align: center; border-top: 2px solid transparent; transition: border-color .3s; }
    .tarif-card:hover { border-top-color: var(--accent); }
    .tarif-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
    .tarif-card p { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.7; }
    .zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 48px; }
    .zone-col h3 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .zone-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .zone-list li { font-size: 13px; color: rgba(255,255,255,.8); padding: 9px 12px; background: rgba(255,255,255,.04); border-left: 2px solid var(--accent); }
    .resa-form-wrap { max-width: 760px; margin: 0 auto; background: var(--dark2); padding: 48px 52px; }
    .form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 32px; border-bottom: 1px solid rgba(255,95,0,.25); padding-bottom: 16px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); }
    .form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 13px 16px; transition: border-color .2s; outline: none; width: 100%; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
    .form-group select option { background: var(--dark2); color: var(--white); }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.28); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; background: var(--accent); border: 2px solid var(--accent); color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 16px 24px; cursor: pointer; transition: background .25s, transform .2s; margin-top: 8px; }
    .form-submit:hover { background: var(--accent-h); transform: translateY(-1px); }
    .guarantees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
    .guarantee-card { background: var(--dark2); padding: 32px 24px; border-top: 2px solid var(--accent); }
    .guarantee-card svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 14px; display: block; }
    .guarantee-card h3 { font-family: var(--font-display); font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
    .guarantee-card p { font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.65; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .contact-info-block { display: flex; flex-direction: column; gap: 24px; }
    .contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-info-icon { width: 40px; height: 40px; background: rgba(255,95,0,.12); border: 1px solid rgba(255,95,0,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-info-icon svg { width: 18px; height: 18px; color: var(--accent); }
    .contact-info-item h3 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
    .contact-info-item a, .contact-info-item p { font-size: 14px; color: var(--white); text-decoration: none; transition: color .2s; }
    .contact-info-item a:hover { color: var(--accent); }
    .contact-form-block { background: var(--dark2); padding: 40px; }
    .contact-form-block .form-group { margin-bottom: 14px; }
    .zones-contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 32px; }
    .zone-badge { background: var(--dark2); padding: 10px 14px; border-left: 2px solid var(--accent); font-size: 12px; color: rgba(255,255,255,.8); }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .blog-card { background: var(--dark2); overflow: hidden; transition: transform .25s; }
    .blog-card:hover { transform: translateY(-4px); }
    
    
    .blog-card .card-    .blog-card .card-tag, .blog-featured .card-tag { font-family: var(--font-display); font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block; }
    .blog-card .card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; text-transform: uppercase; color: var(--white); margin-bottom: 10px; line-height: 1.2; text-decoration: none; display: block; transition: color .2s; }
    .blog-card .card-title:hover { color: var(--accent); }
    .blog-card .card-meta, .blog-featured .card-meta { font-size: 11px; color: rgba(255,255,255,.38); margin-bottom: 12px; }
    .blog-card .card-desc, .blog-featured .card-desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 18px; }
    .card-read-more { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); text-decoration: none; transition: letter-spacing .25s; }
    .card-read-more:hover { letter-spacing: 3px; }
    .article-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; padding: 56px 80px; background: var(--dark); }
    .article-hero-img { width: 100%; height: 340px; object-fit: cover; display: block; margin-bottom: 44px; }
    .article-.article-header { margin-bottom: 36px; }
    .article-.article-header .card-tag { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
    .article-.article-header h1 { font-family: var(--font-display); font-size: clamp(22px, 3.5vw, 42px); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.1; margin-bottom: 16px; }
    .article-meta { font-size: 12px; color: rgba(255,255,255,.38); display: flex; gap: 16px; flex-wrap: wrap; }
    .article-    .article-body h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--white); margin: 36px 0 12px; padding-left: 14px; border-left: 3px solid var(--accent); }
    .article-body h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; text-transform: uppercase; color: var(--accent-h); margin: 24px 0 10px; }
    .article-body p { margin-bottom: 16px; }
    .article-body ul, .article-body ol { margin: 12px 0 16px 20px; }
    .article-body li { margin-bottom: 6px; }
    .article-body strong { color: var(--white); font-weight: 600; }
    .article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(255,95,0,.3); }
    .article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13px; }
    .article-body th { background: rgba(255,95,0,.15); color: var(--white); font-family: var(--font-display); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 14px; text-align: left; }
    .article-body td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.82); }
    .article-breadcrumb { font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 28px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .article-breadcrumb a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
    .article-breadcrumb a:hover { color: var(--accent); }
    .article-.article-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
    .article-.article-nav a { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .2s; }
    .article-.article-nav a:hover { color: var(--accent); }
    .article-sidebar { position: sticky; top: 88px; }
    .sidebar-cta-art { background: linear-gradient(160deg, rgba(255,95,0,.15) 0%, rgba(255,95,0,.05) 100%); border: 1px solid rgba(255,95,0,.25); padding: 28px 24px; margin-bottom: 24px; }
    .sidebar-cta-art h3 { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
    .sidebar-cta-art p { font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 16px; line-height: 1.6; }
    .sidebar-recent { background: var(--dark2); padding: 22px; }
    .sidebar-recent h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
    .recent-list { list-style: none; }
    .recent-list li { border-bottom: 1px solid rgba(255,255,255,.06); }
    .recent-list li:last-child { border-bottom: none; }
    .recent-list a { display: block; padding: 11px 0; font-size: 12px; color: rgba(255,255,255,.68); text-decoration: none; transition: color .2s; line-height: 1.5; }
    .recent-list a:hover { color: var(--accent); }
    .recent-list span { display: block; font-size: 10px; color: rgba(255,255,255,.3); margin-top: 2px; }
    .legal-content { max-width: 800px; margin: 0 auto; }
    .legal-content h2 { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--accent-h); margin: 32px 0 10px; }
    .legal-content p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.82); margin-bottom: 14px; }
    .legal-content ul { margin: 10px 0 14px 20px; }
    .legal-content li { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 5px; }
    .legal-content a { color: var(--accent); text-decoration: none; }
    @media (max-width: 1000px) { .article-wrap { grid-template-columns: 1fr; } .article-sidebar { position: static; } }
    @media (max-width: 900px) {
      .page-hero { padding: 100px 20px 48px; }
      .page-hero h1 { font-size: 24px; letter-spacing: 1px; overflow-wrap: break-word; word-wrap: break-word; hyphens: auto; }

      .blog-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .resa-form-wrap { padding: 28px 20px; }
      .form-row-2 { grid-template-columns: 1fr; }
      .guarantees-grid { grid-template-columns: 1fr 1fr; }
      .engage-grid { grid-template-columns: 1fr 1fr; }
      .tarifs-grid { grid-template-columns: 1fr; }
      .zones-contact { grid-template-columns: 1fr 1fr; }
      .article-wrap { padding: 36px 20px; }
      .article-hero-img { height: 200px; }
      .cta-band { padding: 44px 20px; }
      .zones-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 650px) {
      .blog-grid { grid-template-columns: 1fr; }
      .guarantees-grid { grid-template-columns: 1fr; }
      .engage-grid { grid-template-columns: 1fr; }
      .zones-contact { grid-template-columns: 1fr; }
    }
    @media print {
      header, footer, .whatsapp-bubble, .mobile-menu, .hamburger,
      .cta-band, .cta-phone, .hero, .hero-btns, .article-nav,
      .article-sidebar, .footer-form, .skip-link { display: none !important; }
      body { background: #fff !important; color: #000 !important; }
      a { color: #000 !important; }
      section { padding: 16px !important; }
    }

    /* ══ CONTACT PAGE — CARDS ════════════════════════ */
    .contact-section { background: var(--dark); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
    .contact-card { background: var(--dark2); padding: 28px 24px; display: flex; align-items: flex-start; gap: 18px; }
    .contact-card-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,95,0,.12); border: 1px solid rgba(255,95,0,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-card-icon svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
    .contact-card-body h3 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 6px; }
    .contact-card-body a { display: block; font-size: 14px; color: var(--white); text-decoration: none; transition: color .2s; margin-bottom: 2px; }
    .contact-card-body a:hover { color: var(--accent); }
    .contact-card-body a.big { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
    .contact-card-body p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; margin-top: 4px; }
    .hours-list { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-top: 4px; }
    .hours-list li { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.6); }
    .hours-open { color: var(--accent); font-weight: 600; }
    .contact-form-wrap { background: var(--dark2); padding: 36px; }
    .contact-form-wrap h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
    .contact-form-wrap > p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
    .map-section { background: var(--black); padding: 0; }
    .map-section iframe { display: block; width: 100%; height: 340px; border: none; filter: grayscale(.3) brightness(.85); }
    .main-success { display: none; background: rgba(46,125,50,.15); border: 1px solid rgba(46,125,50,.4); color: #a5d6a7; padding: 12px 16px; font-size: 13px; font-weight: 600; margin-top: 12px; }

    /* ══ BLOG PAGE — LAYOUT ══════════════════════════ */
    .blog-section { background: var(--black); }
    .blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2px; }
    .blog-featured { background: var(--dark2); overflow: hidden; margin-bottom: 2px; }
    
    
    .blog-featured .card-    .blog-featured .card-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 12px; line-height: 1.2; text-decoration: none; display: block; transition: color .2s; }
    .blog-featured .card-title:hover { color: var(--accent); }

    /* Blog card images — forcer taille */
    .blog-card .card-img { width: 100%; height: 180px; overflow: hidden; }
    .blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.85); transition: filter .3s, transform .3s; }
    .blog-card:hover .card-img img { filter: brightness(1); transform: scale(1.03); }

    /* Card read-more — forcer taille petite */
    .card-read-more { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); text-decoration: none; display: inline-block; transition: letter-spacing .25s; }
    .card-read-more:hover { letter-spacing: 3px; }
    .card-read-more svg { display: none; }

    /* Blog sidebar */
    .blog-sidebar { background: var(--dark2); padding: 28px 22px; position: sticky; top: 88px; align-self: start; }
    .blog-sidebar .sidebar-cta { background: linear-gradient(160deg, rgba(255,95,0,.15) 0%, rgba(255,95,0,.05) 100%); border: 1px solid rgba(255,95,0,.25); padding: 22px 18px; margin-bottom: 24px; }
    .blog-sidebar .sidebar-cta h3 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
    .blog-sidebar .sidebar-cta p { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 14px; line-height: 1.5; }
    .blog-sidebar h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .blog-sidebar .recent-list a { font-size: 12px; color: rgba(255,255,255,.65); text-decoration: none; display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); line-height: 1.5; transition: color .2s; }
    .blog-sidebar .recent-list a:hover { color: var(--accent); }
    .blog-sidebar .recent-list span { display: block; font-size: 10px; color: rgba(255,255,255,.28); margin-top: 2px; }
    .blog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
    .blog-tags a { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.15); padding: 4px 10px; text-decoration: none; transition: color .2s, border-color .2s; }
    .blog-tags a:hover { color: var(--accent); border-color: var(--accent); }

    /* ══ RESPONSIVE CONTACT & BLOG ════════════════════ */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-cards { grid-template-columns: 1fr; }
      .blog-layout { grid-template-columns: 1fr; }
      .blog-sidebar { position: static; }
      .blog-featured .card-img { height: 220px; }
    }

    /* ══ SIDEBAR WIDGETS ════════════════════════════ */
    .sidebar-widget { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); }
    .sidebar-widget h3 { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .sidebar-widget ul.recent-list { list-style: none; }
    .sidebar-widget .recent-list li { border-bottom: 1px solid rgba(255,255,255,.06); }
    .sidebar-widget .recent-list li:last-child { border-bottom: none; }
    .sidebar-widget .recent-list a { font-size: 12px; color: rgba(255,255,255,.65); text-decoration: none; display: block; padding: 10px 0; line-height: 1.4; transition: color .2s; }
    .sidebar-widget .recent-list a:hover { color: var(--accent); }
    .sidebar-widget .recent-list span { display: block; font-size: 10px; color: rgba(255,255,255,.28); margin-top: 2px; }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag-cloud a { font-family: var(--font-display); font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.15); padding: 4px 10px; text-decoration: none; transition: color .2s, border-color .2s; }
    .tag-cloud a:hover { color: var(--accent); border-color: var(--accent); }

    /* ══ SIDEBAR CTA ═════════════════════════════════ */
    .blog-sidebar .sidebar-cta a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--accent); text-decoration: none; letter-spacing: 1px; transition: color .2s; }
    .blog-sidebar .sidebar-cta a:hover { color: var(--accent-h); }

    /* ══ RESERVATION PAGE ════════════════════════════ */
    .resa-section { background: var(--dark); }
    .resa-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; margin-top: 48px; }
    .resa-info { display: flex; flex-direction: column; gap: 2px; }
    .resa-info-card { background: var(--dark2); padding: 28px 24px; }
    .resa-info-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 1px; }
    .resa-info-card p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 10px; }
    .resa-phone { display: inline-block; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--accent); text-decoration: none; letter-spacing: 1px; margin-top: 6px; transition: color .2s; }
    .resa-phone:hover { color: var(--accent-h); }
    .resa-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
    .resa-steps li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.82); line-height: 1.6; }
    .step-num { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; min-width: 26px; background: var(--accent); color: var(--white); font-family: var(--font-display); font-size: 12px; font-weight: 700; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
    .resa-form-wrap { background: var(--dark2); padding: 36px 40px; }
    .resa-form-wrap h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; letter-spacing: 1px; }
    .resa-form-wrap > p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 24px; line-height: 1.6; }

    @media (max-width: 900px) {
      .resa-grid { grid-template-columns: 1fr; gap: 2px; }
      .resa-form-wrap { padding: 28px 20px; }
    }

    /* ══ MENU MOBILE — petits écrans ══════════════════ */
    @media (max-width: 480px) {
      .mobile-menu { width: 85%; padding: 78px 24px 24px; }
      .menu-label { font-size: 18px; letter-spacing: 1.2px; }
      .menu-num { font-size: 10px; width: 18px; }
      .menu-arrow { width: 16px; height: 16px; }
      .menu-item a { padding: 16px 2px; gap: 14px; }
    }

    /* === BLOG IMAGES — règles propres === */
    .blog-featured .card-img { width: 100%; height: 280px; overflow: hidden; }
    .blog-featured .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.85); transition: filter .3s, transform .3s; }
    .blog-featured:hover .card-img img { filter: brightness(1); transform: scale(1.02); }

    .blog-card .card-body { padding: 28px 24px; }
    .blog-featured .card-body { padding: 32px 28px; }


    /* === SAFETY : aucun lien .card-title n'est jamais en bleu/souligné === */
    a.card-title,
    .blog-card .card-title,
    .blog-featured .card-title {
      font-family: var(--font-display);
      font-weight: 600;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none !important;
      display: block;
      line-height: 1.2;
      transition: color .2s;
    }
    a.card-title:hover,
    .blog-card .card-title:hover,
    .blog-featured .card-title:hover {
      color: var(--accent);
    }
    .blog-featured .card-title { font-size: 20px; margin-bottom: 12px; }
    .blog-card .card-title { font-size: 16px; margin-bottom: 10px; }


    /* === ARTICLE PAGE (corrections) === */
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 56px;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }
    .article-header {
      margin-bottom: 32px;
    }
    .article-header h1 {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      line-height: 1.1;
      margin-bottom: 18px;
      color: var(--white);
    }
    .article-meta {
      font-size: 12px;
      color: rgba(255,255,255,.55);
      margin-bottom: 18px;
      line-height: 1.6;
    }
    .article-meta a { color: var(--accent); text-decoration: none; }
    .article-intro {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,.85);
      margin-bottom: 24px;
      padding-left: 18px;
      border-left: 3px solid var(--accent);
    }
    .article-hero-img {
      width: 100%;
      height: auto;
      max-height: 380px;
      object-fit: cover;
      display: block;
      margin-bottom: 32px;
    }
    .article-body {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,.85);
    }
    .article-body h2 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin: 36px 0 14px;
      padding-left: 14px;
      border-left: 3px solid var(--accent);
      line-height: 1.2;
    }
    .article-body h3 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--accent-h);
      margin: 26px 0 10px;
    }
    .article-body p { margin-bottom: 16px; }
    .article-body ul, .article-body ol { margin: 12px 0 16px 22px; }
    .article-body li { margin-bottom: 6px; }
    .article-body strong { color: var(--white); font-weight: 600; }
    .article-body a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,95,0,.3);
      transition: border-color .2s;
    }
    .article-body a:hover { border-color: var(--accent); }
    .highlight-box {
      background: linear-gradient(135deg, rgba(255,95,0,.10) 0%, rgba(255,95,0,.03) 100%);
      border-left: 3px solid var(--accent);
      padding: 18px 22px;
      margin: 22px 0;
      border-radius: 0 4px 4px 0;
    }
    .highlight-box p { margin-bottom: 0; }
    .testimonial {
      background: var(--dark2);
      padding: 22px 24px;
      margin: 22px 0;
      border-left: 3px solid var(--accent);
      font-style: italic;
      color: rgba(255,255,255,.78);
    }
    .testimonial p { margin-bottom: 8px; }
    .testimonial cite {
      display: block;
      font-style: normal;
      font-size: 12px;
      color: var(--accent);
      margin-top: 8px;
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .article-sidebar {
      position: sticky;
      top: 88px;
    }
    .sidebar-cta-art {
      background: linear-gradient(160deg, rgba(255,95,0,.15) 0%, rgba(255,95,0,.05) 100%);
      border: 1px solid rgba(255,95,0,.25);
      padding: 24px 22px;
      margin-bottom: 22px;
    }
    .sidebar-cta-art h3 {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
      letter-spacing: 1px;
    }
    .sidebar-cta-art p {
      font-size: 12px;
      color: rgba(255,255,255,.65);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .sidebar-cta-art a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
      letter-spacing: 1px;
    }
    .sidebar-widget {
      background: var(--dark2);
      padding: 22px;
      margin-bottom: 18px;
    }
    .sidebar-widget h3 {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    /* === ARTICLE MOBILE === */
    @media (max-width: 1000px) {
      .article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .article-sidebar {
        position: static;
      }
    }
    @media (max-width: 900px) {
      /* Surcharger les styles inline du <nav> et <section> dans les articles */
      main > nav[aria-label="Fil d'Ariane"] { padding: 88px 16px 0 !important; }
      main > section:not([class]) { padding: 24px 16px 48px !important; }
      .article-layout { gap: 24px; }
      .article-header h1 { font-size: 24px; letter-spacing: 1px; line-height: 1.15; }
      .article-meta { font-size: 11px; }
      .article-intro { font-size: 14px; padding-left: 14px; }
      .article-hero-img { max-height: 240px; margin-bottom: 24px; }
      .article-body { font-size: 14px; line-height: 1.7; }
      .article-body h2 { font-size: 18px; margin: 28px 0 12px; padding-left: 12px; }
      .article-body h3 { font-size: 14px; margin: 22px 0 8px; }
      .highlight-box { padding: 14px 16px; margin: 18px 0; }
      .testimonial { padding: 18px 18px; margin: 18px 0; }
      .sidebar-cta-art, .sidebar-widget { padding: 18px; }
    }

    /* ════════════════════════════════════════
       ZONE PACA — page hub destinations
    ════════════════════════════════════════ */
    .paca-intro {
      background: var(--black);
      padding: 70px 80px;
    }
    .paca-intro-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .paca-destinations,
    .paca-airports {
      padding: 70px 80px;
    }
    .paca-destinations { background: var(--dark); }
    .paca-airports { background: var(--black); }
    .paca-destinations-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .paca-destinations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .paca-dest-card {
      background: var(--dark2);
      padding: 32px 28px;
      display: block;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: border-color .3s, background .3s, transform .25s;
    }
    .paca-dest-card:hover {
      border-bottom-color: var(--accent);
      background: #1e1e1e;
      transform: translateY(-3px);
    }
    .paca-dest-region {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 10px;
    }
    .paca-dest-name {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
      letter-spacing: 1px;
    }
    .paca-dest-desc {
      font-size: 13px;
      color: rgba(255,255,255,.72);
      line-height: 1.6;
    }
    .paca-dest-desc strong {
      color: var(--accent);
    }
    .paca-airports-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      max-width: 900px;
      margin: 0 auto;
    }
    .paca-airport-card {
      background: var(--dark2);
      padding: 28px;
      border-left: 3px solid var(--accent);
    }
    .paca-airport-name {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 6px;
      letter-spacing: 1px;
    }

    /* === MOBILE === */
    @media (max-width: 900px) {
      .paca-intro,
      .paca-destinations,
      .paca-airports {
        padding: 48px 20px;
      }
      .paca-destinations-grid {
        grid-template-columns: 1fr;
      }
      .paca-airports-grid {
        grid-template-columns: 1fr;
      }
      .paca-dest-card {
        padding: 24px 22px;
      }
      .paca-dest-name {
        font-size: 17px;
      }
      .paca-airport-card {
        padding: 22px;
      }
    }
    @media (min-width: 901px) and (max-width: 1100px) {
      .paca-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ════════════════════════════════════════
       PACA GUIDES — Pages SEO géographiques
       (avec design "cliquable" explicite)
    ════════════════════════════════════════ */
    .paca-guides {
      background: linear-gradient(180deg, var(--dark) 0%, #0d0d0d 100%);
      padding: 56px 80px 64px;
    }
    .paca-guides-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .paca-guides-intro {
      font-size: 14px;
      color: rgba(255,255,255,.6);
      max-width: 580px;
      margin: 12px auto 0;
      line-height: 1.65;
    }
    .paca-guides-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .paca-guide-card {
      background: #1a1a1a;
      border: 1px solid rgba(255,95,0,.18);
      border-radius: 6px;
      padding: 26px 24px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-decoration: none;
      transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
    }
    .paca-guide-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: var(--accent);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .3s ease;
    }
    .paca-guide-card:hover,
    .paca-guide-card:focus-visible {
      transform: translateY(-4px);
      border-color: var(--accent);
      background: #1f1f1f;
      box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 0 1px rgba(255,95,0,.15);
    }
    .paca-guide-card:hover::before,
    .paca-guide-card:focus-visible::before {
      transform: scaleY(1);
    }
    .paca-guide-card-content {
      flex: 1;
    }
    .paca-guide-region {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: 10px;
    }
    .paca-guide-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin: 0 0 10px;
      letter-spacing: .5px;
      line-height: 1.25;
      transition: color .25s;
    }
    .paca-guide-card:hover .paca-guide-title {
      color: var(--accent-h);
    }
    .paca-guide-desc {
      font-size: 13px;
      color: rgba(255,255,255,.7);
      line-height: 1.65;
      margin: 0;
    }
    .paca-guide-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      padding-top: 12px;
      border-top: 1px solid rgba(255,95,0,.15);
      transition: gap .25s ease, color .25s;
    }
    .paca-guide-arrow svg {
      width: 16px;
      height: 16px;
      transition: transform .3s ease;
    }
    .paca-guide-card:hover .paca-guide-arrow {
      gap: 12px;
      color: var(--accent-h);
    }
    .paca-guide-card:hover .paca-guide-arrow svg {
      transform: translateX(4px);
    }

    /* === MOBILE === */
    @media (max-width: 900px) {
      .paca-guides {
        padding: 36px 16px 44px;
      }
      .paca-guides-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .paca-guide-card {
        padding: 22px 20px 18px;
      }
      .paca-guide-title {
        font-size: 16px;
      }
      .paca-guide-desc {
        font-size: 13px;
      }
    }
    @media (min-width: 901px) and (max-width: 1100px) {
      .paca-guides-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ════════════════════════════════════════
       BANNIÈRE COOKIES (Consent Mode v2 RGPD)
    ════════════════════════════════════════ */
    #cookie-banner {
      position: fixed;
      bottom: 16px;
      left: 16px;
      right: 16px;
      max-width: 520px;
      margin: 0 auto;
      background: rgba(15, 15, 15, .96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 95, 0, .35);
      border-radius: 8px;
      padding: 14px 18px;
      box-shadow: 0 8px 30px rgba(0,0,0,.5);
      z-index: 10000;
      display: none;
      font-family: var(--font-body);
      animation: cookieSlideUp .4s ease-out;
    }
    @keyframes cookieSlideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    #cookie-banner.visible { display: block; }
    .cookie-content {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .cookie-text {
      flex: 1;
      min-width: 200px;
      font-size: 12.5px;
      line-height: 1.5;
      color: rgba(255,255,255,.85);
      margin: 0;
    }
    .cookie-text a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .cookie-buttons {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }
    .cookie-btn {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 9px 14px;
      border-radius: 4px;
      cursor: pointer;
      border: none;
      transition: all .2s;
      white-space: nowrap;
    }
    .cookie-btn-accept {
      background: var(--accent);
      color: var(--white);
    }
    .cookie-btn-accept:hover {
      background: var(--accent-h);
    }
    .cookie-btn-refuse {
      background: transparent;
      color: rgba(255,255,255,.65);
      border: 1px solid rgba(255,255,255,.2);
    }
    .cookie-btn-refuse:hover {
      color: var(--white);
      border-color: rgba(255,255,255,.4);
    }

    /* Mobile */
    @media (max-width: 600px) {
      #cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 14px;
      }
      .cookie-content { gap: 10px; }
      .cookie-text { font-size: 12px; min-width: 100%; }
      .cookie-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }
      .cookie-btn {
        padding: 10px 8px;
        font-size: 10.5px;
        letter-spacing: .5px;
      }
    }

    /* ════════════════════════════════════════
       NAV-LOGO (logo rond + texte)
    ════════════════════════════════════════ */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      transition: opacity .2s;
    }
    .nav-logo:hover { opacity: .85; }
    .nav-logo-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
    }
    .nav-logo-text {
      color: var(--white);
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      white-space: nowrap;
    }
    .nav-logo-accent { color: var(--accent); }

    /* Mobile : réduire un peu */
    @media (max-width: 600px) {
      .nav-logo { font-size: 14px; gap: 8px; letter-spacing: 1px; }
      .nav-logo-img { width: 36px; height: 36px; }
    }
    /* Très petit écran : masquer le texte si vraiment trop étroit */
    @media (max-width: 380px) {
      .nav-logo-text { display: none; }
    }

    /* ════════════════════════════════════════
       HERO PAGE SERVICES — voiture noire en bg (responsive)
    ════════════════════════════════════════ */
    .page-hero-car {
      position: relative;
      background: var(--black);
      isolation: isolate;
      overflow: hidden;
      min-height: 480px;
    }
    .page-hero-car::before {
      content: "";
      position: absolute;
      inset: 0;
      /* Desktop : image paysage 1600×400 */
      background-image: url("/assets/hero-services-car.jpg");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: .55;
      z-index: -2;
    }
    .page-hero-car::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13,13,13,.30) 0%, rgba(13,13,13,.65) 55%, rgba(13,13,13,.95) 100%);
      z-index: -1;
    }
    /* Tablette : image format intermédiaire 1200×600 (voiture entière) */
    @media (max-width: 900px) {
      .page-hero-car {
        min-height: 380px;
      }
      .page-hero-car::before {
        background-image: url("/assets/hero-services-car-tablet.jpg");
        background-size: contain;
        background-position: center 60%;
        opacity: .5;
      }
    }
    /* Mobile : image carrée 1200×1200 (voiture centrée, fond noir cohérent) */
    @media (max-width: 600px) {
      .page-hero-car {
        min-height: 340px;
      }
      .page-hero-car::before {
        background-image: url("/assets/hero-services-car-mobile.jpg");
        background-size: cover;
        background-position: center 55%;
        opacity: .55;
      }
      .page-hero-car::after {
        background: linear-gradient(180deg, rgba(13,13,13,.25) 0%, rgba(13,13,13,.50) 40%, rgba(13,13,13,.92) 100%);
      }
    }

    /* ── Hero Réservation ── */
    .page-hero-resa {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 480px;
    }
    .page-hero-resa::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("/assets/hero-reservation.jpg");
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      opacity: .45;
      z-index: -2;
    }
    .page-hero-resa::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13,13,13,.30) 0%, rgba(13,13,13,.68) 55%, rgba(13,13,13,.97) 100%);
      z-index: -1;
    }
    @media (max-width: 900px) {
      .page-hero-resa { min-height: 380px; }
      .page-hero-resa::before { background-position: center 25%; opacity: .4; }
    }
    @media (max-width: 600px) {
      .page-hero-resa { min-height: 320px; }
      .page-hero-resa::before { background-position: center 20%; opacity: .38; }
    }

    /* Mobile : améliorer le cadrage de l'image d'accueil */
    @media (max-width: 600px) {
      .hero-img {
        object-position: 50% 40% !important;
      }
      .hero { min-height: 480px; }
    }