/**
 * Mobile Petting Zoo & Pony Rides — static/screenshots/Petting Zoo & Pony Rides.png
 */

.hmf-page-petting-zoo {
  --hmf-service-pad-x: 24px;
  --hmf-service-section-pad-y: 48px;
}

@media (min-width: 992px) {
  .hmf-page-petting-zoo {
    --hmf-service-pad-x: 64px;
    --hmf-service-section-pad-y: 80px;
  }
}

.hmf-page-petting-zoo .hmf-container {
  padding-inline: var(--hmf-service-pad-x);
}

.hmf-service-section {
  padding-block: var(--hmf-service-section-pad-y);
}

/* ── Hero — static/screenshots/hero-section.png ───────────────── */
.hmf-service-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  color: var(--hmf-color-cream);
  overflow: hidden;
}

@media (min-width: 992px) {
  .hmf-service-hero {
    min-height: 820px;
  }
}

.hmf-service-hero__media {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--hmf-color-primary);
}

@media (max-width: 767.98px) {
  .hmf-service-hero__media {
    background-position: 72% center;
  }
}

.hmf-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 16, 1, 0.82) 0%,
    rgba(0, 16, 1, 0.62) 34%,
    rgba(0, 16, 1, 0.28) 58%,
    rgba(0, 16, 1, 0.08) 100%
  );
}

@media (max-width: 767.98px) {
  .hmf-service-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 16, 1, 0.42) 0%,
      rgba(0, 16, 1, 0.62) 42%,
      rgba(0, 16, 1, 0.78) 100%
    );
  }
}

.hmf-service-hero__chrome {
  position: relative;
  z-index: 2;
  background-color: var(--hmf-color-white);
}

.hmf-service-hero__chrome .hmf-header {
  padding-block: 0;
}

.hmf-service-hero__chrome .hmf-container {
  max-width: var(--hmf-container-max);
  padding-inline: var(--hmf-service-pad-x);
}

.hmf-service-hero__chrome .hmf-header__bar {
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

@media (max-width: 991.98px) {
  .hmf-service-hero__chrome .hmf-header__bar {
    min-height: var(--hmf-header-mobile-height);
    padding-inline: var(--hmf-header-mobile-padding-x);
  }
}

.hmf-service-hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 40px;
}

@media (min-width: 992px) {
  .hmf-service-hero__content {
    padding-block: 56px 48px;
  }
}

.hmf-service-hero__content-inner {
  width: 100%;
}

.hmf-service-hero__title-block {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 992px) {
  .hmf-service-hero__title-block {
    margin-inline: 0;
    margin-left: clamp(0px, 4vw, 48px);
    text-align: left;
  }
}

.hmf-service-hero__title {
  font-family: var(--hmf-font-heading);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  line-height: 1.12;
  color: var(--hmf-color-cream);
  margin: 0 0 24px;
  text-transform: none;
  max-width: 14ch;
}

@media (max-width: 991.98px) {
  .hmf-service-hero__title {
    max-width: none;
    margin-inline: auto;
  }
}

.hmf-service-hero__subtitle {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, var(--hmf-text-body-lg));
  line-height: var(--hmf-text-body-lg-lh);
  color: var(--hmf-color-cream);
  margin: 0 0 32px;
  max-width: 640px;
}

@media (max-width: 991.98px) {
  .hmf-service-hero__subtitle {
    margin-inline: auto;
    font-family: var(--hmf-font-body);
    font-weight: 400;
    line-height: 1.5;
  }
}

.hmf-service-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

@media (min-width: 992px) {
  .hmf-service-hero__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hmf-service-hero__actions .hmf-btn--icon {
  text-transform: capitalize;
  letter-spacing: var(--hmf-tracking-btn);
}

.hmf-service-hero__actions .hmf-btn__label {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: var(--hmf-text-btn);
  line-height: var(--hmf-text-btn-lh);
  background-color: var(--hmf-color-primary);
  color: var(--hmf-color-cream);
}

.hmf-service-hero__actions .hmf-btn__icon img {
  filter: none;
}

@media (max-width: 991.98px) {
  .hmf-service-hero__actions .hmf-btn--icon {
    width: 100%;
  }

  .hmf-service-hero__actions .hmf-btn__label {
    flex: 1;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

.hmf-service-hero__btn-outline .hmf-btn__label {
  background-color: transparent;
  border: 2px solid var(--hmf-color-cream);
  color: var(--hmf-color-cream);
}

.hmf-service-hero__btn-outline:hover .hmf-btn__label {
  background-color: rgba(245, 239, 227, 0.12);
  opacity: 1;
}

.hmf-service-hero__strip {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.hmf-service-hero__strip .hmf-credibility {
  min-height: var(--hmf-credibility-height);
}

/* ── Farm experience intro ────────────────────────────────────── */
.hmf-service-experience {
  background-color: var(--hmf-color-white);
  padding-bottom: 32px;
}

@media (min-width: 992px) {
  .hmf-service-experience {
    padding-bottom: 48px;
  }
}

.hmf-service-experience__intro {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .hmf-service-experience__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
  }
}

.hmf-service-experience__title {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, var(--hmf-text-h2));
  line-height: 1.2;
  color: var(--hmf-color-black);
  margin: 0;
  text-transform: capitalize;
}

.hmf-service-experience__accent {
  color: var(--hmf-color-primary);
}

.hmf-service-experience__desc {
  font-family: var(--hmf-font-body);
  font-size: var(--hmf-text-body);
  line-height: 1.5;
  color: var(--hmf-color-grey);
  margin: 0;
}

/* ── Animals carousel panel ───────────────────────────────────── */
.hmf-service-animals {
  background-color: var(--hmf-color-cream);
  border-radius: 28px;
  padding: 24px 20px 28px;
}

@media (min-width: 992px) {
  .hmf-service-animals {
    padding: 32px 32px 36px;
  }
}

.hmf-service-animals__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.hmf-service-animals__heading {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: clamp(1.125rem, 2.5vw, var(--hmf-text-h4));
  line-height: 1.3;
  color: var(--hmf-color-black);
  margin: 0;
  text-transform: none;
}

.hmf-service-animals__nav {
  flex-shrink: 0;
}

.hmf-service-animals__wrap {
  overflow: hidden;
}

.hmf-service-animals__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.hmf-service-animals__track::-webkit-scrollbar {
  display: none;
}

.hmf-service-animals__slide {
  flex: 0 0 min(100%, 280px);
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 768px) {
  .hmf-service-animals__slide {
    flex: 0 0 min(50%, 300px);
  }
}

@media (min-width: 992px) {
  .hmf-service-animals__slide {
    flex: 0 0 min(24%, 272px);
  }
}

@media (max-width: 767.98px) {
  .hmf-service-animals__track {
    gap: 0;
    scroll-padding-inline: 0;
  }

  .hmf-service-animals__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* ── Animal showcase card ─────────────────────────────────────── */
.hmf-animal-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 280 / 360;
  background-color: var(--hmf-color-white);
}

.hmf-animal-showcase-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hmf-animal-showcase-card__title {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 16px;
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: var(--hmf-text-nav);
  line-height: 1.3;
  color: var(--hmf-color-cream);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 16, 1, 0.72) 100%);
}

/* ── Pony rides ───────────────────────────────────────────────── */
.hmf-service-pony {
  background-color: var(--hmf-color-white);
}

.hmf-service-pony__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hmf-service-pony__title {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, var(--hmf-text-h2));
  line-height: 1.2;
  color: var(--hmf-color-black);
  margin: 0;
  text-transform: none;
}

.hmf-service-pony__accent {
  color: var(--hmf-color-primary);
}

.hmf-service-pony__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hmf-service-pony__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
  }
}

.hmf-service-pony__media {
  margin: 0;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .hmf-service-pony__media {
    max-width: none;
    margin-inline: 0;
  }
}

.hmf-service-pony__collage {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hmf-service-pony__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hmf-service-pony__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hmf-service-pony__desc {
  font-family: var(--hmf-font-body);
  font-size: var(--hmf-text-body);
  line-height: 1.5;
  color: var(--hmf-color-grey);
  margin: 0;
}

.hmf-service-pony__weight {
  font-family: var(--hmf-font-body);
  font-size: var(--hmf-text-body);
  line-height: 1.5;
  color: var(--hmf-color-grey);
  margin: 0;
}

.hmf-service-pony__weight strong {
  font-family: var(--hmf-font-heading);
  font-weight: 600;
  color: var(--hmf-color-primary);
}

.hmf-service-pony__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hmf-service-pony__list-title {
  font-family: var(--hmf-font-body);
  font-weight: 400;
  font-size: var(--hmf-text-body);
  line-height: 1.5;
  color: var(--hmf-color-grey);
  margin: 0;
  text-transform: none;
}

.hmf-service-pony__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hmf-service-pony__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 16, 1, 0.08);
}

.hmf-service-pony__list-item:first-child {
  border-top: 1px solid rgba(0, 16, 1, 0.08);
}



.hmf-service-pony__list-icon img {
  width: 70px;
  height: 70px;
}

.hmf-service-pony__list-text {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: var(--hmf-text-nav);
  line-height: 1.3;
  color: var(--hmf-color-primary);
}

@media (max-width: 991.98px) {
  .hmf-service-pony__content {
    text-align: center;
    align-items: center;
  }

  .hmf-service-pony__list-wrap {
    width: 100%;
    max-width: 420px;
  }

  .hmf-service-pony__list-item {
    text-align: left;
  }
}

/* ── What we offer ────────────────────────────────────────────── */
.hmf-service-offer {
  background-color: var(--hmf-color-cream);
}

.hmf-service-offer .hmf-tag--white {
  border: 1px solid rgba(0, 16, 1, 0.08);
}

.hmf-service-offer__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hmf-service-offer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 20px 64px;
    align-items: start;
  }

  .hmf-service-offer__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hmf-service-offer__actions {
    grid-column: 1;
    grid-row: 2;
  }

  .hmf-service-offer__media {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

.hmf-service-offer__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hmf-service-offer__title {
  font-family: var(--hmf-font-heading);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, var(--hmf-text-h2));
  line-height: 1.2;
  color: var(--hmf-color-black);
  margin: 0;
  text-transform: none;
}

.hmf-service-offer__accent {
  color: var(--hmf-color-primary);
}

.hmf-service-offer__desc {
  font-family: var(--hmf-font-body);
  font-size: var(--hmf-text-body);
  line-height: 1.5;
  color: var(--hmf-color-grey);
  margin: 0;
  max-width: 520px;
}

.hmf-service-offer__actions {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .hmf-service-offer__actions {
    justify-content: center;
  }
}

.hmf-service-offer__btn.hmf-btn--icon {
  text-transform: capitalize;
  letter-spacing: var(--hmf-tracking-btn);
}

.hmf-service-offer__btn .hmf-btn__label {
  padding-inline: 28px;
}

@media (max-width: 991.98px) {
  .hmf-service-offer__copy {
    align-items: center;
    text-align: center;
    order: 1;
  }

  .hmf-service-offer__media {
    order: 2;
  }

  .hmf-service-offer__actions {
    order: 3;
    width: 100%;
  }

  .hmf-service-offer__btn.hmf-btn--icon {
    width: 100%;
    max-width: none;
  }

  .hmf-service-offer__btn .hmf-btn__label {
    flex: 1;
    justify-content: center;
  }
}

.hmf-service-offer__media {
  margin: 0;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .hmf-service-offer__media {
    max-width: none;
    margin-inline: 0;
    justify-self: end;
  }
}

.hmf-service-offer__collage {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .hmf-service-offer__collage {
    margin-inline: 0 0;
    margin-left: auto;
  }
}

/* ── Shared sections (testimonials, contact) ──────────────────── */
.hmf-page-petting-zoo .hmf-testimonials {
  padding-block: 48px;
}

@media (min-width: 992px) {
  .hmf-page-petting-zoo .hmf-testimonials {
    padding-block: 64px;
  }
}

.hmf-page-petting-zoo .hmf-home-contact__media {
  background-image: url("../../img/backgrond-img-contact-petting-zoo%20page.png");
  background-position: center;
}

.hmf-page-petting-zoo .hmf-section:last-of-type {
  padding-bottom: 80px;
}
