.hero {
  padding: 55px 20px 0;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 500;
  letter-spacing: -1.7px;
  line-height: 1;
  max-width: 1600px;
  margin: 0 auto;
  white-space: nowrap;
  color: #1b0276;
}

.hero p {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero + .section {
  padding-top: 40px;
  padding-bottom: 0;
}

.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 36px;
  max-width: 1500px;
  margin: 0 auto;
}

.home-collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #eee;
  aspect-ratio: 4 / 2.65;
}

.home-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.home-collection-card:hover img {
  filter: grayscale(0%);
}

.home-collection-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-collection-card span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 3px 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 500;
}

.cta {
  padding: 24px var(--site-gutter) 50px;
  text-align: center;
  background: var(--main-bg);
}

.cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #111;
}

.cta p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(15px, 4vw, 20px);
}

@media (max-width: 900px) {
  .hero h1 {
    white-space: normal;
  }

  .home-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 64px var(--site-gutter) 36px;
  }

  .hero h1 {
    font-size: 38px;
    margin: 0 auto;
  }

  .hero + .section {
    padding-top: 20px;
  }

  .home-collection-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px var(--site-gutter) 50px;
  }
}


/* Sept 3 vertically centered home composition */
@media (min-width:901px){
  main{
    min-height:calc(100vh - 118px - 98px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:34px 0 18px;
  }
  .hero{padding:0 20px;}
  .hero + .section{padding-top:36px;padding-bottom:0;}
  .cta{padding-top:24px;padding-bottom:10px;}
}
