* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.top-strip {
  width: 100vw;
  height: 32vh;
  min-height: 180px;
  max-height: 320px;
  overflow: hidden;
  background: #111;
}

.strip-track {
  height: 100%;
  display: flex;
  width: max-content;
  animation: scroll-strip 90s linear infinite;
}

.strip-item {
  height: 100%;
  width: clamp(220px, 24vw, 360px);
  flex: 0 0 auto;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-content {
  display: flex;
  justify-content: center;
  padding: 1.6rem 1rem 3rem;
}

.center {
  text-align: center;
}

.clover {
  width: 9rem;
  margin: 0 auto;
  line-height: 0;
  animation: clover-float-wiggle 6s ease-in-out infinite;
}

.clover img {
  width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-family: Helvetica, sans-serif;
  color: black;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.lucky-line {
  margin-top: 0.4rem;
  font-family: Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #2c2c2c;
}

.divider {
  width: 14rem;
  max-width: 70vw;
  height: 1px;
  margin: 1rem auto 0;
  background: #d9d9d9;
}

.links-row {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-link {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid #2f9f55;
  border-radius: 999px;
  font-family: Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f7e41;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background-color: #2f9f55;
  color: #fff;
  transform: translateY(-1px);
}

.business-card {
  margin-top: 1rem;
  font-family: Helvetica, sans-serif;
  color: #1f1f1f;
}

.info-block {
  width: min(26rem, 90vw);
  margin: 3rem auto 0;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
}

.business-name {
  font-size: 1rem;
  font-weight: 700;
}

.business-address {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #4a4a4a;
}

.map-link {
  margin-top: 0.6rem;
}

.teaser-text {
  margin-top: 0;
  font-family: Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f7e41;
}

.down-arrow {
  width: 2.2rem;
  margin: 0.35rem auto 0;
  line-height: 0;
  animation: slow-bounce 2.8s ease-in-out infinite;
}

.down-arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes slow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes clover-float-wiggle {
  0%,
  80%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  82% {
    transform: translateY(-9px) rotate(-2deg);
  }
  84% {
    transform: translateY(-9px) rotate(2deg);
  }
  86% {
    transform: translateY(-9px) rotate(-2deg);
  }
  88% {
    transform: translateY(-9px) rotate(2deg);
  }
  90% {
    transform: translateY(-9px) rotate(-2deg);
  }
  92% {
    transform: translateY(-9px) rotate(2deg);
  }
  94% {
    transform: translateY(-9px) rotate(-2deg);
  }
  96% {
    transform: translateY(-9px) rotate(2deg);
  }
  98% {
    transform: translateY(-4px) rotate(0deg);
  }
}

@keyframes scroll-strip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
