:root{--page-title-display:none;}/* Start custom CSS *//* ============================================================
   MALLE DE VOYAGE — Mentions légales
   À coller dans : Apparence > Personnaliser > CSS additionnel
   OU dans : Elementor > Custom CSS (au niveau de la page)
   ============================================================ */

:root {
      --navy:    #1a2a3a;
      --gold:    #c5a55a;
      --gold-light: #d4b87a;
      --cream:   #f8f5f0;
      --white:   #ffffff;
      --text:    #2c3e50;
      --muted:   #6b7a8d;
      --border:  #e2ddd6;
    }

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

    body {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--text);
      line-height: 1.75;
    }

    /* ── HERO BANNER ── */
    .hero {
      background: var(--navy);
      color: var(--white);
      text-align: center;
      padding: 72px 24px 56px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a55a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 1;
    }
    .hero-eyebrow {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 12px;
      position: relative;
    }
    .hero-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1px;
    }
    .hero-rule {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 28px auto 0;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .breadcrumb-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 24px;
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .breadcrumb a {
      color: var(--gold);
      text-decoration: none;
    }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb-sep { color: var(--border); }

    /* ── NAV INTERNE ── */
    .toc {
      max-width: 900px;
      margin: 48px auto 0;
      padding: 0 24px;
    }
    .toc-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 4px solid var(--gold);
      border-radius: 4px;
      padding: 28px 32px;
    }
    .toc-title {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .toc-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 8px 24px;
    }
    .toc-list li a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .toc-list li a::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .toc-list li a:hover { color: var(--gold); }

    /* ── CONTENU PRINCIPAL ── */
    .content {
      max-width: 900px;
      margin: 0 auto;
      padding: 48px 24px 80px;
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    /* ── SECTION CARD ── */
    .section-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .section-header {
      background: var(--navy);
      padding: 20px 32px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .section-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      min-width: 36px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .section-body {
      padding: 28px 32px;
    }

    /* ── SOUS-SECTIONS ── */
    .subsection {
      margin-bottom: 28px;
    }
    .subsection:last-child { margin-bottom: 0; }
    .subsection-title {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .subsection-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── ARTICLE ACCORDION ── */
    .article {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .article:last-child { border-bottom: none; }
    .article-btn {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 16px 0;
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left;
      font-family: 'Lato', sans-serif;
    }
    .article-btn:hover .article-btn-title { color: var(--gold); }
    .article-num {
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      color: var(--gold);
      min-width: 62px;
      font-weight: 600;
    }
    .article-btn-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.5px;
      flex: 1;
      transition: color 0.2s;
    }
    .article-chevron {
      width: 18px;
      height: 18px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, border-color 0.2s;
      flex-shrink: 0;
    }
    .article-chevron svg { width: 9px; height: 9px; fill: none; stroke: var(--muted); stroke-width: 2; }
    .article.open .article-chevron { transform: rotate(180deg); border-color: var(--gold); }
    .article.open .article-chevron svg { stroke: var(--gold); }
    .article-body {
      display: none;
      padding: 0 0 20px 76px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      animation: fadeIn 0.2s ease;
    }
    .article.open .article-body { display: block; }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

    /* ── TABLEAUX / LISTES ── */
    .info-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 6px 20px;
      font-size: 14px;
    }
    .info-label {
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
    }
    .info-value { color: var(--muted); }

    ul.styled-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 14px;
      color: var(--muted);
    }
    ul.styled-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    ul.styled-list li::before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      margin-top: 8px;
      flex-shrink: 0;
    }

    .cancel-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin-top: 8px;
    }
    .cancel-table th {
      background: var(--navy);
      color: var(--white);
      font-weight: 700;
      padding: 10px 14px;
      text-align: left;
      letter-spacing: 0.5px;
    }
    .cancel-table td {
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
    }
    .cancel-table tr:last-child td { border-bottom: none; }
    .cancel-table tr:nth-child(even) td { background: var(--cream); }
    .cancel-table .pct {
      font-weight: 700;
      color: var(--navy);
    }

    .highlight-box {
      background: var(--cream);
      border-left: 3px solid var(--gold);
      padding: 14px 18px;
      border-radius: 0 4px 4px 0;
      font-size: 13px;
      color: var(--text);
      margin-top: 12px;
    }

    a.inline-link {
      color: var(--gold);
      text-decoration: none;
      font-weight: 700;
    }
    a.inline-link:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    .page-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.45);
      text-align: center;
      padding: 32px 24px;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .page-footer span { color: var(--gold); }

    /* ── BACK TO TOP ── */
    .back-top {
      display: flex;
      justify-content: center;
      margin-top: 16px;
    }
    .back-top a {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .back-top a:hover { text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .section-header { padding: 16px 20px; }
      .section-body  { padding: 20px; }
      .article-body  { padding-left: 0; }
      .info-grid { grid-template-columns: 1fr; gap: 4px; }
      .info-label { font-size: 11px; letter-spacing: 1px; }
    }/* End custom CSS */