.main {
  min-height: 100dvh;
}

.hero {
  position: relative;
  min-height: 72dvh;
  overflow: hidden;
}

.heroImage {
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(39, 30, 20, 0.56) 0%, rgba(39, 30, 20, 0.12) 38%),
    linear-gradient(to top, rgba(39, 30, 20, 0.7) 0%, rgba(39, 30, 20, 0.18) 38%);
}

.heroContent {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: clamp(2.8rem, 14vh, 6rem);
  z-index: 2;
  max-width: 46rem;
  color: #f7f4ee;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.67rem;
  opacity: 0.88;
}

.title {
  margin: 0.62rem 0 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(2rem, 6.2vw, 4.2rem);
  line-height: 1.02;
  font-weight: 500;
}

.lead {
  margin: 0.95rem 0 0;
  font-size: clamp(0.93rem, 2vw, 1.02rem);
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.92);
}

.container {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.gridSection {
  padding: clamp(3.1rem, 8vw, 6rem) 0;
  background: #f6efe5;
}

.sectionTitle {
  margin: 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  color: #261d14;
}

.grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid rgba(53, 40, 26, 0.18);
  background: #f1e7d9;
}

.cardImageWrap {
  position: relative;
  min-height: 12.5rem;
  border-bottom: 1px solid rgba(53, 40, 26, 0.18);
}

.seasonBadge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.26rem 0.45rem;
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2d2318;
  background: rgba(247, 239, 228, 0.9);
  border: 1px solid rgba(53, 40, 26, 0.22);
}

.cardImage {
  object-fit: cover;
  object-position: center;
}

.cardBody {
  padding: 0.95rem 0.9rem 1.05rem;
}

.cardTitle {
  margin: 0;
  font-family: var(--font-serif), "Times New Roman", serif;
  font-size: 1.45rem;
  color: #261d14;
}

.cardText {
  margin: 0.62rem 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
  color: #564c3f;
}

.tagList {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tagItem {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d3124;
  padding: 0.22rem 0.44rem;
  border: 1px solid rgba(53, 40, 26, 0.22);
  background: rgba(246, 236, 224, 0.7);
}

.ctaSection {
  padding: clamp(2.8rem, 7vw, 5rem) 0;
  background: #efe4d5;
  border-top: 1px solid rgba(53, 40, 26, 0.16);
}

.ctaText {
  margin: 0.95rem 0 0;
  max-width: 42rem;
  font-size: 0.96rem;
  line-height: 1.72;
  color: #564c3f;
}

.ctaLink {
  display: inline-block;
  margin-top: 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: #2d2318;
  border-bottom: 1px solid rgba(53, 40, 26, 0.52);
  padding-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 78dvh;
  }

  .heroContent {
    left: clamp(2rem, 5vw, 4.6rem);
    right: auto;
  }

  .container {
    padding: 0 2.1rem;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .cardImageWrap {
    min-height: 14.2rem;
  }
}
