:root {
  color-scheme: light;
  --boot-bg: #f4efe3;
  --boot-line: rgba(141, 110, 63, 0.18);
  --boot-accent: #8d6e3f;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --boot-bg: #181512;
  --boot-line: rgba(215, 179, 109, 0.18);
  --boot-accent: #d7b36d;
}

html,
body {
  margin: 0;
  background: var(--boot-bg);
}

#initial-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  overflow: hidden;
  pointer-events: none;
  background: var(--boot-bg);
  opacity: 1;
}

html[data-initial-intro='pending'] #initial-splash {
  display: grid;
}

#initial-splash[data-state='handoff'] {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.seo-static-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}

.seo-static-content h1,
.seo-static-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 44px);
}

.seo-static-content p {
  margin: 0 0 20px;
  color: #5f5649;
}

.seo-static-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-static-content a {
  color: #8d6e3f;
  font-weight: 700;
}
