/* ══════════════════════════════════════════
   LEGAL PAGES — Decoruri Unicat
   Reutilizează limbajul vizual al site-ului principal,
   fără a modifica designul paginilor existente.
══════════════════════════════════════════ */
:root {
  --beige-50:  #fdf9f4;
  --beige-100: #f7f0e4;
  --beige-200: #ede2ce;
  --beige-300: #dfd0b3;
  --brown-300: #a07850;
  --brown-500: #6d4c2a;
  --brown-700: #3d2510;
  --gold-300:  #e4c06a;
  --gold-400:  #c9952a;
  --gold-500:  #a87820;
  --white:     #ffffff;
  --text-dark: #2e1d0e;
  --text-mid:  #5a3e28;
  --text-soft: #9a7d60;
  --fd: 'Playfair Display', serif;
  --fb: 'Jost', sans-serif;
  --fi: 'Cormorant', serif;
  --mw: 820px;
  --px: clamp(1.25rem, 5vw, 3rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb); color: var(--text-dark);
  background: var(--beige-50); line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-500); text-decoration: none; }
a:hover { text-decoration: underline; }

.legal-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(253,249,244,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,42,.14);
  padding: 1rem var(--px);
}
.legal-nav-in {
  max-width: var(--mw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.legal-brand { display: flex; flex-direction: column; line-height: 1.05; }
.legal-brand b { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--brown-700); }
.legal-brand span { font-family: var(--fi); font-style: italic; font-size: .72rem; color: var(--gold-500); }
.legal-back {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mid); display: inline-flex; align-items: center; gap: .4rem;
}
.legal-back:hover { color: var(--gold-500); text-decoration: none; }

.legal-wrap { max-width: var(--mw); margin-inline: auto; padding: clamp(2.5rem, 6vw, 5rem) var(--px) 4rem; }
.legal-label { font-size: .65rem; font-weight: 500; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-500); }
.legal-rule { width: 52px; height: 2px; background: linear-gradient(90deg, var(--gold-400), var(--gold-300)); border-radius: 1px; margin: .9rem 0 1.4rem; }
.legal-wrap h1 { font-family: var(--fd); font-weight: 500; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.12; color: var(--text-dark); margin-bottom: .6rem; }
.legal-updated { font-size: .82rem; color: var(--text-soft); margin-bottom: 2.6rem; }
.legal-wrap h2 { font-family: var(--fd); font-weight: 500; font-size: 1.4rem; color: var(--brown-500); margin: 2.6rem 0 .8rem; }
.legal-wrap p, .legal-wrap li { font-size: 1rem; color: var(--text-mid); }
.legal-wrap p { margin-bottom: 1rem; }
.legal-wrap ul { margin: 0 0 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; }
.legal-wrap strong { color: var(--text-dark); font-weight: 600; }

.legal-data {
  background: var(--white); border: 1px solid var(--beige-300); border-radius: 12px;
  padding: 1.6rem 1.8rem; margin: 1.4rem 0 2rem;
  box-shadow: 0 8px 30px rgba(109,76,42,.08);
}
.legal-data dl { display: grid; grid-template-columns: minmax(140px, auto) 1fr; gap: .6rem 1.4rem; }
.legal-data dt { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); align-self: center; }
.legal-data dd { font-size: 1rem; color: var(--text-dark); }
.legal-todo { color: #b4541f; font-style: italic; }

.legal-foot {
  border-top: 1px solid rgba(109,76,42,.12); margin-top: 3rem; padding-top: 1.6rem;
  font-size: .82rem; color: var(--text-soft);
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
}
@media (max-width: 520px) {
  .legal-data dl { grid-template-columns: 1fr; gap: .15rem; }
  .legal-data dt { margin-top: .7rem; }
}
