/* Atlas Pure | Legal pages (mentions légales, CGV, confidentialité) */
:root {
  --forest: #162B23;
  --gold: #B8924A;
  --gold-soft: #C9A76C;
  --cream: #FAF7F2;
  --sand: #E8DFD0;
  --text: #1a1a1a;
  --text-soft: #5a5a5a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font: 16px/1.7 Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--forest); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

.legal-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px clamp(16px, 4vw, 64px);
  border-bottom: 1px solid var(--sand);
  background: #fff;
}
.legal-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 600; color: var(--forest); text-decoration: none;
}
.legal-logo span { color: var(--gold); }
.legal-nav a.back { font-size: 0.9rem; }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 16px 80px;
}
h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15;
  color: var(--forest); margin: 0 0 8px;
}
.updated { color: var(--text-soft); font-size: 0.9rem; margin: 0 0 40px; }
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 1.5rem; color: var(--forest);
  margin: 48px 0 12px; padding-top: 16px; border-top: 1px solid var(--sand);
}
h3 { font-size: 1rem; margin: 24px 0 8px; }
p, li { color: #2b2b2b; }
ul { padding-left: 20px; }
dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 20px; margin: 0; }
dt { font-weight: 600; color: var(--forest); }
dd { margin: 0; }
@media (max-width: 560px) {
  dl { grid-template-columns: 1fr; }
  dd { margin-bottom: 10px; }
}
.box {
  background: #fff; border: 1px solid var(--sand); border-radius: 12px;
  padding: 20px 24px; margin: 20px 0;
}
.box p:first-child { margin-top: 0; }
.box p:last-child { margin-bottom: 0; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--sand); vertical-align: top; }
th { color: var(--forest); font-weight: 600; }
.table-wrap { overflow-x: auto; }

/* Information still to be provided by the business owner */
.todo { background: #fff3b0; color: #5c4a00; padding: 0 4px; border-radius: 3px; font-weight: 600; }

.legal-footer {
  background: var(--forest); color: rgba(255,255,255,0.6);
  padding: 32px clamp(16px, 4vw, 64px); font-size: 0.85rem;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
}
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.legal-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.legal-footer a:hover { color: var(--gold-soft); }
