
  .eco-hero{
    position:relative;
    padding: clamp(2rem, 4vw + 1rem, 4rem) 1.25rem;
    color: #0f1a12;
  }

  .eco-hero__container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: center;
  }

  /* Media (left) */
  .eco-hero__media{
    aspect-ratio: 1 / 1;
    width: min(520px, 45vw);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #fff;
        height: -webkit-fill-available;

  }
  .eco-hero__content{ max-width: 640px; }
  .eco-hero__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Content (right) */
  .eco-hero__title{
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: #1b5e20;
    letter-spacing: 0.2px;
  }
  .eco-hero__kicker{
    margin: 0 0 1rem;
    color: #2e7d32;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-style: italic;
  }
  .eco-hero__text{
    color: #5a6b5f;
    margin: 0 0 1.5rem;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.7;
  }

  .eco-hero__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
  }

  .btn {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform .15s 
ease, background-color .2s 
ease, color .2s 
ease, border-color .2s 
ease;
    font-size: 0.95rem;
    min-width: 120px;
        width: 170px;
    text-align: center;
    /* flex: 1 1 auto; */
}

.btn--outline {
    background: #fff;
    color: #1b5e20;
    border: 2px solid #2e7d32;
    width: 200px !important;
}
  .btn:active{ transform: translateY(1px); }

  .btn--primary{
    background: #1b5e20;
    color: #fff;
    border: 2px solid #1b5e20;
  }
  .btn--primary:hover{ background: #114a1a; border-color:#114a1a; }

 
  .btn--outline:hover{
    background: #e8f3ea;
    border-color: #1b5e20;
  }

  /* Responsive */
  @media screen and (max-width: 1024px) {
    .btn {
        width: 180px;
        min-height: 30px;
        font-size: 18px;
    }
   
    .btn--outline {
      width: 240px !important;
    }
}
  @media (max-width: 980px){
    .eco-hero__contents{
      grid-template-columns: 1fr;
    }
    .eco-hero__media{
      order: -1;        /* image first on mobile like the mock */
      width: 100%;
      aspect-ratio: 16 / 10; /* shorter image on tablets */
    }
    .eco-hero__content{ max-width: none; }
    .eco-hero__actions{ gap: 0.6rem; }
  }
  @media (max-width: 520px){
    .eco-hero{
      padding: 1.5rem 1rem 2rem;
    }
    .eco-hero__media{
      aspect-ratio: 16 / 9;
      border-radius: 12px;
    }}

    /* Make buttons responsive */
.eco-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 980px){
  .eco-hero__actions {
    gap: 0.6rem;
  }
}