/**
 * Lieux de Retraites — Page CGU / CGV (bundle site monté dans Next.js)
 * Scope : #ldr-cgu uniquement
 */

#ldr-cgu,
#ldr-cgu.ldrcgu {
  --ldrcgu-green: #28420a;
  --ldrcgu-green-deep: #1a2d06;
  --ldrcgu-green-soft: #3d5c3a;
  --ldrcgu-sage: #8fa67a;
  --ldrcgu-sage-light: #c5d4b8;
  --ldrcgu-cream: #f6f4ee;
  --ldrcgu-sand: #ebe7dc;
  --ldrcgu-white: #ffffff;
  --ldrcgu-ink: #1a1a18;
  --ldrcgu-muted: #5a5a54;
  --ldrcgu-line: rgba(26, 26, 24, 0.1);
  --ldrcgu-radius: 18px;
  --ldrcgu-font-serif: "Fraunces", "Georgia", serif;
  --ldrcgu-font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ldrcgu-max: 760px;
  --ldrcgu-gutter: clamp(20px, 4vw, 40px);

  width: 100%;
  font-family: var(--ldrcgu-font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ldrcgu-ink);
  background: var(--ldrcgu-cream) !important;
  background-image: none !important;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

#ldr-cgu *,
#ldr-cgu *::before,
#ldr-cgu *::after {
  box-sizing: border-box;
}

#ldr-cgu a {
  color: var(--ldrcgu-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

#ldr-cgu a:hover {
  color: var(--ldrcgu-green-deep);
}

.ldrcgu-wrap {
  width: 100%;
  max-width: var(--ldrcgu-max);
  margin-inline: auto;
  padding-inline: var(--ldrcgu-gutter);
}

.ldrcgu-page {
  padding-block: clamp(32px, 5vw, 56px) clamp(48px, 7vw, 80px);
}

/* Header */
.ldrcgu-header {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--ldrcgu-line);
}

.ldrcgu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ldrcgu-green-soft);
}

.ldrcgu-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ldrcgu-sage);
}

.ldrcgu-h1 {
  margin: 0 0 16px;
  font-family: var(--ldrcgu-font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ldrcgu-ink);
}

.ldrcgu-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: var(--ldrcgu-muted);
  background: var(--ldrcgu-sand);
  border-radius: 999px;
}

/* Sections */
.ldrcgu-section {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.ldrcgu-section:last-child {
  margin-bottom: 0;
}

.ldrcgu-h2 {
  margin: 0 0 14px;
  font-family: var(--ldrcgu-font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ldrcgu-green-deep);
}

.ldrcgu-section p {
  margin: 0 0 14px;
  color: var(--ldrcgu-ink);
}

.ldrcgu-section p:last-child {
  margin-bottom: 0;
}

.ldrcgu-muted {
  color: var(--ldrcgu-muted);
}

/* Pricing table */
.ldrcgu-plans {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ldrcgu-line);
  border-radius: var(--ldrcgu-radius);
  overflow: hidden;
  background: var(--ldrcgu-white);
}

.ldrcgu-plans li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ldrcgu-line);
}

.ldrcgu-plans li:last-child {
  border-bottom: none;
}

.ldrcgu-plan-name {
  font-weight: 600;
  color: var(--ldrcgu-green-deep);
}

.ldrcgu-plan-price {
  font-size: 0.9375rem;
  color: var(--ldrcgu-muted);
  text-align: right;
}

/* Contact line */
.ldrcgu-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 4px;
}

.ldrcgu-contact-line span {
  color: var(--ldrcgu-muted);
  font-size: 0.9375rem;
}

/* Footer note */
.ldrcgu-footer-note {
  margin-top: clamp(36px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--ldrcgu-line);
  font-size: 0.9375rem;
  color: var(--ldrcgu-muted);
}
