:root{
  --bg:#ffffff; --text:#333333; --muted:#666666;
  --brand:#E67E22; --brand-600:#cf6d17;
  --border:#ffe5d0; --shadow:0 10px 30px rgba(0,0,0,0.08);
}
*{box-sizing:border-box}
html, body { width: 100%; overflow-x: hidden; }
body { overflow-x: clip; } /* modern, safer */
body{
  margin:0; font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans";
  color:var(--text); background:var(--bg); line-height:1.6; scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
.container{width:min(1100px,92vw); margin-inline:auto}
.skip-link{position:absolute; left:-999px; top:-999px}
.skip-link:focus{left:1rem; top:1rem; background:#000; color:#fff; padding:.5rem .75rem; z-index:10000; border-radius:.25rem}
