.info-site {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(211, 234, 157, 0.42), transparent 26rem),
    radial-gradient(circle at 86% 10%, rgba(255, 247, 210, 0.72), transparent 28rem),
    linear-gradient(135deg, #f8f3dc 0%, #eef4dc 52%, #dfeec9 100%);
  color: #20331f;
}

.info-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(18px, 4vw, 42px) 0 clamp(48px, 8vw, 90px);
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 32px;
  background: linear-gradient(135deg, #1f4018, #315d21);
  box-shadow: 0 18px 44px rgba(31, 64, 24, 0.2);
}

.info-brand {
  color: #d9f7a7;
  text-decoration: none;
}

.info-logo {
  display: block;
  font-family: "GruntokLogo", "Manrope", sans-serif;
  font-size: clamp(42px, 8vw, 82px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.info-tagline {
  display: block;
  margin-top: 8px;
  color: #fffbe9;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 25px);
  letter-spacing: 0.02em;
}

.info-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.info-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: #fffbe9;
  text-decoration: none;
  font-weight: 800;
}

.info-hero {
  margin-top: clamp(34px, 7vw, 78px);
  text-align: center;
}

.info-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(211, 234, 157, 0.72);
  color: #315d21;
  font-weight: 800;
}

.info-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.info-hero > p:last-child {
  max-width: 780px;
  margin: 22px auto 0;
  color: #5d6654;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.52;
  font-weight: 650;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 6vw, 64px);
}

.info-cards article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(53, 83, 38, 0.14);
  border-radius: 30px;
  background: rgba(255, 253, 243, 0.78);
  box-shadow: 0 18px 40px rgba(37, 55, 28, 0.08);
}

.info-cards span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d8efa2;
  color: #315d21;
  font-weight: 900;
}

.info-cards h2 {
  margin: 24px 0 10px;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.08;
}

.info-cards p {
  margin: 0;
  color: #626b59;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 650;
}

.info-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(211, 234, 157, 0.48);
  color: #315d21;
  font-weight: 800;
  text-align: center;
}

.info-footer img {
  width: 28px;
  height: 18px;
  object-fit: contain;
}

.info-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .info-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .info-cards article {
    min-height: auto;
  }
}
