@font-face{
  font-family: "Cinzel";
  src: url("assets/fonts/Cinzel/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "News Cycle";
  src: url("assets/fonts/News_Cycle/NewsCycle-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "News Cycle";
  src: url("assets/fonts/News_Cycle/NewsCycle-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #101012;
  --text: #f4f2ee;
  --muted: rgba(244,242,238,.72);
  --line: rgba(244,242,238,.12);

  --gold: #c7a46a;
  --gold-soft: rgba(199,164,106,.16);

  --shadow: 0 18px 55px rgba(0,0,0,.38);
  --shadow-soft: 0 14px 45px rgba(0,0,0,.30);

  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;

  --header-h: 78px;

  --sans: "News Cycle", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  font-weight: 400;
  color:var(--text);
  background:
    radial-gradient(1200px 650px at 15% -10%, rgba(199,164,106,.10), transparent 56%),
    radial-gradient(900px 500px at 92% 0%, rgba(255,255,255,.07), transparent 60%),
    linear-gradient(180deg, #121216 0%, #0d0d11 55%, #0b0b0f 100%);
  line-height:1.65;
}

section[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--max), calc(100% - 2rem));
  margin-inline:auto;
}

.icon-sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.icon{
  width:1.05rem; height:1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}
.icon.inline{ vertical-align:-.18em; margin-right:.35rem; }

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:1rem; top:1rem; width:auto; height:auto;
  background: rgba(0,0,0,.8);
  padding:.75rem 1rem;
  border-radius:999px;
  outline:1px solid var(--line);
}

h1,h2,h3{
  font-family: var(--serif);
  letter-spacing: .12px;
}
h2::after{
  content:"";
  display:block;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199,164,106,.70), rgba(199,164,106,0));
  margin-top: .35rem;
}

.muted{ color:var(--muted); }
.small{ font-size:.92rem; }
