/* Shared styles for the AskMyFit legal pages (privacy, terms, ai-disclosure). */
:root {
  --cream100: #F7F3EC; --cream200: #EFE8DB; --white: #FFFFFF;
  --ink800: #152441; --ink600: #3C4E78; --ink500: #6A7A9C;
  --terra500: #C8553D; --terra600: #B54A36; --terra100: #F8E3DC;
  --border: rgba(21,36,65,0.12);
  --display: 'Fraunces', Georgia, serif;
  --ui: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--cream100); color: var(--ink800); font-family: var(--ui);
  -webkit-font-smoothing: antialiased; line-height: 1.55;
  min-height: 100vh; display: flex; flex-direction: column;
}
.wrap { width: 100%; max-width: 680px; margin: 0 auto; padding: 40px 24px 56px; flex: 1; }
.top { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink800); text-decoration: none; }
.home { font-size: 13px; color: var(--terra600); text-decoration: none; font-weight: 600; }
.home:hover { text-decoration: underline; }
h1 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(30px, 6vw, 40px); line-height: 1.08; margin: 34px 0 0; }
.draft { margin: 18px 0 0; background: var(--cream200); border: 1px solid var(--terra600);
  border-radius: 8px; padding: 12px 14px; color: var(--terra600); font-size: 12.5px;
  font-weight: 600; line-height: 1.45; }
.intro { margin: 22px 0 0; font-size: 15px; color: var(--ink600); }
section { margin: 26px 0 0; }
h2 { font-family: var(--ui); font-weight: 700; font-size: 16px; color: var(--ink800); margin: 0 0 7px; }
p { margin: 0; font-size: 14.5px; color: var(--ink600); }
footer { border-top: 1px solid var(--border); }
.foot-in { max-width: 680px; margin: 0 auto; padding: 20px 24px; font-size: 12px; color: var(--ink500);
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; }
.foot-in a { color: var(--ink500); text-decoration: none; }
.foot-in a:hover { color: var(--terra600); }
