/* T76 Consultants — shared styles for legal pages (Privacy / Terms) */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --onyx: #0D0D0D;
  --carbon: #1A1A1A;
  --carbon-2: #131313;
  --icy-blue: #89C4E1;
  --icy-deep: #1d6f99;
  --warm-cream: #F5F0E1;
  --white: #FFFFFF;
  --mute: #9CA3AF;
  --rule: rgba(137, 196, 225, 0.22);
  --rule-strong: rgba(137, 196, 225, 0.55);
  --max: 820px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--onyx);
  color: #d7d7d7;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--icy-blue); }
a:hover { color: var(--ice-light, #B8DCF0); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.legal-header {
  border-bottom: 1px solid var(--rule);
  background: var(--carbon-2);
}
.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand-t { font-family: 'Georgia', 'Times New Roman', serif; font-weight: 300; color: var(--white); }
.brand-76 { color: var(--icy-blue); }
.back-link {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--icy-blue);
}
.back-link:hover { color: var(--white); }

/* Content */
main.legal {
  padding: 64px 0 96px;
}
.legal h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.legal .updated {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 40px;
}
.legal h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  margin: 44px 0 12px;
}
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal strong { color: #ebebeb; }
.legal .intro { color: #b9b9b9; font-size: 18px; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }

/* Footer */
.legal-footer {
  border-top: 1px solid var(--rule);
  background: var(--carbon-2);
  padding: 32px 0;
}
.legal-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--mute);
}
.legal-footer a { color: var(--mute); text-decoration: none; }
.legal-footer a:hover { color: var(--icy-blue); }
.legal-footer .legal-links a { margin-left: 16px; }
