/* Base reset and typography */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Header */
.header { border-bottom: 1px solid #eee; background: #fafafa; }
.header-wrap { display: flex; align-items: center; gap: 16px; padding: 16px 0; }
.avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.header h1 { font-size: 1.25rem; margin: 0 0 4px; }
.tagline { margin: 0; color: #555; }
.disclaimer { margin: 4px 0 0; color: #666; font-size: 0.95rem; }

/* TOC navigation */
.toc { position: sticky; top: 0; z-index: 10; background: #fff; border-bottom: 1px solid #eee; }
.toc .container { display: flex; flex-wrap: wrap; gap: 12px; padding: 10px 16px; }
.toc a { color: #0b5bd3; text-decoration: none; font-weight: 600; }
.toc a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 32px 0; }
.section h2 { font-size: 1.4rem; margin: 0 0 12px; }
.section h3 { font-size: 1.1rem; margin: 20px 0 8px; }

/* Hero */
.hero { padding: 28px 0; background: #fff; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.hero-text p { margin: 0 0 12px; }
.hero-image img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #eee; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.btn.primary { background: #0b5bd3; color: #fff; }
.btn.secondary { background: #111; color: #fff; }
.btn:hover { filter: brightness(1.05); }
.age-note { color: #666; font-size: 0.95rem; }

/* Link cards */
.link-card { border: 1px solid #eee; border-radius: 10px; padding: 16px; margin: 12px 0; background: #fff; }
.link-card h3 { margin-top: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery img { width: 100%; height: auto; border-radius: 10px; border: 1px solid #eee; }

/* Schedule table */
.schedule { width: 100%; border-collapse: collapse; margin: 10px 0; }
.schedule th, .schedule td { border: 1px solid #eee; padding: 10px; text-align: left; }
.schedule thead { background: #fafafa; }
.note { color: #666; font-size: 0.95rem; }

/* Footer */
.footer { border-top: 1px solid #eee; background: #fafafa; }
.footer .container { padding: 16px 0; }
.footer p { margin: 6px 0; color: #444; }
.footer a { color: #0b5bd3; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Responsive */
@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .header h1 { font-size: 1.5rem; }
  .section h2 { font-size: 1.6rem; }
}