/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding: 60px;
  background: linear-gradient(135deg, #fffaf3, #ffe8cc);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.hero-text p {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

/* ---------- OWNERS ---------- */
.owners-vertical {
  display: flex;
  gap: 20px;
}

.owner-card.small {
  text-align: center;
  background: rgba(255,255,255,0.85);
  padding: 12px;
  border-radius: 18px;
  width: 150px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.owner-card.small img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
}

.owner-card.small h4 {
  margin: 8px 0 2px;
  font-size: 14px;
  font-weight: 900;
}

.owner-card.small p {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  color: #666;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 900;
  margin-top: 15px;
  margin-right: 10px;
}

.btn-yellow {
  background: #f4b942;
  color: #222;
}

.btn-green {
  background: #2e9e5b;
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* ---------- SECTIONS ---------- */
.section {
  background: rgba(255, 255, 255, 0.85);
  padding: 35px;
  border-radius: 26px;
  margin: 45px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.section h2 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 900;
}

.section p {
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- SOFTER CHECKLIST ---------- */
.fun-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.fun-list li {
  background: transparent;
  padding: 0 0 0 30px;
  margin: 0;
  border-left: none;
  border-radius: 0;
  position: relative;
  line-height: 1.45;
  font-size: 16px;
}

.fun-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e9e5b;
  font-weight: 900;
  font-size: 18px;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery img:hover {
  transform: scale(1.04);
}

/* ---------- REVIEWS ---------- */
.reviews {
  margin: 50px 0;
  text-align: center;
}

.reviews h2 {
  font-size: 30px;
  font-weight: 900;
}

.review-container {
  overflow: hidden;
  margin-top: 20px;
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review {
  min-width: 320px;
  max-width: 320px;
  min-height: 250px;
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review:hover {
  transform: translateY(-5px) scale(1.04);
  z-index: 10;
}

.review-text {
  font-size: 15px;
  line-height: 1.45;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-text::-webkit-scrollbar {
  display: none;
}

.review:hover .review-text {
  max-height: none;
}

.review-name {
  font-weight: 800;
  margin-top: 10px;
}

.review-puppy {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-left: 6px;
}

/* ---------- ANIMATION ---------- */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 35px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .owners-vertical {
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .fun-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 38px;
  }

  .owners-vertical {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 25px;
  }
}