html, body {
  margin: 0;
  padding: 0;
  background: #FFF;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

canvas {
  display: block;
}

#loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: sans-serif;
  font-size: 24px;
  color: #000000;
  z-index: 9999;
}

/* ---------- banner ---------- */
#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 420px;
  background: #FFF;
  overflow: hidden;
  
}

#banner-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#banner-canvas:active {
  cursor: grabbing;
}

/* Project list is rendered into the windchime canvas — DOM list hidden. */
#projects { display: none; }

/* Kept for fallback / reference if you ever want to re-enable: */
#projects.show {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 24px 24px 24px;
  max-width: 1600px;
  margin: 0 auto;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.project:hover {
  transform: translateY(-4px);
}

.project h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.project .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  #projects {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}