/* RaveReply — shared styles for legal pages (privacy, terms).
   Mirrors the design tokens in index.html so legal reads as RaveReply,
   not a generic boilerplate wall. */
:root{
  --ink:#1A1A17; --paper:#F7F3EC; --marigold:#F0A828; --brick:#C8553D;
  --field:#3E7D5A; --star:#E8B84B; --card:#FFFDF9;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--paper);color:var(--ink);font-family:"Fira Sans",system-ui,sans-serif;line-height:1.6;-webkit-font-smoothing:antialiased}
.wrap{max-width:780px;margin:0 auto;padding:0 24px}
a{color:inherit}

/* header */
header{border-bottom:2px solid var(--ink)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:18px 24px;max-width:1080px;margin:0 auto}
.brand{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:800;letter-spacing:-.02em;font-size:1.4rem;display:flex;align-items:center;gap:.4rem;text-decoration:none}
.brand .star{color:var(--marigold)}
.back{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:700;font-size:.95rem;text-decoration:none;border-bottom:2px solid transparent}
.back:hover{border-bottom-color:var(--ink)}

/* legal prose */
.legal{padding:48px 0 64px}
.legal h1{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:800;letter-spacing:-.02em;line-height:1.05;font-size:clamp(2rem,4vw,2.8rem);margin-bottom:8px}
.legal .meta{color:#6a6354;font-size:.95rem;margin-bottom:6px}
.legal .lede{font-size:1.12rem;color:#3f3a2e;margin:18px 0 8px;max-width:60ch}
.legal h2{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:700;letter-spacing:-.01em;font-size:1.35rem;margin:34px 0 10px;padding-top:18px;border-top:2px solid #e7e0d2}
.legal h3{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:700;font-size:1.05rem;margin:18px 0 6px}
.legal p{margin:0 0 12px;max-width:68ch}
.legal ul{margin:0 0 14px 1.1rem;max-width:66ch}
.legal li{margin:0 0 7px}
.legal strong{font-weight:600}
.legal a.inline{font-weight:600;border-bottom:1px solid var(--marigold)}
.legal a.inline:hover{border-bottom-width:2px}

/* a small branded callout for "questions?" / key notes */
.callout{background:var(--card);border:2px solid var(--ink);border-radius:14px;padding:16px 18px;margin:22px 0}
.callout p{margin:0;max-width:none}
.callout strong{font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:700}

/* footer — identical structure to index.html */
footer{border-top:2px solid var(--ink);padding:28px 0;font-size:.9rem;color:#5b5444}
.foot{display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;align-items:flex-start}
.foot a{text-decoration:none;border-bottom:1px solid transparent}
.foot a:hover{border-bottom-color:var(--ink)}
.footlinks{display:flex;gap:18px;font-family:"Bricolage Grotesque",system-ui,sans-serif;font-weight:700}
.disclaimer{font-size:.8rem;color:#8a8270;margin-top:6px;max-width:48ch}

@media(max-width:640px){
  .legal{padding:32px 0 48px}
}
