:root{
  --navy:#0b2a4e;--navy-2:#143a63;--navy-3:#1d4e80;--ink:#06162a;
  --gold:#e8a21c;--gold-light:#f6bc4e;--gold-dark:#be7d0e;--amber:#cf7a34;
  --bg:#fff;--bg-soft:#f4f5f7;--bg-ticker:#fbfaf6;
  --text:#16243a;--body:#5b6573;--muted:#8893a2;--muted-2:#9aa3b1;
  --line:#e7eaef;--line-2:#ebedf1;
  --maxw:1280px;
  /* 字族 token（--font-sans / --font-serif）已移至 typography.css */

}
*{box-sizing:border-box}
html{font-size:16px}
body{margin:0;font-family:var(--font-sans);font-weight:var(--fw-regular);color:var(--text);background:var(--bg);line-height:var(--line-normal);-webkit-font-smoothing:antialiased;overflow-x:hidden;display:flex;flex-direction:column;min-height:100vh}
a{color:var(--navy);text-decoration:none;transition:color .15s}
a:hover{color:var(--gold-dark)}
img{max-width:100%;display:block}
/* h1–h6 的字型／字重／行高／字距統一在 typography.css */

/* inner pages stay centered; homepage bands go full-bleed */
.site-main{max-width:var(--maxw);margin:0 auto;padding:24px;flex:1 0 auto;width:100%}
.site-main:has(.home-page){max-width:none;padding:0}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
@media(max-width:767px){.site-main{padding:16px}.wrap{padding:0 16px}}
