/* pages.css — shared styling for subpages (danke + legal). Matches index.html, no GSAP. */
@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("/assets/fonts/inter-400.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("/assets/fonts/inter-500.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("/assets/fonts/inter-600.woff2") format("woff2")}
@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url("/assets/fonts/inter-700.woff2") format("woff2")}

:root{
  --bg:#f5efe6; --bg-2:#fffdf9; --card:#ffffff;
  --fg:#2c2620; --fg-soft:#5b5249; --muted:#6f675d;
  --accent:#cb5a33;
  --border:rgba(45,38,32,.12);
  --radius:18px; --pill:999px; --ease:cubic-bezier(.16,1,.3,1);
}
*{margin:0;padding:0;box-sizing:border-box}
body{background:var(--bg);color:var(--fg);font-family:"Inter",system-ui,sans-serif;-webkit-font-smoothing:antialiased;line-height:1.6}
.wrap{max-width:1240px;margin:0 auto;padding:0 32px}
a{color:var(--accent)}
:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

/* header */
.pg-head{border-bottom:1px solid var(--border);background:var(--bg)}
.pg-head .wrap{display:flex;align-items:center;justify-content:space-between;padding-top:20px;padding-bottom:20px}
.logo{font-weight:700;font-size:22px;letter-spacing:-.03em;color:var(--fg);text-decoration:none}
.logo span{color:var(--accent)}
.back{font-size:14px;font-weight:500;color:var(--fg-soft);text-decoration:none}
.back:hover{color:var(--fg)}

/* content */
main.legal{padding:64px 0 80px}
main.legal .wrap{max-width:780px}
.legal h1{font-size:clamp(32px,4.5vw,52px);font-weight:600;letter-spacing:-.03em;line-height:1.08;margin-bottom:14px}
.legal .lead{color:var(--fg-soft);font-size:18px;margin-bottom:40px}
.legal h2{font-size:24px;font-weight:600;letter-spacing:-.02em;margin:38px 0 12px}
.legal h3{font-size:18px;font-weight:600;margin:24px 0 8px}
.legal p,.legal li{color:var(--fg-soft);font-size:16px;line-height:1.7}
.legal p{margin-bottom:14px}
.legal ul,.legal ol{margin:0 0 14px 22px}
.legal li{margin-bottom:7px}
.legal strong{color:var(--fg)}
.legal .updated{color:var(--muted);font-size:14px;margin-top:48px}

/* placeholder marker for data Marvin must fill */
.ph{background:#fdf0d5;border:1px dashed #d9a441;border-radius:6px;padding:1px 7px;color:#8a5a12;font-weight:600;font-size:.95em}

/* thank-you */
.thanks{min-height:72vh;display:grid;place-items:center;text-align:center;padding:80px 0}
.thanks .inner{max-width:600px}
.thanks .mark{width:78px;height:78px;border-radius:50%;background:var(--accent);display:grid;place-items:center;margin:0 auto 28px}
.thanks .mark svg{width:38px;height:38px;stroke:#fff;stroke-width:2.4;fill:none;stroke-linecap:round;stroke-linejoin:round}
.thanks h1{font-size:clamp(34px,5vw,56px);font-weight:600;letter-spacing:-.03em;line-height:1.05;margin-bottom:18px}
.thanks p{color:var(--fg-soft);font-size:18px;line-height:1.55;margin-bottom:32px}
.pill{display:inline-flex;align-items:center;gap:9px;background:var(--accent);color:#fff;border-radius:var(--pill);padding:14px 28px;font-weight:600;font-size:15px;text-decoration:none;transition:transform .3s var(--ease),box-shadow .3s var(--ease);box-shadow:0 6px 22px rgba(203,90,51,.28)}
.pill:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(203,90,51,.4)}

/* footer */
footer{background:var(--fg);color:rgba(255,255,255,.72);padding:48px 0 36px;margin-top:10px}
.foot-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;align-items:center;border-bottom:1px solid rgba(255,255,255,.12);padding-bottom:24px;margin-bottom:20px}
.foot-logo{color:#fff;font-weight:700;font-size:20px}
.foot-logo span{color:var(--accent)}
.foot-links{display:flex;gap:22px;flex-wrap:wrap}
.foot-links a{color:rgba(255,255,255,.72);text-decoration:none;font-size:14px}
.foot-links a:hover{color:#fff}
.foot-bottom{font-size:13px;color:rgba(255,255,255,.62)}
.foot-badge{height:22px;width:auto;display:block;margin-bottom:16px;opacity:.92}

@media(max-width:600px){
  main.legal{padding:48px 0 64px}
}
