* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
      --bg:        #f5f0e8;
      --bg2:       #ede7d9;
      --card:      #ffffff;
      --border:    #d8cfc0;
      --text:      #2c2418;
      --text-soft: #7a6f5e;
      --accent:    #8b4513;
      --accent2:   #c8a96e;
      --warning:   #fff8e6;
      --warning-b: #f0d080;
      --warning-t: #7a5500;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
    }

    /* ── HEADER ── */
    header {
      background: var(--text);
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .back-link {
      color: var(--accent2);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: opacity .2s;
    }
    .back-link:hover { opacity: .7; }
    .back-link svg { width:16px; height:16px; }
    .header-title {
      font-family: 'Lora', serif;
      color: var(--bg);
      font-size: 1rem;
      font-weight: 400;
      opacity: .6;
    }

    /* ── HERO ── */
    .hero {
      background: var(--text);
      padding: 60px 40px 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40px;
      background: var(--bg);
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 16px;
    }
    .hero h1 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--bg);
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .hero p {
      color: #9a9080;
      font-size: 0.9rem;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ── BANDEAU PROVISOIRE ── */
    .provisional-banner {
      background: var(--warning);
      border: 1px solid var(--warning-b);
      border-radius: 10px;
      padding: 16px 24px;
      margin: 40px auto;
      max-width: 860px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.875rem;
      color: var(--warning-t);
    }
    .provisional-banner .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
    .provisional-banner strong { font-weight: 500; display: block; margin-bottom: 4px; }

    /* ── MAIN ── */
    main {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 20px 80px;
    }

    /* ── CARDS ── */
    .section-block {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 40px;
      margin-bottom: 24px;
    }

    .section-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .section-block h2 {
      font-family: 'Lora', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    /* Table d'infos */
    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    .info-table tr { border-bottom: 1px solid #f0ece4; }
    .info-table tr:last-child { border-bottom: none; }
    .info-table td { padding: 10px 0; vertical-align: top; }
    .info-table td:first-child {
      color: var(--text-soft);
      width: 40%;
      font-size: 0.85rem;
    }
    .info-table td:last-child { font-weight: 400; color: var(--text); }

    /* Placeholder à remplir */
    .ph {
      background: #fff3cd;
      border: 1px dashed #e0b840;
      border-radius: 4px;
      padding: 2px 8px;
      font-size: 0.85rem;
      color: #7a5500;
      font-style: italic;
    }

    /* Sous-sections RGPD */
    .rgpd-block {
      margin-bottom: 28px;
    }
    .rgpd-block:last-child { margin-bottom: 0; }
    .rgpd-block h3 {
      font-family: 'Lora', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .rgpd-block h3 span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px; height: 24px;
      background: #f0ece4;
      border-radius: 50%;
      font-size: 0.75rem;
      color: var(--accent);
      flex-shrink: 0;
    }
    .rgpd-block p, .rgpd-block ul {
      font-size: 0.9rem;
      color: #4a4035;
    }
    .rgpd-block ul {
      padding-left: 20px;
      margin-top: 6px;
    }
    .rgpd-block ul li { margin-bottom: 4px; }

    .data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.875rem;
      margin-top: 8px;
    }
    .data-table th {
      background: #f5f0e8;
      color: var(--text-soft);
      font-weight: 500;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 10px 12px;
      text-align: left;
      border: 1px solid var(--border);
    }
    .data-table td {
      padding: 10px 12px;
      border: 1px solid var(--border);
      color: var(--text);
      vertical-align: top;
    }
    .data-table tr:nth-child(even) td { background: #faf8f4; }

    .rights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
      margin-top: 10px;
    }
    .right-card {
      background: #f5f0e8;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
    }
    .right-card .right-title {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 4px;
    }
    .right-card p {
      font-size: 0.8rem;
      color: var(--text-soft);
      line-height: 1.5;
    }

    /* Hébergeur */
    .host-card {
      background: #f5f0e8;
      border-radius: 8px;
      padding: 16px 20px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-top: 8px;
    }
    .host-card .host-logo {
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .host-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; }
    .host-card strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }

    /* Date MAJ */
    .update-date {
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-soft);
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    /* Footer retour */
    .back-footer {
      text-align: center;
      margin-top: 40px;
    }
    .back-footer a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--text);
      color: var(--bg);
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 0.9rem;
      transition: opacity .2s;
    }
    .back-footer a:hover { opacity: .8; }

    @media (max-width: 600px) {
      header { padding: 16px 20px; }
      .hero { padding: 40px 20px 60px; }
      .section-block { padding: 24px 20px; }
      .info-table td:first-child { width: 45%; }
      .provisional-banner { flex-direction: column; gap: 8px; }
    }