:root {
  --bg: #fff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --line: #eaeaea;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
}
.container { width: min(1040px, 92vw); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(1.2) blur(6px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { font-weight: 700; letter-spacing: 0.2px; color: var(--fg); text-decoration: none; }
.nav { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav a {
  color: var(--fg); text-decoration: none; padding: 8px 10px; border-radius: 6px; transition: background 140ms ease;
}
.nav a:hover { background: #f5f5f5; }
.nav a.is-active { background: #111; color: #fff; }

.section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.section h1, .section h2 { line-height: 1.2; margin: 0 0 12px; }
.section p { margin: 0 0 10px; color: var(--fg); }
.note, .disclaimer, .caption-note { color: var(--muted); font-size: 0.95rem; }

.bullets { margin: 8px 0 0; padding-left: 18px; }
.bullets li { margin: 6px 0; }

.grid.two { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 880px) { .grid.two { grid-template-columns: 1fr 1fr; } }

.gallery { grid-template-columns: 1fr; gap: 18px; }
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.gallery img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; transition: transform 180ms ease; }
.gallery figure:hover img { transform: scale(1.02); }
.gallery figcaption { padding: 10px 12px; font-size: 0.95rem; color: var(--muted); }

.facts { margin: 8px 0 0; padding-left: 18px; }
.facts li { margin: 6px 0; }

.site-footer { padding: 28px 0; }
.site-footer .container { border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); }

