.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(28, 42, 35, 0.74), rgba(19, 31, 26, 0.5)),
    url("https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?auto=format&fit=crop&w=1920&q=80") center/cover;
  color: #f4f8f4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06;
}

.hero p {
  color: #d6e1da;
  max-width: 680px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.home-showcase {
  background:
    radial-gradient(circle at top left, rgba(177, 141, 74, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfcf8 0%, #eef1e7 100%);
}

.welcome-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 54px;
}

.welcome-copy h2,
.why-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 12px;
}

.welcome-copy p,
.why-heading p {
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.9;
}

.welcome-accent {
  width: 100%;
  max-width: 420px;
  height: 16px;
  margin: 0 0 18px;
  border-left: 4px solid #7a8f26;
  background: linear-gradient(90deg, rgba(122, 143, 38, 0.18), rgba(122, 143, 38, 0));
}

.welcome-btn {
  margin-top: 16px;
  background: #7a8f26;
  box-shadow: 0 12px 26px rgba(76, 93, 18, 0.2);
}

.welcome-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  background: #dce3d2;
  box-shadow: 0 18px 38px rgba(30, 40, 34, 0.14);
}

.gallery-card-lg {
  grid-column: 1 / -1;
  min-height: 240px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.welcome-gallery:hover .gallery-card img {
  transform: scale(1.04);
}

.why-panel {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(122, 143, 38, 0.12);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 24px 54px rgba(32, 43, 28, 0.08);
}

.why-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  --delay: 0s;
  background: #fff;
  border: 1px solid #d8dfcf;
  border-radius: 22px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(32, 43, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(32, 43, 28, 0.12);
  border-color: rgba(122, 143, 38, 0.4);
}

.why-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #7a8f26;
  background: linear-gradient(180deg, #f5f8ee, #e4ead5);
  border: 1px dashed rgba(122, 143, 38, 0.55);
}

.why-card h3 {
  margin-bottom: 10px;
  color: #7a8f26;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: "Manrope", sans-serif;
}

.why-card p {
  margin: 0;
  color: #2d342f;
  font-weight: 700;
  line-height: 1.45;
}

.reveal-up,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stats article {
  background: #fff;
  border: 1px solid #d9e0dc;
  border-radius: var(--radius);
  padding: 20px;
}

.feature-band {
  background: linear-gradient(150deg, #e7eee8, #f7fbf8);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #d9e0dc;
}

.link-arrow {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .welcome-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-panel {
    padding: 28px 18px;
  }

  .welcome-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-lg {
    grid-column: auto;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
