/* ===== ABOUT: OUR STORY ===== */
.about_story{
  padding: 64px 18px;
  background: #fff;
}

.about_story_inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.about_story_title{
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text, #111827);
}

.about_story_p{
  margin: 0 0 14px;
  color: rgba(17,24,39,0.72);
  font-weight: 650;
  line-height: 1.75;
  max-width: 560px;
}

.about_story_p strong{
  color: rgba(17,24,39,0.92);
  font-weight: 900;
}

.about_story_media{
  display: flex;
  justify-content: center;
}

.about_story_img{
  width: min(560px, 100%);
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 22px 60px rgba(17,24,39,0.12);
}

/* Responsive */
@media (max-width: 950px){
  .about_story_inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about_story_media{
    order: -1; /* image on top for mobile */
  }
  .about_story_p{
    max-width: 100%;
  }
}

.about_link{
  font-weight: 900;
  text-decoration: none;
  color: #2563eb; /* clean modern blue */
  transition: color .2s ease, text-decoration .2s ease;
}

.about_link:hover{
  color: #1d4ed8;
  text-decoration: underline;
}

/* ===== VALUES SECTION ===== */
.about_values{
  padding: 72px 18px;
  background: linear-gradient(
    180deg,
    #1f3a2e 0%,
    #223f33 100%
  );
  color: #fff;
}

.about_values_inner{
  max-width: 1150px;
  margin: 0 auto;
}

.about_values_head{
  text-align: center;
  margin-bottom: 38px;
}

.about_values_title{
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.about_values_sub{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255,255,255,.75);
  font-weight: 650;
  line-height: 1.6;
}

/* Grid */
.values_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cards */
.value_card{
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.value_card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0,0,0,.30);
}

/* Gold Icon Badge */
.value_icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;

  background: rgba(201,162,77,.15);
  border: 1px solid rgba(201,162,77,.35);
  color: #c9a24d;
  font-size: 20px;
}

/* Text */
.value_title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: #111827;
}

.value_text{
  margin: 0;
  color: rgba(17,24,39,.75);
  font-weight: 650;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .values_grid{
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT CTA SECTION (Soft Neutral Gray) ===== */
.about_cta{
  padding: 72px 18px;
  background: #f5f6f5;   /* soft neutral gray */
  text-align: center;
  border-top: 1px solid rgba(17,24,39,0.06);
  border-bottom: 1px solid rgba(17,24,39,0.06);
}

.about_cta_inner{
  max-width: 850px;
  margin: 0 auto;
}

.about_cta_title{
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text, #111827);  /* dark text now */
}

.about_cta_sub{
  margin: 0 0 28px;
  color: rgba(17,24,39,.72);    /* darker subtitle */
  font-weight: 650;
  line-height: 1.6;
}

/* Button Row */
.about_cta_actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Primary Green Button */
.btn--primary{
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.btn--primary:hover{
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Outline Button (dark border now) */
.btn--outline{
  background: #fff;
  border: 1px solid rgba(17,24,39,0.18);
  color: var(--text, #111827);
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.btn--outline:hover{
  background: rgba(17,24,39,0.04);
  transform: translateY(-2px);
}