/**
 * ============================================================================
 *  ART PAGE
 * ============================================================================
 *  Centred intro followed by a single-track carousel. Each slide pairs a
 *  painting with its collection, title, description and availability badge.
 *  Prev / next arrows sit over the frame; dots below track position.
 * ============================================================================
 */

/* -------------------------------------------------------------------------- */
/*  HEADER                                                                     */
/* -------------------------------------------------------------------------- */
.nh-art-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 44px) clamp(20px, 3vw, 32px);
  text-align: center;
}

.nh-art-head__title {
  font-family: var(--nh-serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  color: var(--nh-ink);
  margin-bottom: 18px;
}

.nh-art-head__desc {
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--nh-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*  GALLERY CAROUSEL                                                           */
/* -------------------------------------------------------------------------- */
.nh-gallery {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) clamp(18px, 5vw, 44px) clamp(40px, 6vw, 72px);
}

.nh-gallery__viewport {
  position: relative;
}

.nh-gallery__frame {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(58, 47, 52, 0.08);
  background: #fff;
  box-shadow: 0 30px 70px -40px rgba(120, 60, 80, 0.5);
}

.nh-gallery__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-gallery__slide {
  width: 100%;
  flex-shrink: 0;
}

.nh-gallery__slide-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 34px);
}

.nh-gallery__media {
  flex: 1 1 280px;
  min-width: 240px;
}

.nh-gallery__img {
  width: 100%;
  height: clamp(260px, 42vw, 400px);
  overflow: hidden;
  border-radius: 16px;
}

.nh-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nh-gallery__copy {
  flex: 1 1 240px;
  min-width: 220px;
}

.nh-gallery__title {
  font-family: var(--nh-serif);
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 30px);
  color: var(--nh-ink);
  margin-bottom: 14px;
}

.nh-gallery__desc {
  font-size: 14.5px;
  color: var(--nh-muted);
  margin-bottom: 18px;
}

.nh-gallery__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--nh-blush);
  color: var(--nh-plum);
  padding: 6px 14px;
  border-radius: 999px;
}

.nh-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(58, 47, 52, 0.1);
  box-shadow: 0 10px 30px -14px rgba(120, 60, 80, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease;
}

.nh-gallery__nav:hover {
  background: var(--nh-blush);
}

.nh-gallery__nav--prev {
  inset-inline-start: clamp(6px, 1.2vw, 14px);
}

.nh-gallery__nav--next {
  inset-inline-end: clamp(6px, 1.2vw, 14px);
}

.nh-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.nh-gallery__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  background: rgba(181, 103, 126, 0.3);
}

.nh-gallery__dot--active {
  width: 26px;
  background: var(--nh-plum);
}
