html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
.container { width: min(1400px, calc(100% - 48px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid #000; }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
}
.site-label { font-size: 18px; letter-spacing: -0.02em; }
.site-nav { display: flex; gap: 18px; font-size: 15px; letter-spacing: -0.02em; }
.site-nav a:hover, .site-nav a.active { text-decoration: underline; }
.section-border { border-bottom: 1px solid #000; }
.gallery-intro { padding: 32px 0 38px; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: 48px;
  align-items: end;
}
.eyebrow { font-size: 18px; margin-bottom: 12px; letter-spacing: -0.02em; }
h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  line-height: .88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  font-weight: 900;
}
.intro-note {
  border-left: 1px solid #000;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.program-banner,
.finale-photo { width: 100%; background: #fff; }
.program-banner img,
.finale-photo img { width: 100%; height: auto; }
.photo-wall { padding: 10px; }
.masonry {
  position: relative;
  width: 100%;
}
.masonry-item {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: width .15s ease;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.afterword-photos { padding: 36px 24px 48px; }
.afterword-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.afterword-grid img { width: 100%; height: auto; }
.footer-section { padding: 40px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 4fr) minmax(0, 4fr) minmax(280px, 4fr);
  gap: 48px;
  align-items: start;
}
.footer-label,
.footer-copy,
.footer-contact {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.footer-contact { text-align: right; }
.footer-contact a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .intro-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-note { border-left: 0; padding-left: 0; }
  .footer-contact { text-align: left; }
}
@media (max-width: 640px) {
  .container { width: min(1400px, calc(100% - 28px)); }
  .header-inner { flex-direction: column; gap: 10px; }
  .site-nav { gap: 14px; flex-wrap: wrap; }
  .gallery-intro { padding: 26px 0 30px; }
  .photo-wall { padding: 6px; }
  .afterword-photos { padding: 24px 10px 32px; }
  .afterword-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}
