/* Phoenix Pharma – Legal Pages */
:root {
  --phoenix-blue: #1B6FA8;
  --phoenix-blue-dark: #134F7A;
  --text-primary: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #8494A7;
  --light-200: #E4E8E1;
  --off-white: #FAFBFC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: #fff;
  line-height: 1.75;
}

.legal-nav {
  background: #fff;
  border-bottom: 1px solid var(--light-200);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-nav__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-nav__logo img { height: 44px; }
.legal-nav__back {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--phoenix-blue);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.legal-nav__back:hover { color: var(--phoenix-blue-dark); }

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.legal-wrap .legal-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-200);
}
.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-wrap h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.legal-wrap p, .legal-wrap li {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.legal-wrap ul, .legal-wrap ol {
  margin: 0 0 1rem 1.5rem;
}
.legal-wrap a { color: var(--phoenix-blue); text-decoration: underline; }
.legal-wrap a:hover { color: var(--phoenix-blue-dark); }
.legal-wrap strong { color: var(--text-primary); }

.legal-footer {
  background: var(--off-white);
  border-top: 1px solid var(--light-200);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
