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

body {
  font-family: 'Barlow', sans-serif;
  background: #060d1f;
  color: #fff;
}

/* ── Header ── */
header {
  padding: 48px 0 32px;
  text-align: center;
}

.name {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff8c00;
}

/* ── Sections ── */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}

section { margin-bottom: 64px; }

.section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff8c00;
  margin-bottom: 20px;
}

/* ── Collage ── */
.grid {
  columns: 3;
  column-gap: 16px;
}

@media (max-width: 700px) {
  .grid { columns: 2; }
}

@media (max-width: 440px) {
  .grid { columns: 1; }
}

/* ── Photos ── */
.grid-photo {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: pointer;
  transition: opacity 0.2s;
}

.grid-photo:hover { opacity: 0.85; }

/* ── Videos ── */
.grid-video {
  width: calc(50% - 6px);
  aspect-ratio: 16/9;
  display: block;
  background: #111;
}

@media (max-width: 700px) {
  .grid-video { width: 100%; }
}

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}

#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
