/* Imprint and privacy pages. Loaded after styles.css, which supplies the
 * design tokens, the reset and the language switcher component.
 *
 * These two pages previously carried near-identical copies of this sheet
 * inline. Merging them left three differences to settle: the page heading now
 * uses the imprint's slightly larger size on both, section spacing splits the
 * difference at 28px, and the privacy page's numbered section headings keep
 * their own look through the .numbered class rather than a second stylesheet.
 */

body{background:var(--base);color:var(--ink);font-family:'Inter',system-ui,sans-serif;font-weight:450;line-height:1.65;padding:0 20px}
a{color:var(--gold-deep);text-decoration:underline;text-underline-offset:2px;word-break:break-word}
a:hover{color:var(--ink)}
.wrap{max-width:760px;margin:0 auto;padding:44px 0 72px}

header.doc{border-bottom:2px solid var(--ink);padding-bottom:24px;margin-bottom:36px}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:26px}
.brand{display:flex;align-items:center;gap:11px}
.brand .bird{width:30px;height:30px;color:var(--gold)}
.brand .wm{font-family:'Google Sans Flex',sans-serif;font-size:20px;letter-spacing:-.02em}
.brand .wm .t{font-weight:300}.brand .wm .n{font-weight:700;color:var(--gold)}
.nav{display:flex;gap:20px;font-size:13.5px;font-weight:500;align-items:center}
.nav a{color:var(--muted);text-decoration:none}.nav a:hover{color:var(--ink)}.nav a[aria-current]{color:var(--ink);font-weight:600}
.kick{font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:10px}
header.doc h1{font-family:'Google Sans Flex',sans-serif;font-weight:700;font-size:clamp(30px,5vw,46px);letter-spacing:-.03em;line-height:1.05}
header.doc .intro{margin-top:14px;font-size:15px;color:var(--muted);max-width:60ch}
.lang{margin-top:14px;font-size:13.5px;color:var(--muted)}
.lang b{color:var(--ink)}

/* These pages sit on a light background throughout, so the switcher needs
 * only one colour set -- unlike the landing page, whose bar inverts on
 * scroll. The links inside its panel must also opt out of the underline that
 * every other link on a legal page carries. */
.nav .langsw{--sw-fg:var(--muted);--sw-fg-hover:var(--ink);--sw-border:var(--sage);--sw-border-hover:var(--ink)}
.langsw-menu a{text-decoration:none}

section.blk{margin:28px 0}
section.blk h2{font-family:'Google Sans Flex',sans-serif;font-weight:600;font-size:17px;letter-spacing:-.01em;margin-bottom:8px}
section.blk h2.numbered{font-weight:700;font-size:19px;letter-spacing:-.02em;margin-bottom:12px;display:flex;gap:10px;align-items:baseline}
section.blk h2 .no{font-family:'JetBrains Mono',monospace;font-size:13px;color:var(--gold-deep);font-weight:600}
section.blk p{color:var(--ink);font-size:15px;margin-bottom:10px}
section.blk .muted{color:var(--muted);font-size:14px}
section.blk ul{list-style:none;margin:10px 0}
section.blk ul li{position:relative;padding-left:18px;font-size:15px;margin-bottom:6px}
section.blk ul li::before{content:"";position:absolute;left:2px;top:9px;width:6px;height:6px;background:var(--gold);border-radius:2px;transform:rotate(45deg)}

.addr{background:var(--card);border:1px solid var(--sage);border-radius:10px;padding:16px 18px;font-size:14.5px;line-height:1.6;margin:8px 0}
.facts{display:grid;gap:4px;font-size:14.5px;margin:8px 0}
.facts .f{display:flex;gap:10px}.facts .f b{min-width:130px;color:var(--muted);font-weight:500}

.card{background:var(--card);border:1px solid var(--sage);border-radius:12px;padding:20px 22px;margin:26px 0}
.card .row{display:flex;justify-content:space-between;gap:16px;padding:7px 0;border-bottom:1px dashed var(--line);font-size:15px}
.card .row:last-child{border-bottom:0}
.card .k{color:var(--muted);font-weight:500;min-width:180px}
.card .v{text-align:right}
.card .v.mono{font-family:'JetBrains Mono',monospace;font-size:13.5px}

/* The switcher adds width to a header row that previously held three links
 * and the logo, so on a narrow screen the row is allowed to wrap rather than
 * squeeze. */
@media (max-width:560px){
  .topbar{flex-wrap:wrap}
  .nav{gap:14px;font-size:13px}
}

footer.doc{margin-top:52px;padding-top:22px;border-top:1px solid var(--line);font-size:13px;color:var(--muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px}
footer.doc .fnav a{color:var(--muted);text-decoration:none;margin-left:16px}
footer.doc .fnav a:hover{color:var(--ink)}
