/* Shared styling for the legal pages (privacy policy, terms of service).
   Tokens and type match www/index.html so these read as part of the site. */

:root {
  --royal: #2D4A9E; --electric: #4F74E3; --pale: #C9D6F5;
  --bg: #F7F9FE; --card: #FFFFFF; --line: #E4EAF7; --ice: #EEF3FB;
  --ink: #101A38; --mut: #54608A; --soft: #8A94B5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16.5px;
}

a { color: var(--royal); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 46rem; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

/* ---- header ---- */
.topbar { background: var(--card); border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.brand { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; }
.brand b { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: .5px; color: var(--royal); }
.brand i { font-style: normal; font-size: .62rem; font-weight: 600; letter-spacing: .42em; color: var(--soft); }
.back { font-size: .9rem; }

/* ---- title ---- */
header.page { padding: clamp(2.4rem, 6vw, 3.6rem) 0 1.4rem; }
header.page h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 800; letter-spacing: -.5px; line-height: 1.15; }
.dates { margin-top: .6rem; font-size: .9rem; color: var(--mut); }

/* ---- body ---- */
main { padding-bottom: 4rem; }
section { margin-top: 2.2rem; }
section h2 {
  font-family: 'Sora', sans-serif; font-size: 1.12rem; font-weight: 700;
  padding-bottom: .55rem; border-bottom: 1px solid var(--line); margin-bottom: .9rem;
}
p { margin-bottom: 1rem; color: var(--mut); }
p strong, li strong { color: var(--ink); }
ul { margin: 0 0 1rem 1.1rem; color: var(--mut); }
li { margin-bottom: .55rem; }

/* A boxed notice for the "we are not a law firm" statements, which are the
   ones a reader most needs to catch. */
.notice {
  background: var(--ice); border: 1px solid var(--line); border-left: 3px solid var(--royal);
  border-radius: 10px; padding: 1.05rem 1.25rem; margin-bottom: 1rem;
}
.notice p:last-child { margin-bottom: 0; }

/* Legal boilerplate is set in caps in the source; small caps at a smaller size
   keeps it readable without losing the emphasis. */
.legalese { font-size: .88rem; letter-spacing: .01em; }

.contact { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.4rem; }
.contact p { margin-bottom: .25rem; }
.contact .name { color: var(--ink); font-weight: 700; }

footer { border-top: 1px solid var(--line); padding: 1.6rem 0 2.4rem; }
footer .wrap { display: flex; gap: 1rem 1.6rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
footer p { margin: 0; font-size: .86rem; color: var(--soft); }
footer nav { display: flex; gap: 1.2rem; font-size: .88rem; }
