:root{
  --bg: #0b1220;
  --ink: #111318;
  --parchment: #f2ead7;
  --parchment2:#e7dcc3;
  --muted:#6b7280;
  --gold:#c9a55a;

  --radius: 18px;
  --max: 980px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-serif, "EB Garamond", "Garamond", Georgia, serif;
  background: radial-gradient(1200px 600px at 50% -10%, #18233e 0%, var(--bg) 60%);
  color: #e9edf7;
  line-height: 1.6;
}

a{color: #d7c08b; text-decoration: none}
a:hover{text-decoration: underline}

.container{max-width: var(--max); margin:0 auto; padding: 28px 18px}
.site-header{
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand{
  display:flex; align-items:baseline; gap:14px; justify-content:space-between;
}
.brand-title{
  font-size: 20px; letter-spacing: .08em; text-transform: uppercase;
}
.nav a{margin-left:14px; font-size: 14px; opacity:.9}
.hero{
  padding: 56px 0 28px;
}
.hero h1{
  font-size: 54px; line-height: 1.05; margin:0 0 10px;
}
.hero p{max-width: 720px; font-size: 18px; opacity:.92}
.btn-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.btn.primary{
  border-color: rgba(201,165,90,.55);
  background: linear-gradient(180deg, rgba(201,165,90,.28), rgba(201,165,90,.12));
}
.section{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

 /* Artifact Layout */
.artifact-wrap{
  background: linear-gradient(180deg, var(--parchment), var(--parchment2));
  color: var(--ink);
  border-radius: var(--radius);
  padding: 34px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  position: relative;
  overflow:hidden;
}
.artifact-wrap:before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(0,0,0,.06), transparent 55%),
    radial-gradient(650px 280px at 100% 30%, rgba(0,0,0,.05), transparent 60%);
  pointer-events:none;
}
.artifact-label{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  opacity:.72;
  margin-bottom: 10px;
}
.artifact-wrap h1{
  font-size: 34px;
  margin: 0 0 10px;
}
.artifact-body{
  font-size: 18px;
}
.artifact-actions{
  margin-top: 22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.small-note{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size: 12px;
  opacity:.7;
  margin-top:10px;
}

.site-footer{
  padding: 28px 0;
  opacity:.75;
  font-size: 13px;
}
