@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');
@import url('https://fonts.cdnfonts.com/css/plush-trial');

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

body {
  font-family: 'Neue Haas Grotesk Display Pro';
  background: #fff;
  color: #111;
}

#topbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  pointer-events: none;
  background: transparent;
  z-index: 10;
}

#project-label {
  font-size: 16px;
  color: #111;
  border: 0.5px solid #ddd;
  border-radius: 999px;
  padding: 6px 14px;
  background: #fff;
  pointer-events: all;
}

#close-btn {
  font-size: 14px;
  color: #111;
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
}

#close-btn:hover {
  background: #f5f5f5;
}

#content {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 24px 80px;
}

.project-title-h {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 48px;
  color: #111;
}

.full-img {
  width: 100%;
  display: block;
  background: #e0e0e0;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 8px;
}

.full-img.tall    { aspect-ratio: 4/3; }
.full-img.portrait { aspect-ratio: 2/3; }

.img-caption {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-block {
  margin-bottom: 48px;
}

.text-block p {
  font-family: 'plush-trial', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.credits {
  border-top: 0.5px solid #eee;
  padding-top: 32px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.credit-label {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.credit-value {
  font-size: 13px;
  color: #111;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #project-label {
    font-size: 11px;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .project-title-h { font-size: 12px; }
  .text-block p { font-size: 14px; }
  .credits { grid-template-columns: 1fr; }
}
