:root {
  --ha-cream: #fbf4e8;
  --ha-title-brown: #6B4B3E;
  --ha-body-brown: #5f3a2d;
  --ha-text: #3f342f;
  --ha-red: #c94a3b;
  --ha-yellow: #f8b426;
  --ha-card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ha-cream);
  color: var(--ha-text);
  font-family: Arial, Helvetica, sans-serif;
}

.ha-collection {
  background: var(--ha-cream);
  padding: 34px 42px 38px;
}

.ha-collection__inner {
  max-width: 1460px;
  margin: 0 auto;
}

.ha-collection__eyebrow {
  margin: 0 0 16px 8px;
  color: var(--ha-red);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ha-collection__title {
  margin: 0 0 28px 8px;
  max-width: 790px;
  color: var(--ha-title-brown);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.035em;
}

.ha-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ha-card {
  overflow: hidden;
  background: var(--ha-card);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(79, 52, 38, .10);
}

.ha-card__media {
  position: relative;
  height: 372px;
  overflow: hidden;
  background: #f2eadf;
}

.ha-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #f2eadf;
}

.ha-card__country {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  background: #fff;
  color: #44352f;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.ha-card__body {
  padding: 18px 24px 22px;
}

.ha-card__category {
  margin: 0 0 10px;
  color: var(--ha-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ha-card__title {
  margin: 0 0 12px;
  color: var(--ha-body-brown);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
}

.ha-card__description {
  min-height: 72px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.5;
}

.ha-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 15px;
}

.ha-card__price {
  color: var(--ha-body-brown);
  font-size: 21px;
  font-weight: 900;
}

.ha-card__button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--ha-yellow);
  color: #111;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.ha-card__button:hover {
  filter: brightness(.97);
}

@media (max-width: 980px) {
  .ha-collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .ha-collection {
    padding: 26px 16px 34px;
  }

  .ha-collection__eyebrow,
  .ha-collection__title {
    margin-left: 0;
  }

  .ha-collection__grid {
    grid-template-columns: 1fr;
  }

  .ha-card__media {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}