/* Local redesign: services and completed work only */
#services.autentic-services-redesign,
#projects.autentic-projects-redesign {
  background: #f2f2f2;
  color: #243525;
  padding: 7rem 1.5rem;
}

#services.autentic-services-redesign .autentic-section-inner,
#projects.autentic-projects-redesign .autentic-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.autentic-section-kicker {
  color: #586844;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 .8rem;
}

.autentic-section-heading {
  color: #243525;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

.autentic-section-intro {
  max-width: 620px;
  color: #989898;
  font-size: .98rem;
  line-height: 1.75;
  margin: 1.1rem auto 0;
}

#services.autentic-services-redesign .autentic-section-header,
#projects.autentic-projects-redesign .autentic-section-header {
  text-align: center;
  margin: 0 auto 3.4rem;
}

.autentic-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.7rem 2rem;
}

.autentic-service-item {
  text-align: center;
  padding: .3rem .8rem 0;
}

.autentic-service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: #586844;
}

.autentic-service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.autentic-service-item h3 {
  color: #243525;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.autentic-service-link,
.autentic-project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  border-radius: 3px;
  padding: .45rem .9rem;
  color: #fff;
  background: #586844;
  font-size: .68rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.autentic-service-link:hover,
.autentic-project-link:hover {
  background: #243525;
  transform: translateY(-2px);
}

#projects.autentic-projects-redesign {
  background: #f2f2f2;
  border-top: 1px solid #989898;
}

.autentic-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.autentic-project-card {
  background: #f2f2f2;
  border: 1px solid #989898;
  box-shadow: 0 10px 30px rgba(36, 53, 37, .12);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.autentic-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(36, 53, 37, .2);
}

.autentic-project-image {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.autentic-project-gallery {
  position: relative;
  background: #243525;
}

.autentic-gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 242, 242, .8);
  border-radius: 50%;
  color: #f2f2f2;
  background: rgba(36, 53, 37, .75);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease;
}

.autentic-gallery-arrow:hover {
  background: #586844;
}

.autentic-gallery-prev {
  left: .75rem;
}

.autentic-gallery-next {
  right: .75rem;
}

.autentic-gallery-count {
  position: absolute;
  right: .75rem;
  bottom: .65rem;
  padding: .25rem .45rem;
  color: #f2f2f2;
  background: rgba(36, 53, 37, .8);
  font-size: .68rem;
}

.autentic-project-content {
  padding: 1.25rem 1.35rem 1.4rem;
}

.autentic-project-tag {
  color: #586844;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.autentic-project-card h3 {
  color: #243525;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: .55rem 0 1.1rem;
}

.autentic-crea-badge {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.3rem;
  color: #f2f2f2;
}

.autentic-crea-seal {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #586844;
  border-radius: 50%;
  color: #586844;
  font-size: 1.2rem;
  font-weight: 700;
}

.autentic-crea-badge strong,
.autentic-crea-badge small {
  display: block;
}

.autentic-crea-badge strong {
  font-size: .85rem;
}

.autentic-crea-badge small {
  margin-top: .25rem;
  color: #989898;
  font-size: .7rem;
}

@media (max-width: 850px) {
  .autentic-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .autentic-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #services.autentic-services-redesign,
  #projects.autentic-projects-redesign {
    padding: 5rem 1.15rem;
  }
  .autentic-services-grid,
  .autentic-projects-grid {
    grid-template-columns: 1fr;
  }
  .autentic-section-heading {
    font-size: 2rem;
  }
}