.art-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.art-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.55);
}

.art-hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  padding: 140px 32px 40px;
  color: #fff;
}

.art-hero-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  margin: 0 0 22px;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 16px;
}

.art-copyright {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.gallery-section {
  padding: 90px 0 110px;
}

.gallery-title {
  text-align: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.art-card {
  margin: 0;
}

.art-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.art-card figcaption {
  text-align: center;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.art-name {
  font-family: var(--font-display);
  font-size: 16px;
}

.art-dim {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--stone);
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .art-hero-overlay { padding-top: 120px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 320px; }
}
