/* Shared styles for legal pages (privacy, terms). Mirrors index.html tokens. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0A1628;
  --navy-2: #142238;
  --pool: #1E6FA8;
  --pool-deep: #155A8A;
  --offwhite: #F7F5F0;
  --offwhite-2: #EFEBE0;
  --gray: #5C6470;
  --gray-2: #8A919C;
  --hairline: rgba(10, 22, 40, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}
.container { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

/* header */
.legal-header { background: var(--navy); padding: 22px 0; }
.legal-header .container { max-width: 1240px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header img { height: 54px; width: auto; display: block; }
.legal-header a.back { color: rgba(247,245,240,0.65); text-decoration: none; font-size: 14px; font-weight: 500; }
.legal-header a.back:hover { color: var(--offwhite); }

/* body */
main { padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 96px); }
h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 6vw, 52px); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 14px; }
.updated { color: var(--gray-2); font-size: 14px; margin-bottom: 10px; }
.lede { font-size: 18px; color: var(--gray); margin-bottom: 44px; padding-bottom: 34px; border-bottom: 1px solid var(--hairline); }
h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3.2vw, 27px); letter-spacing: -0.01em; margin: 46px 0 14px; }
h3 { font-size: 16px; font-weight: 600; margin: 26px 0 8px; }
p { margin-bottom: 16px; color: var(--navy); }
ul { margin: 0 0 18px 22px; }
li { margin-bottom: 9px; }
a { color: var(--pool-deep); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--pool); }
strong { font-weight: 600; }
.callout { background: var(--offwhite-2); border-left: 3px solid var(--pool); padding: 20px 24px; margin: 26px 0; border-radius: 0 4px 4px 0; }
.callout p:last-child { margin-bottom: 0; }
.contact-block { background: #fff; border: 1px solid var(--hairline); border-radius: 6px; padding: 26px 28px; margin-top: 30px; }
.contact-block p { margin-bottom: 6px; }

/* footer */
footer { background: var(--navy); color: rgba(247,245,240,0.7); padding: 52px 0 34px; }
footer .container { max-width: 1240px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-nav a { color: rgba(247,245,240,0.75); text-decoration: none; font-size: 15px; }
.footer-nav a:hover { color: var(--offwhite); }
.footer-bottom { border-top: 1px solid rgba(247,245,240,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(247,245,240,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: rgba(247,245,240,0.5); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--offwhite); }
