/* ==========================================================================
   Pagine legali (privacy, cookie) — stile sobrio, leggibile, monocromatico
   ========================================================================== */

.legal-header {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-header__logo img {
  height: 40px;
  width: auto;
}
.legal-header__back {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--t);
}
.legal-header__back:hover { color: var(--gold-dark); }

.legal {
  background: var(--white);
  padding: 3rem 0 5rem;
  min-height: 80vh;
}

.legal__container {
  max-width: 820px;
  margin: 0 auto;
}

.legal__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.legal__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin-bottom: 0.875rem;
  color: var(--dark);
  line-height: 1.1;
}

.legal__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.legal__updated {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 0;
}

.legal__rule {
  margin: 2rem 0 2.5rem;
  border: none;
  border-top: 1px solid var(--gray-200);
}

.legal section {
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.legal h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-800);
  margin-bottom: 0.875rem;
}

.legal a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color var(--t);
}
.legal a:hover { color: var(--gold-dark); }

.legal ul {
  margin: 0.75rem 0 1rem 0;
  padding-left: 1.25rem;
}
.legal ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-800);
  list-style: none;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.legal__box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal__cookielink {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gray-700);
}

.legal-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  text-align: center;
}
.legal-footer p { color: inherit; }
