:root {
  --orange: #ff5b22;
  --ink: #111111;
  --paper: #f6f4f0;
  --line: #dfdcd7;
  --muted: #68645f;
  --shell: min(980px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.shell { width: var(--shell); margin-inline: auto; }
.legal-header { color: white; background: #111; border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-nav { min-height: 78px; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; letter-spacing: .12em; }
.brand-mark { width: 24px; height: 24px; display: inline-flex; align-items: flex-end; gap: 3px; transform: skew(-10deg); }
.brand-mark i { width: 6px; border-radius: 1px; background: var(--orange); transform-origin: bottom; animation: equalizer 1.45s ease-in-out infinite; }
.brand-mark i:nth-child(1) { height: 13px; }.brand-mark i:nth-child(2) { height: 23px; animation-delay: -.48s; }.brand-mark i:nth-child(3) { height: 17px; animation-delay: -.92s; }
@keyframes equalizer { 0%,100% { transform: translateY(0) scaleY(.78); } 35% { transform: translateY(-3px) scaleY(1.08); } 68% { transform: translateY(2px) scaleY(.88); } }
.back-link { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; transition: color .2s; }
.back-link:hover { color: white; }
.legal-hero { padding: 105px 0 85px; color: white; background: #111; }
.kicker { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.46); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 700; }
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--orange); }
h1, h2 { margin: 0; letter-spacing: -.045em; }
h1 { max-width: 820px; margin-top: 22px; font-size: clamp(50px, 7vw, 82px); line-height: 1; }
.legal-hero p { max-width: 660px; margin: 25px 0 0; color: rgba(255,255,255,.57); line-height: 1.7; }
.legal-main { padding: 90px 0 120px; }
.legal-grid { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 70px; align-items: start; }
.legal-aside { position: sticky; top: 30px; display: flex; flex-direction: column; gap: 10px; }
.legal-aside span { margin-bottom: 8px; color: #99948d; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal-aside a { padding: 7px 0; color: #77736d; font-size: 12px; transition: color .2s, transform .2s; }
.legal-aside a:hover { color: var(--orange); transform: translateX(4px); }
.legal-content section { padding: 0 0 52px; margin-bottom: 52px; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.legal-content section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin-bottom: 20px; font-size: 28px; line-height: 1.2; }
.legal-content p, .legal-content li, address { color: var(--muted); font-size: 15px; line-height: 1.75; font-style: normal; }
.legal-content p { margin: 0 0 15px; }
.legal-content ul { margin: 14px 0; padding-left: 20px; }
.legal-content a { color: var(--orange); border-bottom: 1px solid rgba(255,91,34,.28); }
.contact-card { padding: 25px; background: white; border-left: 3px solid var(--orange); }
.contact-card strong { display: block; margin-bottom: 9px; font-size: 18px; }
.status-card { display: flex; align-items: flex-start; gap: 14px; padding: 22px; background: #ecf6ef; border: 1px solid #d6eadc; }
.status-card i { flex: 0 0 auto; display: grid; place-items: center; width: 24px; height: 24px; color: white; background: #318d59; border-radius: 50%; font-size: 13px; font-style: normal; }
.status-card p { margin: 0; color: #3e654a; }
.legal-footer { padding: 34px 0; color: rgba(255,255,255,.45); background: #111; font-size: 11px; }
.legal-footer .shell { display: flex; justify-content: space-between; gap: 25px; }
.legal-footer div { display: flex; gap: 24px; }
.legal-footer a:hover { color: white; }
.legal-note { color: #928d86; font-size: 12px !important; }

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); }
  .legal-nav { min-height: 68px; }
  .legal-hero { padding: 78px 0 65px; }
  .legal-main { padding: 65px 0 85px; }
  .legal-grid { grid-template-columns: 1fr; gap: 45px; }
  .legal-aside { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
  .legal-aside span { grid-column: 1/-1; }
  .legal-footer .shell { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
