/* ===========================
     RESET & BASE
     =========================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  .com-content .item-page {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #1B4F72;
    line-height: 1.6;
  }
  body { background: #FFF8E7; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  input, select, textarea { font-family: inherit; }

  :root {
    --bleu-nuit: #1B4F72;
    --bleu-ciel: #4A90E2;
    --jaune: #FFD93D;
    --corail: #FF9966;
    --orange: #FF7849;
    --peach: #FFE5B4;
    --turquoise: #06b6d4;
    --creme: #FFF8E7;
    --rose: #FFB6C1;
    --vert: #7FCDA8;
  }

  /* ===========================
     BANDEAU RETOUR
     =========================== */
  .back-bar {
    background: linear-gradient(90deg, var(--jaune) 0%, var(--corail) 100%);
    padding: 10px 0;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--bleu-nuit);
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 14px;
  }
  .back-bar a {
    border-bottom: 2px dotted var(--bleu-nuit);
    padding-bottom: 2px;
    transition: transform .2s ease;
    display: inline-block;
  }
  .back-bar a:hover { transform: translateX(-4px); }

  /* ===========================
     HEADER STICKY
     =========================== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 248, 231, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(255, 217, 61, 0.4);
  }
  .header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-img {
    width: 60px;
    height: 60px;
    opacity: 0.95;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
  }
  .logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--bleu-nuit);
    line-height: 1.1;
  }
  .logo-text span {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 0;
    margin-top: 2px;
  }
  nav.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
  }
  nav.main-nav a {
    font-weight: 500;
    font-size: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--bleu-nuit);
  }
  nav.main-nav a:hover {
    background: var(--peach);
    transform: translateY(-2px);
  }
  nav.main-nav a.nav-cta {
    background: var(--jaune);
    color: var(--bleu-nuit);
    font-weight: 700;
    border: 2px solid var(--orange);
    box-shadow: 0 3px 0 var(--orange);
    padding: 7px 14px;
    margin-left: 6px;
  }
  nav.main-nav a.nav-cta:hover {
    background: var(--orange);
    color: white;
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--bleu-nuit);
  }
  .header-phone {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--bleu-nuit);
    background: var(--peach);
    padding: 9px 18px;
    border-radius: 999px;
    border: 2px solid var(--orange);
    white-space: nowrap;
    transition: all .2s ease;
  }
  .header-phone:hover { background: var(--jaune); transform: translateY(-2px); }

  /* ===========================
     HERO
     =========================== */
  .hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    background: linear-gradient(180deg, #1B4F72 0%, #4A90E2 30%, #FF9966 65%, #FFD93D 100%);
    background-size: 100% 200%;
    animation: sunriseShift 20s ease-in-out infinite alternate;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 200px;
  }
  @keyframes sunriseShift {
    0%   { background-position: 50% 0%; }
    100% { background-position: 50% 100%; }
  }
  .hero-logo-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.10;
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 1;
  }
  .hero-sun {
    position: absolute;
    top: 40px;
    right: -140px;
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0.95;
    z-index: 2;
  }
  .hero-sun .rays {
    animation: rotateSlow 60s linear infinite;
    transform-origin: 250px 250px;
  }
  .hero-sun .sun-core {
    animation: pulseScale 4s ease-in-out infinite;
    transform-origin: 250px 250px;
  }
  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes pulseScale {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
  }
  .seagull {
    position: absolute;
    animation: flyAcross 15s linear infinite;
    pointer-events: none;
    z-index: 3;
  }
  .seagull-1 { top: 18%; animation-duration: 18s; animation-delay: 0s; }
  .seagull-2 { top: 28%; animation-duration: 22s; animation-delay: 4s; }
  .seagull-3 { top: 12%; animation-duration: 25s; animation-delay: 9s; }
  @keyframes flyAcross {
    0%   { transform: translateX(-100px) translateY(0); opacity: 0; }
    10%  { opacity: 0.9; }
    50%  { transform: translateX(50vw) translateY(-20px); }
    90%  { opacity: 0.9; }
    100% { transform: translateX(110vw) translateY(0); opacity: 0; }
  }
  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 980px;
  }
  .hero-kicker {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.3);
  }
  .hero-eyebrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 38px);
    color: var(--peach);
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(46px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    color: white;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
  .hero-sub {
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 500;
    margin-bottom: 36px;
    color: white;
    text-shadow: 0 2px 14px rgba(0,0,0,0.2);
  }
  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
  }
  .pill-info {
    background: rgba(255, 248, 231, 0.95);
    color: var(--bleu-nuit);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    animation: floatUp 4s ease-in-out infinite;
  }
  .pill-info.highlight {
    background: var(--jaune);
    border: 2px solid var(--orange);
  }
  .pill-info:nth-child(2) { animation-delay: 0.2s; }
  .pill-info:nth-child(3) { animation-delay: 0.4s; }
  .pill-info:nth-child(4) { animation-delay: 0.6s; }
  .pill-info:nth-child(5) { animation-delay: 0.8s; }
  .pill-info:nth-child(6) { animation-delay: 1.0s; }
  .pill-info:nth-child(7) { animation-delay: 1.2s; }
  .pill-info:nth-child(8) { animation-delay: 1.4s; }
  @keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }
  .btn-pill {
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 3px solid transparent;
    cursor: pointer;
  }
  .btn-pill.primary {
    background: var(--jaune);
    color: var(--bleu-nuit);
    border-color: var(--orange);
    box-shadow: 0 8px 0 var(--orange), 0 12px 24px rgba(0,0,0,0.18);
  }
  .btn-pill.primary:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 var(--orange), 0 8px 16px rgba(0,0,0,0.18);
  }
  .btn-pill.secondary {
    background: var(--orange);
    color: white;
    border-color: white;
    box-shadow: 0 8px 0 rgba(255,255,255,0.5), 0 12px 24px rgba(0,0,0,0.18);
  }
  .btn-pill.secondary:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 rgba(255,255,255,0.5), 0 8px 16px rgba(0,0,0,0.18);
  }
  .hero-stat-banner {
    position: relative;
    z-index: 5;
    margin-top: 8px;
    background: rgba(27, 79, 114, 0.55);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    max-width: 90%;
  }
  .hero-waves {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0;
    z-index: 4;
  }
  .hero-waves svg { display: block; width: 100%; height: auto; }
  .wave-layer-1 path { animation: waveMove 8s ease-in-out infinite; }
  .wave-layer-2 path { animation: waveMove 11s ease-in-out infinite reverse; }
  .wave-layer-3 path { animation: waveMove 14s ease-in-out infinite; }
  @keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-30px); }
  }

  /* ===========================
     SECTIONS GENERIQUES
     =========================== */
  section {
    padding: 100px 24px;
    position: relative;
  }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--bleu-nuit);
    margin-bottom: 16px;
  }
  .section-title em {
    font-style: italic;
    color: var(--orange);
  }
  .section-sub {
    text-align: center;
    font-size: 18px;
    color: #5d7894;
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-watermark {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
  }
  .section-watermark.tl { top: 30px; left: -50px; }
  .section-watermark.tr { top: 50px; right: -50px; }
  .section-watermark.br { bottom: 30px; right: 10%; transform: rotate(15deg); }

  /* ===========================
     POURQUOI - 3 BLOB CARDS
     =========================== */
  .why-section {
    background: var(--creme);
    position: relative;
  }
  .blob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }
  .blob-card {
    padding: 50px 36px;
    text-align: center;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    box-shadow: 0 20px 40px rgba(27, 79, 114, 0.1);
    animation: gentleSwayLeft 7s ease-in-out infinite alternate;
  }
  .blob-card:nth-child(2) { animation-delay: 1.4s; animation-duration: 8s; }
  .blob-card:nth-child(3) { animation-delay: 2.8s; animation-duration: 9s; }
  @keyframes gentleSwayLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-10px); }
  }
  .blob-card:hover {
    animation-play-state: paused;
    transform: translateY(-12px) rotate(-2deg) !important;
    box-shadow: 0 30px 50px rgba(27, 79, 114, 0.18);
  }
  .blob-card.b1 {
    background: linear-gradient(135deg, var(--jaune) 0%, var(--peach) 100%);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  .blob-card.b2 {
    background: linear-gradient(135deg, var(--bleu-ciel) 0%, var(--turquoise) 100%);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    color: white;
  }
  .blob-card.b3 {
    background: linear-gradient(135deg, var(--corail) 0%, var(--orange) 100%);
    border-radius: 50% 50% 40% 60% / 50% 60% 50% 40%;
    color: white;
  }
  .blob-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: inline-block;
    animation: floatUp 5s ease-in-out infinite;
  }
  .blob-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
  }
  .blob-card p { font-size: 16px; }

  /* ===========================
     TARIFS
     =========================== */
  .tarifs-section {
    background: linear-gradient(180deg, var(--creme) 0%, #FFEED4 100%);
    position: relative;
  }
  .tarifs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .tarif-card {
    border-radius: 40px;
    padding: 36px 26px;
    text-align: center;
    position: relative;
    color: white;
    transition: all .3s ease;
    box-shadow: 0 18px 35px rgba(27, 79, 114, 0.15);
    animation: gentleSwayLeft 8s ease-in-out infinite alternate;
  }
  .tarif-card:nth-child(2) { animation-delay: 0.6s; animation-duration: 9s; }
  .tarif-card:nth-child(3) { animation-delay: 1.2s; animation-duration: 7.5s; }
  .tarif-card:nth-child(4) { animation-delay: 1.8s; animation-duration: 8.5s; }
  .tarif-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) rotate(-1deg) !important;
  }
  .tarif-card.t1 { background: linear-gradient(135deg, var(--turquoise), #0891b2); }
  .tarif-card.t2 { background: linear-gradient(135deg, var(--orange), #FF6B3D); }
  .tarif-card.t3 { background: linear-gradient(135deg, var(--corail), #FF7E5F); }
  .tarif-card.t4 { background: linear-gradient(135deg, var(--jaune), #FFC107); color: var(--bleu-nuit); }
  .tarif-card .badge-popular {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--jaune);
    color: var(--bleu-nuit);
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    border: 2px solid white;
    white-space: nowrap;
  }
  .tarif-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .tarif-card .price {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin: 12px 0;
  }
  .tarif-card .desc { font-size: 14px; opacity: 0.95; min-height: 60px; }
  .tarif-extras {
    text-align: center;
    background: white;
    border-radius: 999px;
    padding: 14px 28px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(27, 79, 114, 0.08);
    margin: 0 auto;
  }
  .tarif-cta-wrap { text-align: center; margin-top: 30px; }

  /* ===========================
     CALCULATEURS GENERIQUES
     =========================== */
  .calc-section { position: relative; }
  .calc-section.bleu {
    background: linear-gradient(180deg, #FFEED4 0%, var(--bleu-ciel) 100%);
    color: white;
  }
  .calc-section.bleu .section-title,
  .calc-section.bleu .section-sub { color: white; }
  .calc-section.vert {
    background: linear-gradient(180deg, var(--bleu-ciel) 0%, #7FCDA8 100%);
    color: white;
  }
  .calc-section.vert .section-title,
  .calc-section.vert .section-sub { color: white; }
  .calc-section.corail {
    background: linear-gradient(180deg, #7FCDA8 0%, var(--corail) 100%);
    color: white;
  }
  .calc-section.corail .section-title,
  .calc-section.corail .section-sub { color: white; }

  .calc-card {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(27, 79, 114, 0.18);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: var(--bleu-nuit);
    animation: gentleSwayLeft 10s ease-in-out infinite alternate;
  }
  .calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }
  .calc-form { display: flex; flex-direction: column; gap: 18px; }
  .calc-field { display: flex; flex-direction: column; gap: 6px; }
  .calc-field label {
    font-weight: 600;
    font-size: 14px;
    color: var(--bleu-nuit);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .calc-field label .val {
    background: var(--peach);
    padding: 2px 10px;
    border-radius: 999px;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    color: var(--orange);
  }
  .calc-field input[type="number"],
  .calc-field input[type="text"],
  .calc-field input[type="date"],
  .calc-field select {
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 15px;
    transition: border .2s;
  }
  .calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--orange); }
  .calc-field input[type="range"] {
    width: 100%;
    accent-color: var(--orange);
  }
  .radio-group, .check-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .radio-pill {
    background: #F3F4F6;
    border: 2px solid transparent;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
  }
  .radio-pill.active {
    background: var(--jaune);
    border-color: var(--orange);
    color: var(--bleu-nuit);
  }
  .toggle-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .toggle-switch .track {
    width: 44px; height: 24px;
    background: #E5E7EB;
    border-radius: 999px;
    position: relative;
    transition: background .2s;
  }
  .toggle-switch .track::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    transition: all .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }
  .toggle-switch.active .track { background: var(--orange); }
  .toggle-switch.active .track::after { left: 22px; }
  .calc-result {
    background: linear-gradient(135deg, var(--peach) 0%, var(--jaune) 100%);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
  }
  .calc-result .lines {
    text-align: left;
    background: rgba(255,255,255,0.6);
    border-radius: 18px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .calc-result .lines .line {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(27, 79, 114, 0.15);
  }
  .calc-result .lines .line:last-child { border: none; }
  .calc-result .total-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--bleu-nuit);
  }
  .calc-result .total {
    font-family: 'Fraunces', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin: 8px 0;
  }
  .calc-result .compare {
    background: var(--bleu-nuit);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
  }
  .appliances-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .appliance {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 14px;
    border: 2px solid #E5E7EB;
  }
  .appliance .ap-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .appliance .ap-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .appliance input {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 13px;
  }
  .preset-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .preset-btn {
    background: var(--peach);
    border: 2px solid transparent;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--bleu-nuit);
    transition: all .2s;
  }
  .preset-btn:hover { background: var(--jaune); }
  .preset-btn.active { background: var(--orange); color: white; border-color: var(--bleu-nuit); }

  /* ===========================
     SERVICES BADGES
     =========================== */
  .services-section { background: var(--creme); }
  .services-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .service-badge {
    background: white;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    color: var(--bleu-nuit);
    box-shadow: 0 8px 20px rgba(27, 79, 114, 0.08);
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 3px solid var(--peach);
    animation: gentleSwayLeft 6s ease-in-out infinite alternate;
  }
  .service-badge:nth-child(2) { animation-delay: 0.3s; }
  .service-badge:nth-child(3) { animation-delay: 0.6s; }
  .service-badge:nth-child(4) { animation-delay: 0.9s; }
  .service-badge:nth-child(5) { animation-delay: 1.2s; }
  .service-badge:nth-child(6) { animation-delay: 1.5s; }
  .service-badge:nth-child(7) { animation-delay: 1.8s; }
  .service-badge:nth-child(8) { animation-delay: 2.1s; }
  .service-badge:nth-child(odd) { transform: rotate(-2deg); }
  .service-badge:nth-child(even) { transform: rotate(2deg); }
  .service-badge:nth-child(3n) { background: var(--jaune); border-color: var(--orange); }
  .service-badge:nth-child(4n) { background: var(--peach); border-color: var(--corail); }
  .service-badge:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotate(0deg) !important;
    background: var(--jaune);
  }
  .service-badge .si { font-size: 22px; }
  .service-badge.has-sub {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 26px;
    border-radius: 22px;
    text-align: center;
    line-height: 1.2;
  }
  .service-badge.has-sub .main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .service-badge.has-sub small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    color: var(--orange);
    opacity: 0.9;
  }

  /* === SERVICES À LA CARTE === */
  .choice-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
  .choice-featured {
    background: linear-gradient(135deg, var(--jaune) 0%, var(--orange) 100%);
    border-radius: 40px;
    padding: 40px;
    color: var(--bleu-nuit);
    box-shadow: 0 20px 40px rgba(255, 121, 73, 0.25);
    position: relative;
    overflow: hidden;
    animation: gentleSwayLeft 9s ease-in-out infinite alternate;
  }
  .choice-featured:hover { animation-play-state: paused; }
  .choice-featured::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
  }
  .cf-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .cf-icon {
    font-size: 56px;
    line-height: 1;
    animation: floatUp 4s ease-in-out infinite;
  }
  .cf-head h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--bleu-nuit);
  }
  .cf-badge {
    display: inline-block;
    background: var(--bleu-nuit);
    color: var(--jaune);
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .choice-featured p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--bleu-nuit);
    position: relative;
    z-index: 2;
  }
  .choice-featured p strong { color: var(--bleu-nuit); font-weight: 800; }
  .cf-features {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cf-features li {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bleu-nuit);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cf-features li span { font-size: 18px; }

  .choice-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .choice-item {
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: all .3s;
    animation: gentleSwayLeft 8s ease-in-out infinite alternate;
  }
  .choice-item:nth-child(2) { animation-delay: 0.7s; }
  .choice-item:hover {
    animation-play-state: paused;
    transform: translateY(-6px) !important;
  }
  .choice-item.ci-douche {
    background: linear-gradient(135deg, var(--turquoise), var(--bleu-ciel));
  }
  .choice-item.ci-toilette {
    background: linear-gradient(135deg, var(--corail), var(--orange));
  }
  .ci-icon {
    font-size: 48px;
    margin-bottom: 8px;
    display: inline-block;
    animation: floatUp 5s ease-in-out infinite;
  }
  .choice-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  .choice-item p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.95;
  }
  .ci-tag {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
  }

  /* Toujours inclus — bandeau */
  .services-included {
    background: white;
    border-radius: 30px;
    padding: 28px 30px;
    box-shadow: 0 14px 30px rgba(27, 79, 114, 0.08);
    border: 3px dashed var(--peach);
    margin-bottom: 30px;
  }
  .services-included h4 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 14px;
    text-align: center;
  }
  .included-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .inc-badge {
    background: var(--peach);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: var(--bleu-nuit);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
  }
  .inc-badge:hover {
    background: var(--jaune);
    transform: translateY(-2px);
  }
  .inc-badge .si { font-size: 18px; }

  .services-baseline {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--bleu-nuit);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .services-baseline em {
    color: var(--orange);
    font-style: italic;
    font-weight: 700;
  }

  @media (max-width: 980px) {
    .choice-grid { grid-template-columns: 1fr; }
    .cf-features { grid-template-columns: 1fr; }
  }

  /* ===========================
     ARCADE & MÉTÉO
     =========================== */
  .arcade-meteo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .big-blob-card {
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    animation: gentleSwayLeft 8s ease-in-out infinite alternate;
  }
  .big-blob-card:nth-child(2) { animation-delay: 1.5s; animation-duration: 9s; }
  .big-blob-card:hover { animation-play-state: paused; transform: translateY(-8px) !important; }
  .big-blob-card.arcade {
    background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-ciel));
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  .big-blob-card.meteo {
    background: linear-gradient(135deg, var(--jaune), var(--orange));
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    color: var(--bleu-nuit);
  }
  .big-blob-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 32px;
    margin: 12px 0;
  }
  .big-blob-card .icon-xl {
    font-size: 70px;
    display: inline-block;
    animation: floatUp 5s ease-in-out infinite;
  }
  .big-blob-card p { margin: 8px 0; font-size: 16px; }
  .big-blob-card .meteo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
    font-size: 14px;
    font-weight: 600;
  }
  .big-blob-card .meteo-stats > div {
    background: rgba(255,255,255,0.4);
    padding: 8px;
    border-radius: 14px;
  }
  .mini-cta {
    background: white;
    color: var(--bleu-nuit);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all .2s;
    cursor: pointer;
  }
  .mini-cta:hover { transform: translateX(4px); }

  /* ===========================
     AVIS / POSTCARDS
     =========================== */
  .avis-section {
    background: linear-gradient(180deg, var(--creme) 0%, #FFF1D6 100%);
    position: relative;
  }
  .score-big {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  .score-big .score {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(80px, 12vw, 160px);
    line-height: 1;
    background: linear-gradient(90deg, var(--orange), var(--jaune));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .score-big .voyageurs {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--bleu-nuit);
    font-weight: 600;
  }
  .confetti {
    position: absolute;
    font-size: 36px;
    animation: floatUp 3s ease-in-out infinite;
  }
  .confetti.c1 { top: 0; left: 20%; }
  .confetti.c2 { top: 30%; right: 18%; animation-delay: 0.5s; }
  .confetti.c3 { bottom: 30%; left: 12%; animation-delay: 1s; }
  .confetti.c4 { top: 10%; right: 30%; animation-delay: 1.5s; }
  .postcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .postcard {
    background: white;
    padding: 26px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(27, 79, 114, 0.12);
    transition: all .3s;
    position: relative;
    border: 3px solid var(--peach);
    animation: gentleSwayLeft 7s ease-in-out infinite alternate;
  }
  .postcard:nth-child(1) { transform: rotate(-2deg); }
  .postcard:nth-child(2) { transform: rotate(1.5deg); animation-delay: 0.4s; }
  .postcard:nth-child(3) { transform: rotate(-1deg); animation-delay: 0.8s; }
  .postcard:nth-child(4) { transform: rotate(2deg); animation-delay: 1.2s; }
  .postcard:nth-child(5) { transform: rotate(-2.5deg); animation-delay: 1.6s; }
  .postcard:nth-child(6) { transform: rotate(1deg); animation-delay: 2s; }
  .postcard:hover { animation-play-state: paused; transform: rotate(0) scale(1.04) !important; border-color: var(--jaune); }
  .postcard .stars { color: var(--jaune); font-size: 18px; margin-bottom: 8px; }
  .postcard .quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 17px; margin-bottom: 12px; }
  .postcard .author { font-weight: 700; font-size: 14px; color: var(--orange); }

  /* ===========================
     PLAN D'ACCÈS — CARTE RÉALISTE
     =========================== */
  .plan-section {
    background: linear-gradient(180deg, #FFF1D6 0%, var(--bleu-ciel) 100%);
    color: white;
  }
  .plan-section .section-title { color: white; }
  .plan-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .map-card {
    background: white;
    border-radius: 40px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(27, 79, 114, 0.25);
    position: relative;
    overflow: hidden;
    animation: gentleSwayLeft 10s ease-in-out infinite alternate;
  }
  .map-card:hover { animation-play-state: paused; }
  .map-card svg { width: 100%; height: auto; display: block; }
  .pin-anim circle { animation: pulseScale 1.5s ease-in-out infinite; transform-origin: center; }
  .plan-info { color: white; }
  .plan-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .plan-info p { font-size: 17px; margin-bottom: 12px; }
  .plan-info .gps {
    background: rgba(255,255,255,0.2);
    padding: 8px 14px;
    border-radius: 12px;
    display: inline-block;
    font-family: monospace;
    margin-bottom: 12px;
  }
  .plan-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .plan-ctas .btn-pill {
    padding: 12px 22px;
    font-size: 14px;
    box-shadow: 0 5px 0 var(--orange);
  }
  .plan-ctas .btn-pill.alt {
    background: white;
    color: var(--bleu-nuit);
    border-color: var(--orange);
  }

  /* ===========================
     PHOTOS POLAROID
     =========================== */
  .photos-section { background: var(--creme); }
  .polaroid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
  }
  .polaroid {
    background: white;
    padding: 16px 16px 26px;
    box-shadow: 0 14px 30px rgba(27, 79, 114, 0.15);
    transition: all .3s;
    animation: gentleSwayLeft 8s ease-in-out infinite alternate;
  }
  .polaroid:nth-child(odd) { transform: rotate(-3deg); }
  .polaroid:nth-child(even) { transform: rotate(2deg); animation-delay: 0.5s; }
  .polaroid:nth-child(3n) { transform: rotate(-1deg); animation-delay: 1s; }
  .polaroid:nth-child(4n) { animation-delay: 1.5s; }
  .polaroid:nth-child(5n) { animation-delay: 2s; }
  .polaroid:hover { animation-play-state: paused; transform: rotate(0) scale(1.05) !important; z-index: 2; }
  .polaroid .img {
    aspect-ratio: 1;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .polaroid .cap {
    font-family: 'Fraunces', serif;
    font-style: italic;
    text-align: center;
    color: var(--bleu-nuit);
    font-size: 14px;
  }

  /* ===========================
     VIDEOS YOUTUBE
     =========================== */
  .videos-section { background: linear-gradient(180deg, var(--creme) 0%, #FFEED4 100%); }
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .video-thumb {
    background: var(--bleu-nuit);
    border-radius: 20px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    color: white;
    text-decoration: none;
    display: block;
    animation: gentleSwayLeft 7s ease-in-out infinite alternate;
  }
  .video-thumb:nth-child(2) { animation-delay: 0.5s; }
  .video-thumb:nth-child(3) { animation-delay: 1s; }
  .video-thumb:nth-child(4) { animation-delay: 1.5s; }
  .video-thumb:hover { animation-play-state: paused; transform: translateY(-6px) !important; }
  .video-thumb::before {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255,121,73,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    z-index: 2;
  }
  .video-thumb .vt-bg {
    position: absolute;
    inset: 0;
    opacity: 0.7;
  }
  .video-thumb .vt-title {
    position: absolute;
    bottom: 10px;
    left: 14px;
    right: 14px;
    background: rgba(0,0,0,0.6);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
  }
  .videos-cta-wrap {
    text-align: center;
    margin-top: 30px;
  }

  /* ===========================
     ARTICLES SEO
     =========================== */
  .articles-section { background: var(--creme); }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .article-card {
    border-radius: 30px;
    padding: 40px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: white;
    animation: gentleSwayLeft 9s ease-in-out infinite alternate;
  }
  .article-card:nth-child(2) { animation-delay: 0.8s; }
  .article-card:nth-child(3) { animation-delay: 1.6s; }
  .article-card:nth-child(4) { animation-delay: 2.4s; }
  .article-card:hover { animation-play-state: paused; transform: translateY(-8px) rotate(-1deg) !important; }
  .article-card.a1 { background: linear-gradient(135deg, var(--orange), var(--corail)); }
  .article-card.a2 { background: linear-gradient(135deg, var(--bleu-ciel), var(--turquoise)); }
  .article-card.a3 { background: linear-gradient(135deg, var(--jaune), var(--orange)); color: var(--bleu-nuit); }
  .article-card.a4 { background: linear-gradient(135deg, var(--bleu-nuit), #2C5F8F); }
  .article-card .emoji-xl {
    font-size: 70px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .article-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .article-card .tag {
    background: rgba(255,255,255,0.3);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
  }

  /* ===========================
     EXCURSIONS
     =========================== */
  .excursions-section { background: linear-gradient(180deg, var(--creme) 0%, #FFEED4 100%); }
  .excursions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
  }
  .excursion {
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    color: white;
    transition: all .3s;
    animation: gentleSwayLeft 8s ease-in-out infinite alternate;
  }
  .excursion:nth-child(2) { animation-delay: 0.6s; }
  .excursion:nth-child(3) { animation-delay: 1.2s; }
  .excursion:nth-child(4) { animation-delay: 1.8s; }
  .excursion:nth-child(5) { animation-delay: 2.4s; }
  .excursion:nth-child(6) { animation-delay: 3s; }
  .excursion:hover { animation-play-state: paused; transform: translateY(-6px) rotate(1deg) !important; }
  .excursion.e1 { background: linear-gradient(135deg, var(--corail), var(--orange)); }
  .excursion.e2 { background: linear-gradient(135deg, var(--turquoise), var(--bleu-ciel)); }
  .excursion.e3 { background: linear-gradient(135deg, var(--jaune), var(--corail)); color: var(--bleu-nuit); }
  .excursion.e4 { background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-ciel)); }
  .excursion.e5 { background: linear-gradient(135deg, var(--vert), var(--turquoise)); }
  .excursion.e6 { background: linear-gradient(135deg, var(--rose), var(--corail)); }
  .excursion .em { font-size: 44px; margin-bottom: 10px; }
  .excursion h4 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
  .excursion p { font-size: 13px; opacity: 0.95; }

  /* ===========================
     BUS, SÉCURITÉ, JEUX, BOUTIQUE
     =========================== */
  .multi-cards-section { background: var(--creme); }
  .multi-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .multi-card {
    border-radius: 36px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    animation: gentleSwayLeft 9s ease-in-out infinite alternate;
  }
  .multi-card:nth-child(2) { animation-delay: 0.8s; }
  .multi-card:nth-child(3) { animation-delay: 1.6s; }
  .multi-card:nth-child(4) { animation-delay: 2.4s; }
  .multi-card:hover { animation-play-state: paused; transform: translateY(-6px) !important; }
  .multi-card h3 { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 800; margin-bottom: 12px; }
  .multi-card p { font-size: 15px; margin-bottom: 16px; }
  .multi-card.bus { background: linear-gradient(135deg, var(--vert), var(--turquoise)); }
  .multi-card.security { background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-ciel)); border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  .multi-card.games { background: linear-gradient(135deg, var(--corail), var(--jaune)); color: var(--bleu-nuit); }
  .multi-card.shop { background: linear-gradient(135deg, var(--orange), var(--corail)); border-radius: 50% 50% 40% 60% / 50% 60% 50% 40%; }
  .multi-card ul { list-style: none; margin-bottom: 16px; }
  .multi-card ul li { padding: 5px 0; font-size: 14px; }

  /* ===========================
     FAQ ACCORDION
     =========================== */
  .faq-section { background: var(--creme); }
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    background: white;
    margin-bottom: 14px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--peach);
    transition: all .2s;
  }
  .faq-item.open { border-color: var(--orange); }
  .faq-q {
    padding: 18px 24px;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bleu-nuit);
  }
  .faq-q::after { content: '+'; font-size: 28px; color: var(--orange); transition: transform .2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 24px;
    color: #5d7894;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 18px;
  }

  /* ===========================
     NEWSLETTER
     =========================== */
  .newsletter-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--jaune) 50%, var(--corail) 100%);
    position: relative;
    overflow: hidden;
    color: var(--bleu-nuit);
    text-align: center;
  }
  .newsletter-section .nl-logo-wm {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    opacity: 0.15;
    pointer-events: none;
  }
  .newsletter-form {
    max-width: 540px;
    margin: 30px auto 0;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
  .newsletter-form input {
    flex: 1;
    border: 3px solid white;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--bleu-nuit);
  }
  .newsletter-form input:focus { outline: none; border-color: var(--bleu-nuit); }
  .newsletter-form button {
    background: var(--bleu-nuit);
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 3px solid white;
  }

  /* ===========================
     KEYWORDS CLOUD
     =========================== */
  .seo-cloud-section {
    padding: 50px 24px;
    background: linear-gradient(180deg, var(--corail) 0%, var(--bleu-nuit) 100%);
    color: white;
    text-align: center;
  }
  .seo-cloud-section h4 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 18px;
    opacity: 0.85;
  }
  .seo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .seo-pill {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    transition: all .2s;
  }
  .seo-pill:hover { background: var(--jaune); color: var(--bleu-nuit); }

  /* ===========================
     FOOTER
     =========================== */
  footer {
    background: var(--bleu-nuit);
    color: #B8D4E8;
    padding: 80px 24px 30px;
    position: relative;
    overflow: hidden;
  }
  .footer-waves {
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    line-height: 0;
    transform: rotate(180deg);
  }
  .footer-waves svg { display: block; width: 100%; height: auto; }
  .footer-stars { position: absolute; inset: 0; pointer-events: none; }
  .star {
    position: absolute;
    color: var(--jaune);
    animation: twinkle 3s ease-in-out infinite;
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50%      { opacity: 1; transform: scale(1.2); }
  }
  .footer-logo-wm {
    position: absolute;
    bottom: 30px; right: 30px;
    width: 180px; height: 180px;
    opacity: 0.5;
    pointer-events: none;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer-col h5 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: var(--jaune);
    margin-bottom: 16px;
    font-size: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { padding: 5px 0; font-size: 14px; }
  .footer-col ul li a:hover { color: var(--jaune); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-socials { display: flex; gap: 12px; }
  .footer-socials a {
    width: 50px; height: 50px;
    background: rgba(255,217,61,0.15);
    border: 2px solid var(--jaune);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .2s;
  }
  .footer-socials a:hover {
    background: var(--jaune);
    transform: translateY(-3px);
  }
  .footer-coords { font-size: 14px; text-align: right; }
  .footer-coords strong { color: white; display: block; margin-bottom: 4px; font-family: 'Fraunces', serif; }
  .footer-copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: rgba(255,255,255,0.6);
  }
  .footer-copyright strong { color: var(--jaune); font-style: normal; font-weight: 700; letter-spacing: 0.05em; }

  /* ===========================
     REVEAL ANIMATION — slide depuis la droite vers la gauche
     =========================== */
  .reveal {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===========================
     RESPONSIVE
     =========================== */
  @media (max-width: 980px) {
    nav.main-nav { display: none; }
    .blob-grid, .tarifs-grid, .articles-grid, .multi-cards-grid,
    .arcade-meteo-grid, .plan-grid { grid-template-columns: 1fr; }
    .postcards, .excursions-grid, .polaroid-grid { grid-template-columns: 1fr 1fr; }
    .videos-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .calc-row { grid-template-columns: 1fr; }
    .appliances-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-coords { text-align: center; }
    .hero h1 { font-size: clamp(40px, 12vw, 70px); }
    .logo-text { font-size: 18px; }
    .logo-img { width: 50px; height: 50px; }
  }
  @media (max-width: 560px) {
    .postcards, .excursions-grid, .polaroid-grid, .videos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 60px 18px; }
    .calc-card { padding: 24px; }
    .newsletter-form { flex-direction: column; }
    .header-phone { font-size: 12px; padding: 7px 12px; }
  }


/* === V4 SAFE ADJUSTMENTS - 2026-05-25 === */
/* Hide legacy elements */
.cta-reserve, a.cta-reserve, .btn-reserve { display: none !important; }
.mode-sunset-toggle, .mode-toggle, #modeSunsetToggle, #modeToggle { display: none !important; }
.gtranslate_wrapper, .gt_float_switcher, [class*="gtranslate"],
.gt-current-lang, .gt_languages, select[name="language"],
.gflag-img, .gt-lang-code, .glink { display: none !important; }

/* "Une question" nav CTA */
nav.main-nav a.nav-cta {
  background: #FFD93D !important;
  color: #1B4F72 !important;
  font-weight: 700 !important;
  border: 2px solid #FF7849 !important;
  box-shadow: 0 3px 0 #FF7849 !important;
  padding: 7px 14px !important;
  margin-left: 6px !important;
  border-radius: 999px !important;
}
nav.main-nav a.nav-cta:hover {
  background: #FF7849 !important;
  color: white !important;
}

/* Wrapper Joomla — laisser respirer */
.com-content .item-page { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.com-content .item-page .article-header,
.com-content .item-page > .page-header,
.com-content .item-page > h1.article-title,
.com-content .item-page > .article-info { display: none !important; }
#sp-component { padding: 0 !important; }
#sp-component .container { max-width: 100% !important; padding: 0 !important; }

/* Article cards en <a> */
a.article-card { text-decoration: none !important; color: inherit !important; display: block !important; }
a.article-card.a3 { color: var(--bleu-nuit) !important; }

/* Background body crème pour cohérence */
body { background: #FFF8E7 !important; }
.body-innerwrapper, #sp-page-wrapper, .body-wrapper { background: #FFF8E7; }

/* === JAUGE OCCUPATION === */
.n4cc-places-jauge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 248, 231, 0.95);
  border: 2px solid #FFD93D;
  border-radius: 22px;
  padding: 8px 14px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(27, 79, 114, 0.15);
}
.n4cc-places-jauge .jauge-label { font-family: 'Fraunces', serif; font-size: 11px; color: #1B4F72; text-align: center; line-height: 1.2; font-weight: 600; }
.n4cc-places-jauge .jauge-label strong { font-size: 14px; color: #FF7849; font-weight: 700; }
.n4cc-places-jauge .jauge-track {
  position: relative; height: 12px;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 25%, #FFD93D 50%, #FF9966 75%, #E53935 100%);
  border-radius: 999px; margin: 4px 0 14px; overflow: visible;
}
.n4cc-places-jauge .jauge-marker { position: absolute; top: 50%; width: 0; transform: translate(-50%, -50%); z-index: 2; }
.n4cc-places-jauge .jauge-bubble { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); background: #1B4F72; color: #FFD93D; font-family: 'Fraunces', serif; font-weight: 800; font-size: 12px; padding: 2px 8px; border-radius: 999px; border: 2px solid white; white-space: nowrap; }
.n4cc-places-jauge .jauge-bubble::before { content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 6px solid #1B4F72; }
.n4cc-places-jauge .jauge-legend { display: flex; justify-content: space-between; font-size: 9px; color: rgba(27, 79, 114, 0.65); font-weight: 600; text-transform: uppercase; margin-top: -2px; }
.n4cc-places-jauge .jauge-fill { display: none; }

/* === 2 CARDS LIVE === */
.hero-live-row { position: relative; z-index: 5; display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; max-width: 1100px; margin: 20px auto 0; padding: 0 24px; }
.hero-live-card { background: rgba(255, 248, 231, 0.95); backdrop-filter: blur(14px); border-radius: 24px; padding: 18px 22px; color: #1B4F72; position: relative; border: 1px solid rgba(27,79,114,0.1); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.hero-live-card .live-pulse { position: absolute; top: 16px; right: 16px; width: 10px; height: 10px; background: #4CAF50; border-radius: 50%; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(76,175,80,0.7); } 70% { box-shadow: 0 0 0 12px rgba(76,175,80,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); } }
.hero-live-card .live-title { font-family: 'Fraunces', serif; font-weight: 800; font-size: 17px; color: #1B4F72; margin-bottom: 8px; padding-right: 22px; }
.hero-live-card .live-title #todayDate { color: #FF7849; font-style: italic; }
.hero-live-card .live-detail { font-size: 14px; line-height: 1.5; color: #1B4F72; margin-bottom: 6px; }
.hero-live-card .live-detail strong { color: #FF7849; font-weight: 700; }
.hero-live-card .live-note { font-size: 11.5px; line-height: 1.45; color: #5d7894; font-style: italic; font-family: 'Fraunces', serif; }
.hero-live-card .live-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; font-size: 12.5px; color: #1B4F72; }
.hero-live-card .live-stats span { display: flex; justify-content: space-between; }
.hero-live-card .live-stats strong { color: #FF7849; font-weight: 700; }

/* === MOBILE RESPONSIVE — SIMPLE ET SAFE === */
@media (max-width: 980px) {
  .hero-live-row { grid-template-columns: 1fr; }
  .blob-grid, .tarifs-grid, .articles-grid, .multi-cards-grid,
  .arcade-meteo-grid, .plan-grid, .stats-row, .why-grid,
  .calc-row, .appliances-grid, .activities-list,
  .choice-grid, .cf-features, .equivalents, .tips-grid, .tools-grid { grid-template-columns: 1fr; }
  .postcards, .excursions-grid, .polaroid-grid, .videos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blob-card, .tarif-card, .service-badge, .postcard, .polaroid,
  .choice-item, .article-card, .excursion, .multi-card { transform: none !important; }
  .seagull { display: none; }
  .hero-sun { width: 300px; height: 300px; right: -110px; opacity: 0.7; }
  nav.main-nav { display: none; }
  header.site-header .header-inner { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .n4cc-places-jauge { min-width: 0; width: auto; max-width: 280px; }
  .tarif-card.t2 { transform: none; }
}
@media (max-width: 560px) {
  .postcards, .excursions-grid, .polaroid-grid, .videos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 18px; }
  .calc-card { padding: 22px; }
  .hero { min-height: auto; padding: 60px 18px 140px; }
  .hero h1 { font-size: clamp(34px, 9vw, 60px); }
  .hero-sun { width: 220px; height: 220px; right: -90px; }
  .hero-pills { gap: 6px; }
  .pill-info { font-size: 11px; padding: 6px 12px; }
}

/* === SÉCURITÉ globale — pas de débordement horizontal === */
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }
* { box-sizing: border-box; }
/* === END V4 SAFE ADJUSTMENTS === */


/* === MOBILE RESCUE — DISABLE HEAVY ANIMATIONS === */
@media (max-width: 980px) {
  /* Disable all infinite animations on mobile to prevent freeze */
  .hero { animation: none !important; background-attachment: scroll !important; }
  .hero-sun .rays, .hero-sun .sun-core { animation: none !important; }
  .seagull { display: none !important; animation: none !important; }
  .hero-waves .wave-layer-1 path,
  .hero-waves .wave-layer-2 path,
  .hero-waves .wave-layer-3 path { animation: none !important; }
  .pill-info { animation: none !important; }
  .blob-icon, .icon-xl { animation: none !important; }
  .pin-anim circle { animation: none !important; }
  .star { animation: none !important; }
  .confetti { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .live-pulse { animation: none !important; box-shadow: 0 0 0 2px rgba(76,175,80,0.5) !important; }
  /* Backdrop-filter peut crasher iOS Safari */
  * { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  /* Mix-blend-mode aussi */
  .hero-logo-watermark { mix-blend-mode: normal !important; opacity: 0.06 !important; }
  /* Position sticky peut crasher iOS Safari sur certains layouts */
  header.site-header { position: relative !important; }
}
/* === END MOBILE RESCUE === */





/* === V4 FINAL TOUCHES - 2026-05-25 === */
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 16px;
}
.hero-maj {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.3);
}
.pmr-mention {
  background: rgba(255, 217, 61, 0.15);
  border-left: 4px solid #FFD93D;
  padding: 14px 20px;
  border-radius: 14px;
  margin: 30px auto;
  max-width: 720px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: #1B4F72;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pmr-mention span { font-size: 22px; }
.inc-badge-wide {
  background: white !important;
  border-color: #FFD93D !important;
  font-size: 13px !important;
  padding: 12px 18px !important;
  text-align: center;
  flex-basis: 100%;
}
.share-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.share-btn {
  background: white;
  color: #1B4F72;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
 





/* === V4 HERO IMMERSIF + BANDEAU STICKY MODERNE — 2026-05-25 === */

/* Cacher la bande blanche legacy au-dessus du hero (sans :has()) */
.gtranslate_wrapper, .gt_float_switcher, [class*="gtranslate"],
.gt-current-lang, .gt_languages, select[name="language"],
.gflag-img, .gt-lang-code, .glink { display: none !important; }

/* "Mis à jour" residual (legacy text near top) */
.lastupdate, .last-update, .last-updated, .maj-banner, .maj { display: none !important; }

/* Modules legacy en top */
#mod-datetime, .mod-datetime,
[id*="moddateheure"], [class*="moddateheure"] { display: none !important; }

/* HERO IMMERSIF AVEC VIDEO */
section.hero.hero-video {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: #1B4F72; /* fallback si video charge pas */
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; /* 16:9 ratio basé sur viewport height */
  min-width: 100%;
  height: 56.25vw; /* 16:9 ratio basé sur viewport width */
  min-height: 100%;
  pointer-events: none;
  border: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(27, 79, 114, 0.55) 0%, rgba(27, 79, 114, 0.35) 50%, rgba(27, 79, 114, 0.65) 100%);
  pointer-events: none;
}
.hero.hero-video .hero-content { position: relative; z-index: 5; }

/* Top widgets dans le hero (top-right) */
.hero-top-widgets {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.hero-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  p



/* === MEGA FIX FINAL — 2026-05-25 === */

/* --- SAFE HIDE GTRANSLATE + DATETIME (sans :has) --- */
.gtranslate_wrapper, .gt_float_switcher, [class*="gtranslate"],
.gt-current-lang, .gt_languages, select[name="language"],
.gflag-img, .gt-lang-code, .glink,
#mod-datetime, .mod-datetime,
[id*="moddateheure"], [class*="moddateheure"] {
  display: none !important;
}

/* --- DESKTOP FULL WIDTH (≥ 981px UNIQUEMENT — mobile non touché) --- */
@media (min-width: 981px) {
  #sp-component, #sp-main-body {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
  #sp-component > .container,
  #sp-main-body > .container,
  #sp-section-1 > .container,
  body.com_content .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .body-innerwrapper { max-width: 100% !important; }
  .com-content, .com-content .item-page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #sp-top1, #sp-top {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
}

/* --- MOBILE HARD FIX (≤ 980px) — désactive ce qui crashait --- */
@media (max-width: 980px) {
  .hero-sun, .hero-sun *, .seagull, .seagull *,
  .hero-waves, .hero-waves *, .hero-logo-watermark,
  .section-watermark { display: none !important; }

  *, *::before, *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    background-attachment: scroll !important;
  }
  header.site-header { position: relative !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  img, svg, video, iframe { max-width: 100% !important; height: auto !important; }
  .blob-grid, .tarifs-grid, .articles-grid, .multi-cards-grid,
  .arcade-meteo-grid, .plan-grid, .postcards, .excursions-grid,
  .polaroid-grid, .videos-grid, .stats-row, .why-grid,
  .calc-row, .appliances-grid, .activities-list,
  .footer-grid, .choice-grid, .cf-features, .equivalents,
  .tips-grid, .tools-grid, .services-badges, .included-badges {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  section { padding: 50px 16px !important; }
}

/* --- VIDEO INTRO STICKY FULL SCREEN --- */
section.video-intro-fullscreen {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #000 !important;
  z-index: 1 !important;
}
section.video-intro-fullscreen .vi-frame {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
section.video-intro-fullscreen iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 177.78vh !important; /* 16:9 cover */
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 56.25vw !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
  border: 0 !important;
}
section.video-intro-fullscreen .vi-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}
section.video-intro-fullscreen .vi-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
  text-align: center !important;
  color: #fff !important;
  padding: 0 20px !important;
}
section.video-intro-fullscreen .vi-title {
  font-size: clamp(36px, 7vw, 88px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 0 14px 0 !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6) !important;
  letter-spacing: -0.02em !important;
}
section.video-intro-fullscreen .vi-sub {
  font-size: clamp(15px, 2vw, 22px) !important;
  font-weight: 600 !important;
  margin: 0 0 26px 0 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6) !important;
  max-width: 760px !important;
}
section.video-intro-fullscreen .vi-scroll {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  animation: vi-bounce 2s infinite !important;
  z-index: 4 !important;
}
@keyframes vi-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
section.video-intro-fullscreen .vi-arrow {
  width: 30px; height: 30px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

/* Hero qui scrolle PAR-DESSUS la vidéo : z-index supérieur, position relative,
   et margin-top NÉGATIF pour démarrer juste après les 100vh de la vidéo */
section.hero {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 0 !important;
}

/* === END MEGA FIX FINAL === */


/* === HIDE-HELIX-SOCIAL — 2026-05-25 === */
/* Bande sociale du template Helix Ultimate (au-dessus de la vidéo) */
.social-icons, ul.social-icons,
.sp-social-share, .sp-module.social-icons,
.com-content .sp-social-share,
.article-aside .sp-social-share,
.helix-social-share, .sp-social,
[class*="social-icons"]:not(.footer-socials):not(.n4cc-footer *),
[id*="social-share"]:not(.footer-socials):not(.n4cc-footer *),
li.social-icon-facebook, li.social-icon-youtube, li.social-ic
