.about-section {
  margin-top: 6px;
}

.about-panel {
  min-height: 100%;
}

.about-image-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-image-panel img {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(160, 127, 58, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(74, 43, 20, 0.12);
}

.about-process .section-lead {
  margin-bottom: 26px;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  margin-top: 26px;
}

.vision-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  min-height: 260px;
  align-items: start;
  padding: 34px 30px;
  border: 1px solid rgba(160, 127, 58, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(244, 231, 207, 0.9)),
    radial-gradient(circle at top right, rgba(200, 170, 111, 0.34), transparent 18rem);
  box-shadow: 0 16px 40px rgba(90, 62, 19, 0.1);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-card:nth-child(2) {
  border-color: rgba(200, 170, 111, 0.36);
  background:
    linear-gradient(135deg, rgba(74, 43, 20, 0.98), rgba(86, 51, 24, 0.94)),
    radial-gradient(circle at top right, rgba(200, 170, 111, 0.28), transparent 18rem);
  box-shadow: 0 18px 46px rgba(74, 43, 20, 0.18);
}

.vision-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #a07f3a, #c8aa6f);
  content: "";
}

.vision-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(160, 127, 58, 0.18);
  border-radius: 50%;
  content: "";
}

.vision-card:hover {
  border-color: rgba(160, 127, 58, 0.42);
  box-shadow: 0 22px 54px rgba(90, 62, 19, 0.15);
  transform: translateY(-5px);
}

.vision-card:nth-child(2):hover {
  border-color: rgba(200, 170, 111, 0.62);
  box-shadow: 0 24px 58px rgba(74, 43, 20, 0.24);
}

.vision-card .icon {
  width: 68px;
  height: 68px;
  margin: 0;
  justify-self: start;
  color: #fff;
  background: linear-gradient(135deg, #a07f3a, #c8aa6f);
  box-shadow: 0 14px 28px rgba(160, 127, 58, 0.24);
}

.vision-card:nth-child(2) .icon {
  color: #4a2b14;
  background: linear-gradient(135deg, #fff8ea, #c8aa6f);
}

.vision-card .icon svg {
  width: 34px;
  height: 34px;
}

.vision-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.vision-card p {
  margin: 0;
  color: #554636;
  font-weight: 600;
  line-height: 1.7;
}

.vision-card:nth-child(2) h2,
.vision-card:nth-child(2) p {
  color: #fffdf8;
}

.vision-card:nth-child(2) .eyebrow {
  color: #c8aa6f;
}

.vision-card .eyebrow {
  margin-bottom: 12px;
}

.about-trust {
  padding-bottom: 8px;
}

@media (max-width: 900px) {
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-image-panel img {
    aspect-ratio: 16 / 11;
  }

  .vision-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 22px;
  }

  .vision-card .icon {
    justify-self: start;
  }
}
