
:root{
  --bg:#ffffff;
  --text:#0a0a0a;
  --muted:#4b5563;
  --border:#e5e7eb;
  --card:#ffffff;
  --link:#111111;
  --header:rgba(255,255,255,.94);
  --shadow:0 10px 30px rgba(0,0,0,.05);
  --hero-shadow:0 1px 12px rgba(0,0,0,.35);
  --soft-1:#f6f7f8;
  --soft-2:#f4f4f5;
  --soft-3:#f8fafc;
  --maxw:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
.site-header{
  position:sticky;top:0;z-index:40;
  background:var(--header);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--border);
}
.header-row{
  min-height:72px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{
  font-weight:900;font-size:1.15rem;letter-spacing:.2px;color:var(--text);
}
.nav{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:2px}
.nav a{
  padding:10px 12px;border-radius:10px;font-size:.96rem;color:#111827;
}
.nav a:hover{background:#f3f4f6;text-decoration:none}
main{padding:24px 0 36px}
.hero{
  margin:0 0 28px;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  position:relative;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero img{
  width:100%;height:440px;object-fit:cover;
  filter:contrast(1.02) saturate(1.03);
}
.hero .overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.46));
}
.hero .inner{
  position:absolute;left:26px;right:26px;bottom:28px;
  color:#fff;text-shadow:var(--hero-shadow);
}
.hero h1{margin:0 0 10px;font-size:clamp(2rem,4vw,3rem);line-height:1.1}
.hero p{margin:0;max-width:820px;font-size:1.08rem;opacity:.96}
.page-intro{
  margin:0 0 20px;
  color:var(--muted);
  font-size:1.02rem;
}
.grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
}
.section{scroll-margin-top:92px;margin:0 0 22px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  box-shadow:0 1px 0 rgba(0,0,0,.03);
}
.card + .card{margin-top:14px}
.card.soft-1{background:var(--soft-1)}
.card.soft-2{background:var(--soft-2)}
.card.soft-3{background:var(--soft-3)}
.section h2,.card h2,.card h3{
  margin-top:0;
  line-height:1.25;
}
p,li{font-size:1rem}
ul,ol{padding-left:20px}
.kpis{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.kpi{
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  background:#fff;
}
.kpi .label{display:block;font-size:.82rem;color:var(--muted);margin-bottom:4px}
.kpi .value{display:block;font-size:1.1rem;font-weight:700}
.facts{
  display:flex;flex-wrap:wrap;gap:10px;margin-top:10px
}
.chip{
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 12px;
  background:#fff;
  color:var(--muted);
  font-size:.9rem
}
.table-wrap{
  overflow:auto;border:1px solid var(--border);border-radius:16px;background:#fff
}
.table{width:100%;border-collapse:collapse}
.table th,.table td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--border)
}
.table th{background:#fafafa}
.gallery{
  display:grid;gap:12px;grid-template-columns:2fr 1fr 1fr
}
.gallery figure{margin:0}
.gallery img{
  width:100%;height:100%;min-height:220px;object-fit:cover;
  border-radius:16px;border:1px solid var(--border)
}
.muted{color:var(--muted)}
.callout{
  border-left:4px solid #111827;
  padding:14px 16px;
  background:#fafafa;border-radius:0 14px 14px 0
}
.footer{
  border-top:1px solid var(--border);
  padding:18px 0 26px;
  color:var(--muted);
  font-size:.94rem
}
.breadcrumbs{
  font-size:.92rem;color:var(--muted);margin-bottom:12px
}
.breadcrumbs a{color:var(--muted)}
.content h2{margin-top:28px}
.content h3{margin-top:22px}
.two-col{
  display:grid;grid-template-columns:1.2fr .8fr;gap:18px
}
.notice{
  font-size:.94rem;color:var(--muted)
}
@media (max-width: 960px){
  .grid,.two-col{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .hero img{height:320px}
}
@media (max-width: 640px){
  .wrap{padding:0 16px}
  .header-row{align-items:flex-start;padding:12px 0}
  .nav{justify-content:flex-start}
  .nav a{padding:8px 10px}
  .hero .inner{left:18px;right:18px;bottom:18px}
  .card{padding:16px}
  .kpis{grid-template-columns:1fr}
}
