:root{
  --bg:#ffffff;
  --text:#121212;
  --muted:#555;
  --accent:#b11b1b;
  --card:#f6f6f6;
  --border:#e5e5e5;
  --max: 1080px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  border-bottom:1px solid var(--border);
  background:#fff;
  position:sticky; top:0; z-index:50;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; flex-direction:column; gap:2px;
}
.brand .title{font-weight:800; letter-spacing:.2px; font-size:18px}
.brand .subtitle{font-size:12px; color:var(--muted)}
#menu{
  list-style:none; display:flex; gap:14px; margin:0; padding:0;
}
#menu a{padding:8px 10px; border-radius:10px}
#menu a.active{background:var(--card); text-decoration:none}
#menu-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:8px 10px;
  border-radius:10px;
  font-size:16px;
}
.hero{
  padding:28px 0 14px;
}
.hero h1{margin:0 0 10px; font-size:34px; line-height:1.15}
.hero p{margin:0 0 12px; color:var(--muted); max-width:75ch}
.badge{
  display:inline-block;
  border:1px solid rgba(177,27,27,.35);
  color:var(--accent);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  margin-bottom:12px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  padding:10px 0 26px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.card h2{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}
.card .meta{font-size:12px; color:var(--muted); margin-top:10px}
.card .actions{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
.btn{
  display:inline-block;
  border-radius:14px;
  padding:10px 12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:600;
}
.btn.primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}
.btn:hover{filter:brightness(0.98); text-decoration:none}
footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:12px;
}
.section-title{
  margin:20px 0 10px;
  font-size:22px;
}
.small{font-size:12px; color:var(--muted)}
hr{border:none; border-top:1px solid var(--border); margin:18px 0}
.video{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#000;
}
video{width:100%; height:auto; display:block}
.timeline{
  display:flex; flex-direction:column; gap:14px;
}
.entry{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
}
.entry .date{font-weight:800}
.entry .desc{color:var(--muted); margin-top:6px}
.doclist li{margin:8px 0}
form{
  display:grid; gap:10px; max-width:680px;
}
label{font-weight:700; font-size:13px}
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
.notice{
  border-left:4px solid var(--accent);
  background: #fff;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--border);
}
@media (max-width: 820px){
  #menu{display:none; flex-direction:column; gap:6px; padding:10px 0}
  #menu.open{display:flex}
  #menu-toggle{display:inline-block}
  .hero h1{font-size:28px}
}
