* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #111;
  color: #d0d0d0;
  font-family: Georgia, serif;
  line-height: 1.8;
  min-height: 100vh;
}

.back {
  position: fixed;
  top: 22px;
  left: 24px;
  z-index: 100;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.back:hover { color: #ccc; }

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

h1 {
  font-size: 1.8rem;
  font-weight: normal;
  font-style: italic;
  color: #eee;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 40px;
}

hr {
  border: none;
  border-top: 1px solid #222;
  margin: 36px 0;
}

p { margin-bottom: 1.2em; color: #aaa; }

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 24px;
}

#gallery a { display: block; overflow: hidden; }

#gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.3s, filter 0.3s;
}

#gallery a:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.placeholder {
  color: #333;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 40px;
}
