
.legal-hero {
  padding: 9rem 2rem 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
}
.legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(255,27,129,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.legal-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.legal-hero-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 1rem;
}
.legal-hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.legal-hero-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* BODY */
.legal-body {
  background: var(--white);
  padding: 5rem 2rem 7rem;
}
.legal-body-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-intro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--linen);
}
.legal-intro p { margin-bottom: 1rem; }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--linen);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section-num {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 0.5rem;
}
.legal-section h2 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.legal-section p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 1rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}
.legal-section ul li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--grey);
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--linen);
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}
.legal-contact-box {
  background: var(--linen-pale);
  border: 1px solid var(--linen);
  border-left: 3px solid var(--pink);
  padding: 1.5rem 2rem;
  margin-top: 1.2rem;
}
.legal-contact-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--grey);
}
.legal-contact-box a { color: var(--pink); }

/* TOC */
.legal-toc {
  background: var(--linen-pale);
  border: 1px solid var(--linen);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
}
.legal-toc-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
  display: block;
}
.legal-toc ol {
  padding-left: 1.2rem;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }
.legal-toc ol li {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0.4rem;
}
.legal-toc ol li a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-toc ol li a:hover { color: var(--pink); }

.legal-nav-strip {
  background: var(--linen-pale);
  border-top: 1px solid var(--linen);
  padding: 1.5rem 2rem;
  text-align: center;
}
.legal-nav-strip a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.2s;
}
.legal-nav-strip a:hover { color: var(--pink); }
