/* ============================================================
   Historic Rivermill — petting-zoo.css
   Styles for the /petting-zoo/ page. Layers on home.css +
   colors_and_type.css, and reuses the shared hero / occasion /
   button components from celebrate.css.
   ============================================================ */

/* Quick-fact strip under the intro */
.hr-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  margin-top: 40px;
}
.hr-facts__item {
  text-align: center;
  padding: 26px 18px;
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 14px;
  box-shadow: var(--hr-shadow-card);
}
.hr-facts__icon {
  width: 30px; height: 30px;
  margin: 0 auto 12px;
  color: var(--accent);
}
.hr-facts__label {
  font-family: var(--rm-font-heading);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 4px;
}
.hr-facts__sub {
  font-family: var(--rm-font-ui);
  font-size: 14px;
  color: var(--rm-text-light);
  margin: 0;
}

/* Meet-the-residents card grid */
.hr-zoo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: 46px;
}
.hr-zoo__card {
  background: var(--rm-white);
  border: 1px solid var(--rm-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hr-shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hr-zoo__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hr-shadow-card-hover);
}
.hr-zoo__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #E9DFCE;
}
.hr-zoo__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hr-zoo__card:hover .hr-zoo__media img { transform: scale(1.05); }
.hr-zoo__body { padding: 22px 24px 26px; }
.hr-zoo__name {
  font-family: var(--rm-font-heading);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 4px;
}
.hr-zoo__tag {
  display: inline-block;
  font-family: var(--rm-font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.hr-zoo__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3E463E;
  margin: 0;
}

/* $4 feeding price badge (sits in the feeding occasion block) */
.hr-feed__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 10px 20px;
  background: var(--accent-tint);
  border-radius: 999px;
}
.hr-feed__badge b {
  font-family: var(--rm-font-heading);
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
}
.hr-feed__badge span {
  font-family: var(--rm-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

/* Centred call-to-action band (schools + plan-your-visit) */
.hr-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}
.hr-btn--ghost {
  background: transparent;
  color: var(--rm-text);
  border: 1.5px solid var(--rm-border);
}
.hr-btn--ghost:hover { background: var(--rm-white); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hr-band--ink .hr-btn--ghost { color: #efe6db; border-color: rgba(239,230,219,0.4); }
.hr-band--ink .hr-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #efe6db; color: #fff; }

@media (max-width: 860px) {
  .hr-zoo { grid-template-columns: repeat(2, 1fr); }
  .hr-facts { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  .hr-zoo { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}
