/*
   CGU — Maison Kaya
   Style galerie : hero bordeaux + contenu beige avec séparateurs
*/

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */

.cgu-hero {
  background: var(--bordeaux);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
}

.cgu-hero__label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 244, 240, 0.45);
  margin-bottom: 1.2rem;
}

.cgu-hero__title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
}

.cgu-hero__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

.cgu-hero__sub {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 244, 240, 0.3);
}


/* ═══════════════════════════════════════════════
   CONTENU PRINCIPAL
═══════════════════════════════════════════════ */

.cgu-body {
  background: var(--beige);
  padding: 0 2.5rem 6rem;
}

.cgu-body__inner {
  max-width: 780px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════
   ARTICLE (chaque section CGU)
═══════════════════════════════════════════════ */

.cgu-article {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(87, 20, 36, 0.1);
}

.cgu-article:last-child {
  border-bottom: none;
}

.cgu-article__header {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.cgu-article__num {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(87, 20, 36, 0.3);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.cgu-article__title {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bordeaux);
  margin: 0;
}

/* Sous-titre à l'intérieur d'un article */
.cgu-article__sub {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(87, 20, 36, 0.5);
  margin: 2rem 0 0.8rem;
}

/* Paragraphes */
.cgu-article p {
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 1rem;
}

.cgu-article p:last-child {
  margin-bottom: 0;
}

/* Listes */
.cgu-article ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cgu-article ul li {
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.65);
  padding-left: 1.4rem;
  position: relative;
}

.cgu-article ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(87, 20, 36, 0.25);
  font-size: 0.75rem;
  top: 0.05em;
}

/* Liens */
.cgu-article a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(87, 20, 36, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.cgu-article a:hover {
  text-decoration-color: var(--bordeaux);
}

/* Bold */
.cgu-article strong {
  font-weight: 600;
  color: var(--bordeaux);
}

/* Notice encadrée */
.cgu-article__notice {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 2px solid rgba(87, 20, 36, 0.2);
  border-radius: 0 6px 6px 0;
}

.cgu-article__notice p {
  font-style: italic;
  color: rgba(26, 26, 26, 0.45) !important;
  font-size: 0.82rem !important;
  margin: 0 !important;
}


/* ═══════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════ */

.cgu-cta {
  background: var(--bordeaux);
  padding: 6rem 2rem;
  text-align: center;
}

.cgu-cta__inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.cgu-cta__title {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--beige);
  line-height: 1;
  margin: 0;
}

.cgu-cta__title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.cgu-cta__sub {
  font-family: var(--font);
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: rgba(243, 244, 240, 0.4);
  text-transform: uppercase;
}

.cgu-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 2.8rem 3px;
  background: transparent;
  color: var(--beige);
  border: 1.5px solid rgba(243, 244, 240, 0.4);
  border-radius: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, transform 0.2s ease;
  margin-top: 0.4rem;
}

.cgu-cta__btn:hover {
  background: var(--beige);
  color: var(--bordeaux);
  border-color: var(--beige);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .cgu-hero {
    padding: 8rem 1.4rem 4rem;
  }

  .cgu-body {
    padding: 0 1.4rem 5rem;
  }

  .cgu-article {
    padding: 2.8rem 0;
  }

  .cgu-article__header {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .cgu-hero {
    padding: 7rem 1.2rem 3.5rem;
  }

  .cgu-body {
    padding: 0 1.2rem 4rem;
  }

  .cgu-article {
    padding: 2.2rem 0;
  }
}

@media (max-width: 360px) {
  .cgu-hero {
    padding: 6.5rem 1rem 3rem;
  }

  .cgu-body {
    padding: 0 1rem 3.5rem;
  }
}