body.legal-page {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #f6f1ea;
  position: relative;
}

.legal-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.legal-spinning-logo {
  position: absolute;
  width: 220px;
  opacity: 0.055;
  filter: grayscale(100%);
  animation: legalSpin 32s linear infinite;
}

.legal-spinning-logo--one {
  top: 12%;
  right: -40px;
}

.legal-spinning-logo--two {
  bottom: 8%;
  left: -40px;
  animation-duration: 40s;
}

@keyframes legalSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-spinning-logo {
    animation: none;
  }
}

.legal-header,
.legal-main,
.legal-footer {
  position: relative;
  z-index: 1;
}

.legal-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.legal-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 18px;
}

.legal-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.legal-production-logo {
  width: 84px;
  height: auto;
  display: block;
}

.legal-logo-text a {
  text-decoration: none;
  color: #111;
}

.legal-brand-top,
.legal-brand-bottom {
  display: block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-brand-top {
  font-size: 1.5rem;
  font-weight: 700;
}

.legal-brand-bottom {
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.legal-nav a {
  text-decoration: none;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-hero,
.legal-content {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06);
}

.legal-hero {
  padding: 32px 36px;
  margin-bottom: 22px;
}

.legal-eyebrow {
  margin: 0 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5e5e5e;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.legal-intro {
  margin: 0;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.legal-content {
  padding: 34px 36px 38px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.legal-content h2:first-of-type {
  margin-top: 26px;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.legal-content ul {
  margin: 0 0 14px 22px;
  padding: 0;
}

.legal-content a {
  color: #111;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-footer {
  background: #050505;
  color: #f3f3f3;
}

.legal-footer-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 38px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.legal-footer-logo img {
  width: 120px;
  height: auto;
}

.legal-footer-social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.legal-footer-social-media img {
  width: 24px;
  height: 24px;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.legal-footer-links a {
  color: #f3f3f3;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.legal-footer-copy p {
  margin: 0;
  color: #cfcfcf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

@media (max-width: 720px) {
  .legal-header-inner,
  .legal-main,
  .legal-footer-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-hero,
  .legal-content {
    padding: 24px 22px;
  }

  .legal-spinning-logo {
    width: 170px;
  }

  .legal-nav ul {
    gap: 12px 14px;
  }
}
